Show / Hide Table of Contents

Class CfnPublisherProps

Properties for defining a CfnPublisher.

Inheritance
object
CfnPublisherProps
Implements
ICfnPublisherProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnPublisherProps : ICfnPublisherProps
Syntax (vb)
Public Class CfnPublisherProps Implements ICfnPublisherProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-publisher.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;

             var cfnPublisherProps = new CfnPublisherProps {
                 AcceptTermsAndConditions = false,

                 // the properties below are optional
                 ConnectionArn = "connectionArn"
             };

Synopsis

Constructors

CfnPublisherProps()

Properties for defining a CfnPublisher.

Properties

AcceptTermsAndConditions

Whether you accept the Terms and Conditions for publishing extensions in the CloudFormation registry. You must accept the terms and conditions in order to register to publish public extensions to the CloudFormation registry.

ConnectionArn

If you are using a Bitbucket or GitHub account for identity verification, the Amazon Resource Name (ARN) for your connection to that account.

Constructors

CfnPublisherProps()

Properties for defining a CfnPublisher.

public CfnPublisherProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-publisher.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;

             var cfnPublisherProps = new CfnPublisherProps {
                 AcceptTermsAndConditions = false,

                 // the properties below are optional
                 ConnectionArn = "connectionArn"
             };

Properties

AcceptTermsAndConditions

Whether you accept the Terms and Conditions for publishing extensions in the CloudFormation registry. You must accept the terms and conditions in order to register to publish public extensions to the CloudFormation registry.

public object AcceptTermsAndConditions { get; set; }
Property Value

object

Remarks

The default is false .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-publisher.html#cfn-cloudformation-publisher-accepttermsandconditions

Type union: either bool or IResolvable

ConnectionArn

If you are using a Bitbucket or GitHub account for identity verification, the Amazon Resource Name (ARN) for your connection to that account.

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

string

Remarks

For more information, see Prerequisite: Registering your account to publish CloudFormation extensions in the AWS CloudFormation Command Line Interface (CLI) User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-publisher.html#cfn-cloudformation-publisher-connectionarn

Implements

ICfnPublisherProps
Back to top Generated by DocFX