Interface ICfnHookTypeConfigProps
Properties for defining a CfnHookTypeConfig
.
Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnHookTypeConfigProps
Syntax (vb)
Public Interface ICfnHookTypeConfigProps
Remarks
ExampleMetadata: fixture=_generated
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"
};
Synopsis
Properties
Configuration | Specifies the activated Hook type configuration, in this AWS account and AWS Region . |
ConfigurationAlias | Specifies the activated Hook type configuration, in this AWS account and AWS Region . |
TypeArn | The Amazon Resource Number (ARN) for the Hook to set |
TypeName | The unique name for your Hook. |
Properties
Configuration
Specifies the activated Hook type configuration, in this AWS account and AWS Region .
string Configuration { get; }
Property Value
System.String
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 .
virtual string ConfigurationAlias { get; }
Property Value
System.String
Remarks
Defaults to default
alias. Hook types currently support default configuration alias.
Default: - "default"
TypeArn
The Amazon Resource Number (ARN) for the Hook to set Configuration
for.
virtual string TypeArn { get; }
Property Value
System.String
Remarks
You must specify either TypeName
and Configuration
or TypeArn
and Configuration
.
TypeName
The unique name for your Hook.
virtual string TypeName { get; }
Property Value
System.String
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
.