interface CfnServiceSettingMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSM.CfnServiceSettingMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsssm#CfnServiceSettingMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ssm.CfnServiceSettingMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ssm.CfnServiceSettingMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ssm » CfnServiceSettingMixinProps |
Properties for CfnServiceSettingPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-servicesetting.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ssm as ssm } from '@aws-cdk/cfn-property-mixins';
const cfnServiceSettingMixinProps: ssm.CfnServiceSettingMixinProps = {
settingId: 'settingId',
settingValue: 'settingValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| setting | string | The ID of the service setting, such as /ssm/parameter-store/high-throughput-enabled. |
| setting | string | The value of the service setting. |
settingId?
Type:
string
(optional)
The ID of the service setting, such as /ssm/parameter-store/high-throughput-enabled.
settingValue?
Type:
string
(optional)
The value of the service setting.

.NET
Go
Java
Python
TypeScript