Interface CfnStorageProfileProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStorageProfileProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:36.203Z")
@Stability(Stable)
public interface CfnStorageProfileProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnStorageProfile.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.deadline.*;
CfnStorageProfileProps cfnStorageProfileProps = CfnStorageProfileProps.builder()
.displayName("displayName")
.farmId("farmId")
.osFamily("osFamily")
// the properties below are optional
.fileSystemLocations(List.of(FileSystemLocationProperty.builder()
.name("name")
.path("path")
.type("type")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnStorageProfilePropsstatic final classAn implementation forCfnStorageProfileProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDisplayName
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.
- See Also:
-
getFarmId
The unique identifier of the farm that contains the storage profile.- See Also:
-
getOsFamily
The operating system (OS) family.- See Also:
-
getFileSystemLocations
Operating system specific file system path to the storage location.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnStorageProfile.FileSystemLocationProperty>- See Also:
-
builder
- Returns:
- a
CfnStorageProfileProps.BuilderofCfnStorageProfileProps
-