CfnStorageProfileProps
- class aws_cdk.aws_deadline.CfnStorageProfileProps(*, display_name, farm_id, os_family, 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. .. epigraph:: This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.farm_id (
str
) – The unique identifier of the farm that contains the storage profile.os_family (
str
) – The operating system (OS) family.file_system_locations (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,FileSystemLocationProperty
,Dict
[str
,Any
]]],None
]) – Operating system specific file system path to the storage location.
- 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_deadline as deadline cfn_storage_profile_props = deadline.CfnStorageProfileProps( display_name="displayName", farm_id="farmId", os_family="osFamily", # the properties below are optional 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.
This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.
- farm_id
The unique identifier of the farm that contains the storage profile.
- file_system_locations
Operating system specific file system path to the storage location.
- os_family
The operating system (OS) family.