interface ParameterProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AppConfig.CfnExtension.ParameterProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsappconfig#CfnExtension_ParameterProperty |
![]() | software.amazon.awscdk.services.appconfig.CfnExtension.ParameterProperty |
![]() | aws_cdk.aws_appconfig.CfnExtension.ParameterProperty |
![]() | aws-cdk-lib » aws_appconfig » CfnExtension » ParameterProperty |
A value such as an Amazon Resource Name (ARN) or an Amazon Simple Notification Service topic entered in an extension when invoked.
Parameter values are specified in an extension association. For more information about extensions, see Extending workflows in the AWS AppConfig User Guide .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appconfig as appconfig } from 'aws-cdk-lib';
const parameterProperty: appconfig.CfnExtension.ParameterProperty = {
required: false,
// the properties below are optional
description: 'description',
dynamic: false,
};
Properties
Name | Type | Description |
---|---|---|
required | boolean | IResolvable | A parameter value must be specified in the extension association. |
description? | string | Information about the parameter. |
dynamic? | boolean | IResolvable | Indicates whether this parameter's value can be supplied at the extension's action point instead of during extension association. |
required
Type:
boolean |
IResolvable
A parameter value must be specified in the extension association.
description?
Type:
string
(optional)
Information about the parameter.
dynamic?
Type:
boolean |
IResolvable
(optional)
Indicates whether this parameter's value can be supplied at the extension's action point instead of during extension association.
Dynamic parameters can't be marked Required
.