Show / Hide Table of Contents

Class CfnSigningJob.SignedObjectProperty

The S3 location of the signed code image.

Inheritance
object
CfnSigningJob.SignedObjectProperty
Implements
CfnSigningJob.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.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

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.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.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 CfnSigningJob.IS3SignedObjectProperty

Implements

CfnSigningJob.ISignedObjectProperty
Back to top Generated by DocFX