Package software.amazon.awscdk
Interface CfnHookVersionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnHookVersionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-21T06:34:02.082Z")
@Stability(Stable)
public interface CfnHookVersionProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnHookVersion
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.*; CfnHookVersionProps cfnHookVersionProps = CfnHookVersionProps.builder() .schemaHandlerPackage("schemaHandlerPackage") .typeName("typeName") // the properties below are optional .executionRoleArn("executionRoleArn") .loggingConfig(LoggingConfigProperty.builder() .logGroupName("logGroupName") .logRoleArn("logRoleArn") .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnHookVersionProps
static final class
An implementation forCfnHookVersionProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnHookVersionProps.Builder
builder()
default String
The Amazon Resource Name (ARN) of the task execution role that grants the hook permission.default Object
Contains logging configuration information for an extension.A URL to the Amazon S3 bucket containing the hook project package that contains the necessary files for the hook you want to register.The unique name for your hook.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSchemaHandlerPackage
A URL to the Amazon S3 bucket containing the hook project package that contains the necessary files for the hook you want to register.For information on generating a schema handler package for the resource you want to register, see submit in the CloudFormation CLI User Guide for Extension Development .
The user registering the resource must be able to access the package in the S3 bucket. That's, the user must have GetObject permissions for the schema handler package. For more information, see Actions, Resources, and Condition Keys for Amazon S3 in the AWS Identity and Access Management User Guide .
- 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:
Alexa
AMZN
Amazon
ASK
AWS
Custom
Dev
- See Also:
-
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.- See Also:
-
builder
- Returns:
- a
CfnHookVersionProps.Builder
ofCfnHookVersionProps
-