Class CfnSigningJobPropsMixin.SignedObjectProperty
The S3 location of the signed code image.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Signer
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnSigningJobPropsMixin.SignedObjectProperty : CfnSigningJobPropsMixin.ISignedObjectProperty
Syntax (vb)
Public Class CfnSigningJobPropsMixin.SignedObjectProperty Implements CfnSigningJobPropsMixin.ISignedObjectProperty
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 signedObjectProperty = new SignedObjectProperty {
S3 = new S3SignedObjectProperty {
BucketName = "bucketName",
Key = "key"
}
};
Synopsis
Constructors
| SignedObjectProperty() | The S3 location of the signed code image. |
Properties
| S3 | The Amazon S3 bucket name and key where Signer saved the signed code image. |
Constructors
SignedObjectProperty()
The S3 location of the signed code image.
public SignedObjectProperty()
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 signedObjectProperty = new SignedObjectProperty {
S3 = new S3SignedObjectProperty {
BucketName = "bucketName",
Key = "key"
}
};
Properties
S3
The Amazon S3 bucket name and key where Signer saved the signed code image.
public object? S3 { get; set; }