Show / Hide Table of Contents

Class CfnGuardHook.OptionsProperty

Specifies the input parameters for a Guard Hook.

Inheritance
object
CfnGuardHook.OptionsProperty
Implements
CfnGuardHook.IOptionsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-guardhook-options.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-guardhook-options.html

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; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-guardhook-options.html#cfn-cloudformation-guardhook-options-inputparams

Implements

CfnGuardHook.IOptionsProperty
Back to top Generated by DocFX