Interface ICfnHookTypeConfigProps
Properties for defining a CfnHookTypeConfig
.
public interface ICfnHookTypeConfigProps
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK;
var cfnHookTypeConfigProps = new CfnHookTypeConfigProps {
Configuration = "configuration",
// the properties below are optional
ConfigurationAlias = "configurationAlias",
TypeArn = "typeArn",
TypeName = "typeName"
};
Remarks
ExampleMetadata: fixture=_generated
Properties
Configuration
Specifies the activated hook type configuration, in this AWS account and AWS Region .
string Configuration { get; }
Property Value
Remarks
You must specify either TypeName
and Configuration
or TypeARN
and Configuration
.
ConfigurationAlias
Specifies the activated hook type configuration, in this AWS account and AWS Region .
string? ConfigurationAlias { get; }
Property Value
Remarks
Defaults to default
alias. Hook types currently support default configuration alias.
TypeArn
The Amazon Resource Number (ARN) for the hook to set Configuration
for.
string? TypeArn { get; }
Property Value
Remarks
You must specify either TypeName
and Configuration
or TypeARN
and Configuration
.
TypeName
The unique name for your hook.
string? TypeName { get; }
Property Value
Remarks
Specifies a three-part namespace for your hook, with a recommended pattern of Organization::Service::Hook
.
You must specify either TypeName
and Configuration
or TypeARN
and Configuration
.