Interface CfnHookTypeConfigProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnHookTypeConfigProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-09-11T18:01:12.415Z")
@Stability(Stable)
public interface CfnHookTypeConfigProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnHookTypeConfig
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.cloudformation.*; CfnHookTypeConfigProps cfnHookTypeConfigProps = CfnHookTypeConfigProps.builder() .configuration("configuration") // the properties below are optional .configurationAlias("configurationAlias") .typeArn("typeArn") .typeName("typeName") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnHookTypeConfigProps
static final class
An implementation forCfnHookTypeConfigProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Specifies the activated hook type configuration, in this AWS account and AWS Region .default String
Specifies the activated hook type configuration, in this AWS account and AWS Region .default String
The Amazon Resource Number (ARN) for the hook to setConfiguration
for.default String
The unique name for your hook.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConfiguration
Specifies the activated hook type configuration, in this AWS account and AWS Region .You must specify either
TypeName
andConfiguration
orTypeARN
andConfiguration
.- See Also:
-
getConfigurationAlias
Specifies the activated hook type configuration, in this AWS account and AWS Region .Defaults to
default
alias. Hook types currently support default configuration alias.Default: - "default"
- See Also:
-
getTypeArn
The Amazon Resource Number (ARN) for the hook to setConfiguration
for.You must specify either
TypeName
andConfiguration
orTypeARN
andConfiguration
.- 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
.You must specify either
TypeName
andConfiguration
orTypeARN
andConfiguration
.- See Also:
-
builder
- Returns:
- a
CfnHookTypeConfigProps.Builder
ofCfnHookTypeConfigProps
-