Show / Hide Table of Contents

Class SigningProfileProps

Construction properties for a Signing Profile object.

Inheritance
System.Object
SigningProfileProps
Implements
ISigningProfileProps
Namespace: Amazon.CDK.AWS.Signer
Assembly: Amazon.CDK.AWS.Signer.dll
Syntax (csharp)
public class SigningProfileProps : Object, ISigningProfileProps
Syntax (vb)
Public Class SigningProfileProps
    Inherits Object
    Implements ISigningProfileProps
Remarks

ExampleMetadata: infused

Examples
var signingProfile = new SigningProfile(this, "SigningProfile", new SigningProfileProps {
    Platform = Platform.AWS_LAMBDA_SHA384_ECDSA
});

Synopsis

Constructors

SigningProfileProps()

Properties

Platform

The Signing Platform available for signing profile.

SignatureValidity

The validity period for signatures generated using this signing profile.

SigningProfileName

Physical name of this Signing Profile.

Constructors

SigningProfileProps()

public SigningProfileProps()

Properties

Platform

The Signing Platform available for signing profile.

public Platform Platform { get; set; }
Property Value

Platform

Remarks

See: https://docs.aws.amazon.com/signer/latest/developerguide/gs-platform.html

SignatureValidity

The validity period for signatures generated using this signing profile.

public Duration SignatureValidity { get; set; }
Property Value

Duration

Remarks

Default: - 135 months

SigningProfileName

Physical name of this Signing Profile.

public string SigningProfileName { get; set; }
Property Value

System.String

Remarks

Default: - Assigned by CloudFormation (recommended).

Implements

ISigningProfileProps
Back to top Generated by DocFX