CfnAgentSpacePropsMixin
- class aws_cdk.cfn_property_mixins.aws_devopsagent.CfnAgentSpacePropsMixin(props, *, strategy=None)
Bases:
MixinThe
AWS::DevOpsAgent::AgentSpaceresource specifies an Agent Space for the AWS DevOps Agent Service.- See:
- CloudformationResource:
AWS::DevOpsAgent::AgentSpace
- Mixin:
true
- 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_devopsagent as devopsagent import aws_cdk as cdk # merge_strategy: cdk.IMergeStrategy cfn_agent_space_props_mixin = devopsagent.CfnAgentSpacePropsMixin(devopsagent.CfnAgentSpaceMixinProps( description="description", name="name", operator_app=devopsagent.CfnAgentSpacePropsMixin.OperatorAppProperty( iam=devopsagent.CfnAgentSpacePropsMixin.IamAuthConfigurationProperty( created_at="createdAt", operator_app_role_arn="operatorAppRoleArn", updated_at="updatedAt" ), idc=devopsagent.CfnAgentSpacePropsMixin.IdcAuthConfigurationProperty( created_at="createdAt", idc_application_arn="idcApplicationArn", idc_instance_arn="idcInstanceArn", operator_app_role_arn="operatorAppRoleArn", updated_at="updatedAt" ) ) ), strategy=merge_strategy )
Create a mixin to apply properties to
AWS::DevOpsAgent::AgentSpace.- Parameters:
props (
Union[CfnAgentSpaceMixinProps,Dict[str,Any]]) – L1 properties to apply.strategy (
Optional[IMergeStrategy]) – Strategy for merging nested properties. Default: - PropertyMergeStrategy.combine()
Methods
- apply_to(construct)
Apply the mixin properties to the construct.
- Parameters:
construct (
IConstruct)- Return type:
None
- supports(construct)
Check if this mixin supports the given construct.
- Parameters:
construct (
IConstruct)- Return type:
bool
Attributes
- CFN_PROPERTY_KEYS = ['description', 'name', 'operatorApp']
Static Methods
- classmethod is_mixin(x)
Checks if
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.
IamAuthConfigurationProperty
- class CfnAgentSpacePropsMixin.IamAuthConfigurationProperty(*, created_at=None, operator_app_role_arn=None, updated_at=None)
Bases:
object- Parameters:
created_at (
Optional[str])operator_app_role_arn (
Optional[str])updated_at (
Optional[str])
- 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.cfn_property_mixins import aws_devopsagent as devopsagent iam_auth_configuration_property = devopsagent.CfnAgentSpacePropsMixin.IamAuthConfigurationProperty( created_at="createdAt", operator_app_role_arn="operatorAppRoleArn", updated_at="updatedAt" )
Attributes
- created_at
-
- Type:
see
- operator_app_role_arn
-
- Type:
see
IdcAuthConfigurationProperty
- class CfnAgentSpacePropsMixin.IdcAuthConfigurationProperty(*, created_at=None, idc_application_arn=None, idc_instance_arn=None, operator_app_role_arn=None, updated_at=None)
Bases:
object- Parameters:
created_at (
Optional[str])idc_application_arn (
Optional[str])idc_instance_arn (
Optional[str])operator_app_role_arn (
Optional[str])updated_at (
Optional[str])
- 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.cfn_property_mixins import aws_devopsagent as devopsagent idc_auth_configuration_property = devopsagent.CfnAgentSpacePropsMixin.IdcAuthConfigurationProperty( created_at="createdAt", idc_application_arn="idcApplicationArn", idc_instance_arn="idcInstanceArn", operator_app_role_arn="operatorAppRoleArn", updated_at="updatedAt" )
Attributes
- created_at
-
- Type:
see
- idc_application_arn
-
- Type:
see
- idc_instance_arn
-
- Type:
see
- operator_app_role_arn
-
- Type:
see
OperatorAppProperty
- class CfnAgentSpacePropsMixin.OperatorAppProperty(*, iam=None, idc=None)
Bases:
object- Parameters:
iam (
Union[IResolvable,IamAuthConfigurationProperty,Dict[str,Any],None])idc (
Union[IResolvable,IdcAuthConfigurationProperty,Dict[str,Any],None])
- 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.cfn_property_mixins import aws_devopsagent as devopsagent operator_app_property = devopsagent.CfnAgentSpacePropsMixin.OperatorAppProperty( iam=devopsagent.CfnAgentSpacePropsMixin.IamAuthConfigurationProperty( created_at="createdAt", operator_app_role_arn="operatorAppRoleArn", updated_at="updatedAt" ), idc=devopsagent.CfnAgentSpacePropsMixin.IdcAuthConfigurationProperty( created_at="createdAt", idc_application_arn="idcApplicationArn", idc_instance_arn="idcInstanceArn", operator_app_role_arn="operatorAppRoleArn", updated_at="updatedAt" ) )
Attributes
- iam
-
- Type:
see