CfnWorkerMixinProps

class aws_cdk.cfn_property_mixins.aws_deadline.CfnWorkerMixinProps(*, farm_id=None, fleet_id=None, host_properties=None, tags=None)

Bases: object

Properties for CfnWorkerPropsMixin.

Parameters:
  • farm_id (Optional[str]) – The farm ID.

  • fleet_id (Optional[str]) – The fleet ID.

  • host_properties (Union[IResolvable, HostPropertiesRequestProperty, Dict[str, Any], None]) – The host property details.

  • tags (Optional[Sequence[Union[TagsItemsProperty, 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-deadline-worker.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.cfn_property_mixins import aws_deadline as deadline

cfn_worker_mixin_props = deadline.CfnWorkerMixinProps(
    farm_id="farmId",
    fleet_id="fleetId",
    host_properties=deadline.CfnWorkerPropsMixin.HostPropertiesRequestProperty(
        host_name="hostName",
        ip_addresses=deadline.CfnWorkerPropsMixin.IpAddressesProperty(
            ip_v4_addresses=["ipV4Addresses"],
            ip_v6_addresses=["ipV6Addresses"]
        )
    ),
    tags=[deadline.CfnWorkerPropsMixin.TagsItemsProperty(
        key="key",
        value="value"
    )]
)

Attributes

farm_id

The farm ID.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-worker.html#cfn-deadline-worker-farmid

fleet_id

The fleet ID.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-worker.html#cfn-deadline-worker-fleetid

host_properties

The host property details.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-worker.html#cfn-deadline-worker-hostproperties

tags

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

See:

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