Class: Aws::WorkLink::Types::UpdateFleetMetadataRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WorkLink::Types::UpdateFleetMetadataRequest
- Defined in:
- gems/aws-sdk-worklink/lib/aws-sdk-worklink/types.rb
Overview
Note:
When making an API call, you may pass UpdateFleetMetadataRequest data as a hash:
{
fleet_arn: "FleetArn", # required
display_name: "DisplayName",
optimize_for_end_user_location: false,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#display_name ⇒ String
The fleet name to display.
-
#fleet_arn ⇒ String
The ARN of the fleet.
-
#optimize_for_end_user_location ⇒ Boolean
The option to optimize for better performance by routing traffic through the closest AWS Region to users, which may be outside of your home Region.
Instance Attribute Details
#display_name ⇒ String
The fleet name to display. The existing DisplayName is unset if null is passed.
1464 1465 1466 1467 1468 1469 1470 |
# File 'gems/aws-sdk-worklink/lib/aws-sdk-worklink/types.rb', line 1464 class UpdateFleetMetadataRequest < Struct.new( :fleet_arn, :display_name, :optimize_for_end_user_location) SENSITIVE = [] include Aws::Structure end |
#fleet_arn ⇒ String
The ARN of the fleet.
1464 1465 1466 1467 1468 1469 1470 |
# File 'gems/aws-sdk-worklink/lib/aws-sdk-worklink/types.rb', line 1464 class UpdateFleetMetadataRequest < Struct.new( :fleet_arn, :display_name, :optimize_for_end_user_location) SENSITIVE = [] include Aws::Structure end |
#optimize_for_end_user_location ⇒ Boolean
The option to optimize for better performance by routing traffic through the closest AWS Region to users, which may be outside of your home Region.
1464 1465 1466 1467 1468 1469 1470 |
# File 'gems/aws-sdk-worklink/lib/aws-sdk-worklink/types.rb', line 1464 class UpdateFleetMetadataRequest < Struct.new( :fleet_arn, :display_name, :optimize_for_end_user_location) SENSITIVE = [] include Aws::Structure end |