Interface CfnPublisherMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPublisherMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:56.966Z")
@Stability(Stable)
public interface CfnPublisherMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnPublisherPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.cloudformation.*;
CfnPublisherMixinProps cfnPublisherMixinProps = CfnPublisherMixinProps.builder()
.acceptTermsAndConditions(false)
.connectionArn("connectionArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPublisherMixinPropsstatic final classAn implementation forCfnPublisherMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectWhether you accept the Terms and Conditions for publishing extensions in the CloudFormation registry.default StringIf 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.Returns union: either
BooleanorIResolvable- 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
CfnPublisherMixinProps.BuilderofCfnPublisherMixinProps
-