CfnFleetProps

class aws_cdk.aws_robomaker.CfnFleetProps(*, name=None, tags=None)

Bases: object

Properties for defining a CfnFleet.

Parameters:
  • name (Optional[str]) – The name of the fleet.

  • tags (Optional[Mapping[str, str]]) – The list of all tags added to the fleet.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.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 import aws_robomaker as robomaker

cfn_fleet_props = robomaker.CfnFleetProps(
    name="name",
    tags={
        "tags_key": "tags"
    }
)

Attributes

name

The name of the fleet.

See:

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

tags

The list of all tags added to the fleet.

See:

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