CfnStorageProfileMixinProps
- class aws_cdk.mixins_preview.aws_deadline.mixins.CfnStorageProfileMixinProps(*, display_name=None, farm_id=None, file_system_locations=None, os_family=None)
Bases:
objectProperties for CfnStorageProfilePropsMixin.
- Parameters:
display_name (
Optional[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 (
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.os_family (
Optional[str]) – The operating system (OS) family.
- 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.mixins_preview.aws_deadline import mixins as deadline_mixins cfn_storage_profile_mixin_props = deadline_mixins.CfnStorageProfileMixinProps( display_name="displayName", farm_id="farmId", file_system_locations=[deadline_mixins.CfnStorageProfilePropsMixin.FileSystemLocationProperty( name="name", path="path", type="type" )], os_family="osFamily" )
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.