CfnServiceSettingProps

class aws_cdk.aws_ssm.CfnServiceSettingProps(*, setting_id, setting_value)

Bases: object

Properties for defining a CfnServiceSetting.

Parameters:
  • setting_id (str) – The ID of the service setting, such as /ssm/parameter-store/high-throughput-enabled.

  • setting_value (str) – The value of the service setting.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-servicesetting.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_ssm as ssm

cfn_service_setting_props = ssm.CfnServiceSettingProps(
    setting_id="settingId",
    setting_value="settingValue"
)

Attributes

setting_id

The ID of the service setting, such as /ssm/parameter-store/high-throughput-enabled.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-servicesetting.html#cfn-ssm-servicesetting-settingid

setting_value

The value of the service setting.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-servicesetting.html#cfn-ssm-servicesetting-settingvalue