Show / Hide Table of Contents

Interface ICfnSigningProfileProps

Properties for defining a CfnSigningProfile.

Namespace: Amazon.CDK.AWS.Signer
Assembly: Amazon.CDK.AWS.Signer.dll
Syntax (csharp)
public interface ICfnSigningProfileProps
Syntax (vb)
Public Interface ICfnSigningProfileProps
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-signer-signingprofile.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;

CfnSigningProfileProps cfnSigningProfileProps = new CfnSigningProfileProps {
    PlatformId = "platformId",

    // the properties below are optional
    SignatureValidityPeriod = new SignatureValidityPeriodProperty {
        Type = "type",
        Value = 123
    },
    Tags = new [] { new CfnTag {
        Key = "key",
        Value = "value"
    } }
};

Synopsis

Properties

PlatformId

The ID of a platform that is available for use by a signing profile.

SignatureValidityPeriod

The validity period override for any signature generated using this signing profile.

Tags

A list of tags associated with the signing profile.

Properties

PlatformId

The ID of a platform that is available for use by a signing profile.

string PlatformId { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-signer-signingprofile.html#cfn-signer-signingprofile-platformid

SignatureValidityPeriod

The validity period override for any signature generated using this signing profile.

virtual object SignatureValidityPeriod { get; }
Property Value

System.Object

Remarks

If unspecified, the default is 135 months.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-signer-signingprofile.html#cfn-signer-signingprofile-signaturevalidityperiod

Tags

A list of tags associated with the signing profile.

virtual ICfnTag[] Tags { get; }
Property Value

ICfnTag[]

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-signer-signingprofile.html#cfn-signer-signingprofile-tags

Back to top Generated by DocFX