CfnStorageProfileProps

class aws_cdk.aws_deadline.CfnStorageProfileProps(*, display_name, os_family, farm_id=None, file_system_locations=None)

Bases: object

Properties for defining a CfnStorageProfile.

Parameters:
  • display_name (str) – The display name of the storage profile summary to update.

  • os_family (str) – The operating system (OS) family.

  • farm_id (Optional[str]) – The unique identifier of the farm that contains the storage profile.

  • file_system_locations (Union[IResolvable, Sequence[Union[IResolvable, FileSystemLocationProperty, Dict[str, Any]]], None]) – Operating system specific file system path to the storage location.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-storageprofile.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_deadline as deadline

cfn_storage_profile_props = deadline.CfnStorageProfileProps(
    display_name="displayName",
    os_family="osFamily",

    # the properties below are optional
    farm_id="farmId",
    file_system_locations=[deadline.CfnStorageProfile.FileSystemLocationProperty(
        name="name",
        path="path",
        type="type"
    )]
)

Attributes

display_name

The display name of the storage profile summary to update.

See:

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

farm_id

The unique identifier of the farm that contains the storage profile.

See:

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

file_system_locations

Operating system specific file system path to the storage location.

See:

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

os_family

The operating system (OS) family.

See:

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