Show / Hide Table of Contents

Class CfnSigningProfileProps

Properties for defining a CfnSigningProfile.

Inheritance
System.Object
CfnSigningProfileProps
Implements
ICfnSigningProfileProps
Namespace: Amazon.CDK.AWS.Signer
Assembly: Amazon.CDK.AWS.Signer.dll
Syntax (csharp)
public class CfnSigningProfileProps : Object, ICfnSigningProfileProps
Syntax (vb)
Public Class CfnSigningProfileProps
    Inherits Object
    Implements 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;

var 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

Constructors

CfnSigningProfileProps()

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.

Constructors

CfnSigningProfileProps()

public CfnSigningProfileProps()

Properties

PlatformId

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

public string PlatformId { get; set; }
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.

public object SignatureValidityPeriod { get; set; }
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.

public ICfnTag[] Tags { get; set; }
Property Value

ICfnTag[]

Remarks

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

Implements

ICfnSigningProfileProps
Back to top Generated by DocFX