interface OptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFormation.CfnGuardHook.OptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudformation#CfnGuardHook_OptionsProperty |
Java | software.amazon.awscdk.services.cloudformation.CfnGuardHook.OptionsProperty |
Python | aws_cdk.aws_cloudformation.CfnGuardHook.OptionsProperty |
TypeScript | aws-cdk-lib » aws_cloudformation » CfnGuardHook » OptionsProperty |
Specifies the input parameters for a Guard Hook.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudformation as cloudformation } from 'aws-cdk-lib';
const optionsProperty: cloudformation.CfnGuardHook.OptionsProperty = {
inputParams: {
uri: 'uri',
// the properties below are optional
versionId: 'versionId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| input | IResolvable | S3 | Specifies the S3 location where your input parameters are located. |
inputParams?
Type:
IResolvable | S3
(optional)
Specifies the S3 location where your input parameters are located.

.NET
Go
Java
Python
TypeScript