Class: Aws::EFS::Types::DescribeMountTargetsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::EFS::Types::DescribeMountTargetsResponse
- Defined in:
- gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#marker ⇒ String
If the request included the
Marker
, the response returns that value in this field. -
#mount_targets ⇒ Array<Types::MountTargetDescription>
Returns the file system's mount targets as an array of
MountTargetDescription
objects. -
#next_marker ⇒ String
If a value is present, there are more mount targets to return.
Instance Attribute Details
#marker ⇒ String
If the request included the Marker
, the response returns that
value in this field.
1021 1022 1023 1024 1025 1026 1027 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 1021 class DescribeMountTargetsResponse < Struct.new( :marker, :mount_targets, :next_marker) SENSITIVE = [] include Aws::Structure end |
#mount_targets ⇒ Array<Types::MountTargetDescription>
Returns the file system's mount targets as an array of
MountTargetDescription
objects.
1021 1022 1023 1024 1025 1026 1027 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 1021 class DescribeMountTargetsResponse < Struct.new( :marker, :mount_targets, :next_marker) SENSITIVE = [] include Aws::Structure end |
#next_marker ⇒ String
If a value is present, there are more mount targets to return. In a
subsequent request, you can provide Marker
in your request with
this value to retrieve the next set of mount targets.
1021 1022 1023 1024 1025 1026 1027 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 1021 class DescribeMountTargetsResponse < Struct.new( :marker, :mount_targets, :next_marker) SENSITIVE = [] include Aws::Structure end |