CfnServiceSettingMixinProps

class aws_cdk.cfn_property_mixins.aws_ssm.CfnServiceSettingMixinProps(*, setting_id=None, setting_value=None)

Bases: object

Properties for CfnServiceSettingPropsMixin.

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

  • setting_value (Optional[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.cfn_property_mixins import aws_ssm as ssm

cfn_service_setting_mixin_props = ssm.CfnServiceSettingMixinProps(
    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