Show / Hide Table of Contents

Class CfnCodeSigningConfig.AllowedPublishersProperty

List of signing profiles that can sign a code package.

Inheritance
object
CfnCodeSigningConfig.AllowedPublishersProperty
Implements
CfnCodeSigningConfig.IAllowedPublishersProperty
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.Lambda
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCodeSigningConfig.AllowedPublishersProperty : CfnCodeSigningConfig.IAllowedPublishersProperty
Syntax (vb)
Public Class CfnCodeSigningConfig.AllowedPublishersProperty Implements CfnCodeSigningConfig.IAllowedPublishersProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-codesigningconfig-allowedpublishers.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.Lambda;

             var allowedPublishersProperty = new AllowedPublishersProperty {
                 SigningProfileVersionArns = new [] { "signingProfileVersionArns" }
             };

Synopsis

Constructors

AllowedPublishersProperty()

List of signing profiles that can sign a code package.

Properties

SigningProfileVersionArns

The Amazon Resource Name (ARN) for each of the signing profiles.

Constructors

AllowedPublishersProperty()

List of signing profiles that can sign a code package.

public AllowedPublishersProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-codesigningconfig-allowedpublishers.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.Lambda;

             var allowedPublishersProperty = new AllowedPublishersProperty {
                 SigningProfileVersionArns = new [] { "signingProfileVersionArns" }
             };

Properties

SigningProfileVersionArns

The Amazon Resource Name (ARN) for each of the signing profiles.

public string[] SigningProfileVersionArns { get; set; }
Property Value

string[]

Remarks

A signing profile defines a trusted user who can sign a code package.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-codesigningconfig-allowedpublishers.html#cfn-lambda-codesigningconfig-allowedpublishers-signingprofileversionarns

Implements

CfnCodeSigningConfig.IAllowedPublishersProperty
Back to top Generated by DocFX