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
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
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.
Tags
A list of tags associated with the signing profile.
virtual ICfnTag[] Tags { get; }
Property Value
ICfnTag[]