Class CfnGuardHook.OptionsProperty
Specifies the input parameters for a Guard Hook.
Implements
Inherited Members
Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnGuardHook.OptionsProperty : CfnGuardHook.IOptionsProperty
Syntax (vb)
Public Class CfnGuardHook.OptionsProperty Implements CfnGuardHook.IOptionsProperty
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 optionsProperty = new OptionsProperty {
InputParams = new S3LocationProperty {
Uri = "uri",
// the properties below are optional
VersionId = "versionId"
}
};
Synopsis
Constructors
OptionsProperty() | Specifies the input parameters for a Guard Hook. |
Properties
InputParams | Specifies the S3 location where your input parameters are located. |
Constructors
OptionsProperty()
Specifies the input parameters for a Guard Hook.
public OptionsProperty()
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 optionsProperty = new OptionsProperty {
InputParams = new S3LocationProperty {
Uri = "uri",
// the properties below are optional
VersionId = "versionId"
}
};
Properties
InputParams
Specifies the S3 location where your input parameters are located.
public object? InputParams { get; set; }