CfnConfigurationManagerMixinProps
- class aws_cdk.mixins_preview.aws_ssmquicksetup.mixins.CfnConfigurationManagerMixinProps(*, configuration_definitions=None, description=None, name=None, tags=None)
Bases:
objectProperties for CfnConfigurationManagerPropsMixin.
- Parameters:
configuration_definitions (
Union[IResolvable,Sequence[Union[IResolvable,ConfigurationDefinitionProperty,Dict[str,Any]]],None]) – The definition of the Quick Setup configuration that the configuration manager deploys.description (
Optional[str]) – The description of the configuration.name (
Optional[str]) – The name of the configuration.tags (
Optional[Mapping[str,str]]) – Key-value pairs of metadata to assign to the configuration manager.
- See:
- 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.mixins_preview.aws_ssmquicksetup import mixins as ssmquicksetup_mixins cfn_configuration_manager_mixin_props = ssmquicksetup_mixins.CfnConfigurationManagerMixinProps( configuration_definitions=[ssmquicksetup_mixins.CfnConfigurationManagerPropsMixin.ConfigurationDefinitionProperty( id="id", local_deployment_administration_role_arn="localDeploymentAdministrationRoleArn", local_deployment_execution_role_name="localDeploymentExecutionRoleName", parameters={ "parameters_key": "parameters" }, type="type", type_version="typeVersion" )], description="description", name="name", tags={ "tags_key": "tags" } )
Attributes
- configuration_definitions
The definition of the Quick Setup configuration that the configuration manager deploys.
- description
The description of the configuration.
- name
The name of the configuration.
- tags
Key-value pairs of metadata to assign to the configuration manager.