interface CfnServiceSettingProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SSM.CfnServiceSettingProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsssm#CfnServiceSettingProps |
Java | software.amazon.awscdk.services.ssm.CfnServiceSettingProps |
Python | aws_cdk.aws_ssm.CfnServiceSettingProps |
TypeScript | aws-cdk-lib » aws_ssm » CfnServiceSettingProps |
Properties for defining a CfnServiceSetting.
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-lib';
const cfnServiceSettingProps: ssm.CfnServiceSettingProps = {
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
The ID of the service setting, such as /ssm/parameter-store/high-throughput-enabled.
settingValue
Type:
string
The value of the service setting.

.NET
Go
Java
Python
TypeScript