Show / Hide Table of Contents

Class CfnSigningJobPropsMixin.SignedObjectProperty

The S3 location of the signed code image.

Inheritance
object
CfnSigningJobPropsMixin.SignedObjectProperty
Implements
CfnSigningJobPropsMixin.ISignedObjectProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-signer-signingjob-signedobject.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-signer-signingjob-signedobject.html

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; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-signer-signingjob-signedobject.html#cfn-signer-signingjob-signedobject-s3

Type union: either IResolvable or CfnSigningJobPropsMixin.IS3SignedObjectProperty

Implements

CfnSigningJobPropsMixin.ISignedObjectProperty
Back to top Generated by DocFX