Class: Aws::ECS::Types::FSxWindowsFileServerVolumeConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::FSxWindowsFileServerVolumeConfiguration
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
When making an API call, you may pass FSxWindowsFileServerVolumeConfiguration data as a hash:
{
file_system_id: "String", # required
root_directory: "String", # required
authorization_config: { # required
credentials_parameter: "String", # required
domain: "String", # required
},
}
This parameter is specified when you're using Amazon FSx for Windows File Server file system for task storage.
For more information and the input format, see Amazon FSx for Windows File Server Volumes in the Amazon Elastic Container Service Developer Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#authorization_config ⇒ Types::FSxWindowsFileServerAuthorizationConfig
The authorization configuration details for the Amazon FSx for Windows File Server file system.
-
#file_system_id ⇒ String
The Amazon FSx for Windows File Server file system ID to use.
-
#root_directory ⇒ String
The directory within the Amazon FSx for Windows File Server file system to mount as the root directory inside the host.
Instance Attribute Details
#authorization_config ⇒ Types::FSxWindowsFileServerAuthorizationConfig
The authorization configuration details for the Amazon FSx for Windows File Server file system.
5222 5223 5224 5225 5226 5227 5228 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 5222 class FSxWindowsFileServerVolumeConfiguration < Struct.new( :file_system_id, :root_directory, :authorization_config) SENSITIVE = [] include Aws::Structure end |
#file_system_id ⇒ String
The Amazon FSx for Windows File Server file system ID to use.
5222 5223 5224 5225 5226 5227 5228 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 5222 class FSxWindowsFileServerVolumeConfiguration < Struct.new( :file_system_id, :root_directory, :authorization_config) SENSITIVE = [] include Aws::Structure end |
#root_directory ⇒ String
The directory within the Amazon FSx for Windows File Server file system to mount as the root directory inside the host.
5222 5223 5224 5225 5226 5227 5228 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 5222 class FSxWindowsFileServerVolumeConfiguration < Struct.new( :file_system_id, :root_directory, :authorization_config) SENSITIVE = [] include Aws::Structure end |