| 25 | |
| 26 | @dataclass |
| 27 | class CdSigningData: |
| 28 | bucket_name: str |
| 29 | """The bucket hosting signing artifacts accessible by CD Signer.""" |
| 30 | apple_notarizing_secret_arn: str |
| 31 | """The ARN of the secret containing the Apple ID and password, used during notarization""" |
| 32 | signing_role_arn: str |
| 33 | """The ARN of the role used by CD Signer""" |
| 34 | |
| 35 | |
| 36 | @dataclass |