CfnAgentSpaceProps
- class aws_cdk.aws_devopsagent.CfnAgentSpaceProps(*, name, description=None, operator_app=None)
Bases:
objectProperties for defining a
CfnAgentSpace.- Parameters:
name (
str) – The name of the Agent Space.description (
Optional[str]) – The description of the Agent Space.operator_app (
Union[IResolvable,OperatorAppProperty,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 import aws_devopsagent as devopsagent cfn_agent_space_props = devopsagent.CfnAgentSpaceProps( name="name", # the properties below are optional description="description", operator_app=devopsagent.CfnAgentSpace.OperatorAppProperty( iam=devopsagent.CfnAgentSpace.IamAuthConfigurationProperty( operator_app_role_arn="operatorAppRoleArn", # the properties below are optional created_at="createdAt", updated_at="updatedAt" ), idc=devopsagent.CfnAgentSpace.IdcAuthConfigurationProperty( idc_instance_arn="idcInstanceArn", operator_app_role_arn="operatorAppRoleArn", # the properties below are optional created_at="createdAt", idc_application_arn="idcApplicationArn", updated_at="updatedAt" ) ) )
Attributes
- description
The description of the Agent Space.
- name
The name of the Agent Space.