Show / Hide Table of Contents

Class CfnSigningJobPropsMixin.S3SignedObjectProperty

The Amazon S3 bucket name and key where Signer saved the signed code image.

Inheritance
object
CfnSigningJobPropsMixin.S3SignedObjectProperty
Implements
CfnSigningJobPropsMixin.IS3SignedObjectProperty
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.S3SignedObjectProperty : CfnSigningJobPropsMixin.IS3SignedObjectProperty
Syntax (vb)
Public Class CfnSigningJobPropsMixin.S3SignedObjectProperty Implements CfnSigningJobPropsMixin.IS3SignedObjectProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-signer-signingjob-s3signedobject.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 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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-signer-signingjob-s3signedobject.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 s3SignedObjectProperty = new S3SignedObjectProperty {
                 BucketName = "bucketName",
                 Key = "key"
             };

Properties

BucketName

Name of the S3 bucket.

public string? BucketName { get; set; }
Property Value

string

Remarks

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

Key

Key name that uniquely identifies a signed code image in the bucket.

public string? Key { get; set; }
Property Value

string

Remarks

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

Implements

CfnSigningJobPropsMixin.IS3SignedObjectProperty
Back to top Generated by DocFX