Interface CfnHookVersionMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnHookVersionMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:56.940Z")
@Stability(Stable)
public interface CfnHookVersionMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnHookVersionPropsMixin.
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.*;
CfnHookVersionMixinProps cfnHookVersionMixinProps = CfnHookVersionMixinProps.builder()
.executionRoleArn("executionRoleArn")
.loggingConfig(LoggingConfigProperty.builder()
.logGroupName("logGroupName")
.logRoleArn("logRoleArn")
.build())
.schemaHandlerPackage("schemaHandlerPackage")
.typeName("typeName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnHookVersionMixinPropsstatic final classAn implementation forCfnHookVersionMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe Amazon Resource Name (ARN) of the task execution role that grants the Hook permission.default ObjectContains logging configuration information for an extension.default StringA URL to the Amazon S3 bucket for the Hook project package that contains the necessary files for the Hook you want to register.default StringThe unique name for your Hook.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExecutionRoleArn
The Amazon Resource Name (ARN) of the task execution role that grants the Hook permission.- See Also:
-
getLoggingConfig
Contains logging configuration information for an extension.Returns union: either
IResolvableorCfnHookVersionPropsMixin.LoggingConfigProperty- See Also:
-
getSchemaHandlerPackage
A URL to the Amazon S3 bucket for the Hook project package that contains the necessary files for the Hook you want to register.For information on generating a schema handler package, see Modeling custom CloudFormation Hooks in the CloudFormation Hooks User Guide .
To register the Hook, you must have
s3:GetObjectpermissions to access the S3 objects.- See Also:
-
getTypeName
The unique name for your Hook.Specifies a three-part namespace for your Hook, with a recommended pattern of
Organization::Service::Hook.The following organization namespaces are reserved and can't be used in your Hook type names:
AlexaAMZNAmazonASKAWSCustomDev
- See Also:
-
builder
- Returns:
- a
CfnHookVersionMixinProps.BuilderofCfnHookVersionMixinProps
-