Class CfnHookDefaultVersionProps
Properties for defining a CfnHookDefaultVersion
.
Inheritance
System.Object
CfnHookDefaultVersionProps
Implements
Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnHookDefaultVersionProps : Object, ICfnHookDefaultVersionProps
Syntax (vb)
Public Class CfnHookDefaultVersionProps
Inherits Object
Implements ICfnHookDefaultVersionProps
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 cfnHookDefaultVersionProps = new CfnHookDefaultVersionProps {
TypeName = "typeName",
TypeVersionArn = "typeVersionArn",
VersionId = "versionId"
};
Synopsis
Constructors
CfnHookDefaultVersionProps() |
Properties
TypeName | The name of the Hook. |
TypeVersionArn | The version ID of the type configuration. |
VersionId | The version ID of the type specified. |
Constructors
CfnHookDefaultVersionProps()
public CfnHookDefaultVersionProps()
Properties
TypeName
The name of the Hook.
public string TypeName { get; set; }
Property Value
System.String
Remarks
You must specify either TypeVersionArn
, or TypeName
and VersionId
.
TypeVersionArn
The version ID of the type configuration.
public string TypeVersionArn { get; set; }
Property Value
System.String
Remarks
You must specify either TypeVersionArn
, or TypeName
and VersionId
.
VersionId
The version ID of the type specified.
public string VersionId { get; set; }
Property Value
System.String
Remarks
You must specify either TypeVersionArn
, or TypeName
and VersionId
.