Package software.amazon.awscdk
Interface CfnPublisherProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPublisherProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-15T10:24:53.423Z")
@Stability(Stable)
public interface CfnPublisherProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnPublisher
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.*; CfnPublisherProps cfnPublisherProps = CfnPublisherProps.builder() .acceptTermsAndConditions(false) // the properties below are optional .connectionArn("connectionArn") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPublisherProps
static final class
An implementation forCfnPublisherProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnPublisherProps.Builder
builder()
Whether you accept the Terms and Conditions for publishing extensions in the CloudFormation registry.default String
If you are using a Bitbucket or GitHub account for identity verification, the Amazon Resource Name (ARN) for your connection to that account.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAcceptTermsAndConditions
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.The default is
false
.- See Also:
-
getConnectionArn
If you are using a Bitbucket or GitHub account for identity verification, the Amazon Resource Name (ARN) for your connection to that account.For more information, see Prerequisite: Registering your account to publish CloudFormation extensions in the AWS CloudFormation Command Line Interface (CLI) User Guide .
- See Also:
-
builder
- Returns:
- a
CfnPublisherProps.Builder
ofCfnPublisherProps
-