Class CfnSigningJobPropsMixin.S3SignedObjectProperty
The Amazon S3 bucket name and key where Signer saved the signed code image.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Signer
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnSigningJobPropsMixin.S3SignedObjectProperty : CfnSigningJobPropsMixin.IS3SignedObjectProperty
Syntax (vb)
Public Class CfnSigningJobPropsMixin.S3SignedObjectProperty Implements CfnSigningJobPropsMixin.IS3SignedObjectProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Signer;
var s3SignedObjectProperty = new S3SignedObjectProperty {
BucketName = "bucketName",
Key = "key"
};
Synopsis
Constructors
| S3SignedObjectProperty() | The Amazon S3 bucket name and key where Signer saved the signed code image. |
Properties
| BucketName | Name of the S3 bucket. |
| Key | Key name that uniquely identifies a signed code image in the bucket. |
Constructors
S3SignedObjectProperty()
The Amazon S3 bucket name and key where Signer saved the signed code image.
public S3SignedObjectProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Signer;
var s3SignedObjectProperty = new S3SignedObjectProperty {
BucketName = "bucketName",
Key = "key"
};
Properties
BucketName
Name of the S3 bucket.
public string? BucketName { get; set; }
Property Value
Remarks
Key
Key name that uniquely identifies a signed code image in the bucket.
public string? Key { get; set; }