Show / Hide Table of Contents

Class CfnLicense.IssuerDataProperty

Details associated with the issuer of a license.

Inheritance
object
CfnLicense.IssuerDataProperty
Implements
CfnLicense.IIssuerDataProperty
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.LicenseManager
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnLicense.IssuerDataProperty : CfnLicense.IIssuerDataProperty
Syntax (vb)
Public Class CfnLicense.IssuerDataProperty Implements CfnLicense.IIssuerDataProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-licensemanager-license-issuerdata.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.LicenseManager;

             var issuerDataProperty = new IssuerDataProperty {
                 Name = "name",

                 // the properties below are optional
                 SignKey = "signKey"
             };

Synopsis

Constructors

IssuerDataProperty()

Details associated with the issuer of a license.

Properties

Name

Issuer name.

SignKey

Asymmetric KMS key from AWS Key Management Service .

Constructors

IssuerDataProperty()

Details associated with the issuer of a license.

public IssuerDataProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-licensemanager-license-issuerdata.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.LicenseManager;

             var issuerDataProperty = new IssuerDataProperty {
                 Name = "name",

                 // the properties below are optional
                 SignKey = "signKey"
             };

Properties

Name

Issuer name.

public string Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-licensemanager-license-issuerdata.html#cfn-licensemanager-license-issuerdata-name

SignKey

Asymmetric KMS key from AWS Key Management Service .

public string? SignKey { get; set; }
Property Value

string

Remarks

The KMS key must have a key usage of sign and verify, and support the RSASSA-PSS SHA-256 signing algorithm.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-licensemanager-license-issuerdata.html#cfn-licensemanager-license-issuerdata-signkey

Implements

CfnLicense.IIssuerDataProperty
Back to top Generated by DocFX