Class: Aws::AppStream::Types::StorageConnector
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppStream::Types::StorageConnector
- Defined in:
- gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb
Overview
Note:
When making an API call, you may pass StorageConnector data as a hash:
{
connector_type: "HOMEFOLDERS", # required, accepts HOMEFOLDERS, GOOGLE_DRIVE, ONE_DRIVE
resource_identifier: "ResourceIdentifier",
domains: ["Domain"],
}
Describes a connector that enables persistent storage for users.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#connector_type ⇒ String
The type of storage connector.
-
#domains ⇒ Array<String>
The names of the domains for the account.
-
#resource_identifier ⇒ String
The ARN of the storage connector.
Instance Attribute Details
#connector_type ⇒ String
The type of storage connector.
4766 4767 4768 4769 4770 4771 4772 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 4766 class StorageConnector < Struct.new( :connector_type, :resource_identifier, :domains) SENSITIVE = [] include Aws::Structure end |
#domains ⇒ Array<String>
The names of the domains for the account.
4766 4767 4768 4769 4770 4771 4772 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 4766 class StorageConnector < Struct.new( :connector_type, :resource_identifier, :domains) SENSITIVE = [] include Aws::Structure end |
#resource_identifier ⇒ String
The ARN of the storage connector.
4766 4767 4768 4769 4770 4771 4772 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 4766 class StorageConnector < Struct.new( :connector_type, :resource_identifier, :domains) SENSITIVE = [] include Aws::Structure end |