Class CfnSigningJob.SignedObjectProperty
The S3 location of the signed code image.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Signer
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSigningJob.SignedObjectProperty : CfnSigningJob.ISignedObjectProperty
Syntax (vb)
Public Class CfnSigningJob.SignedObjectProperty Implements CfnSigningJob.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.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.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; }