CfnAgentSpaceMixinProps

class aws_cdk.cfn_property_mixins.aws_devopsagent.CfnAgentSpaceMixinProps(*, description=None, kms_key_arn=None, name=None, operator_app=None, tags=None)

Bases: object

Properties for CfnAgentSpacePropsMixin.

Parameters:
  • description (Optional[str]) – The description of the Agent Space.

  • kms_key_arn (Optional[str]) – The ARN of the KMS key to use for encryption.

  • name (Optional[str]) – The name of the Agent Space.

  • operator_app (Union[IResolvable, OperatorAppProperty, Dict[str, Any], None])

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – An array of key-value pairs to apply to this resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-agentspace.html

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# 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

cfn_agent_space_mixin_props = devopsagent.CfnAgentSpaceMixinProps(
    description="description",
    kms_key_arn="kmsKeyArn",
    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"
        )
    ),
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

description

The description of the Agent Space.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-agentspace.html#cfn-devopsagent-agentspace-description

kms_key_arn

The ARN of the KMS key to use for encryption.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-agentspace.html#cfn-devopsagent-agentspace-kmskeyarn

name

The name of the Agent Space.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-agentspace.html#cfn-devopsagent-agentspace-name

operator_app

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-agentspace.html#cfn-devopsagent-agentspace-operatorapp

Type:

see

tags

An array of key-value pairs to apply to this resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-agentspace.html#cfn-devopsagent-agentspace-tags