Method: Aws::GameLift::Types::ContainerFleet#fleet_role_arn
- Defined in:
- lib/aws-sdk-gamelift/types.rb
#fleet_role_arn ⇒ String
The unique identifier for an Identity and Access Management (IAM) role with permissions to run your containers on resources that are managed by Amazon GameLift. See [Set up an IAM service role]. This fleet property can’t be changed.
[1]: docs.aws.amazon.com/gamelift/latest/developerguide/setting-up-role.html
876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 |
# File 'lib/aws-sdk-gamelift/types.rb', line 876 class ContainerFleet < Struct.new( :fleet_id, :fleet_arn, :fleet_role_arn, :game_server_container_group_definition_name, :game_server_container_group_definition_arn, :per_instance_container_group_definition_name, :per_instance_container_group_definition_arn, :instance_connection_port_range, :instance_inbound_permissions, :game_server_container_groups_per_instance, :maximum_game_server_container_groups_per_instance, :instance_type, :billing_type, :description, :creation_time, :metric_groups, :new_game_session_protection_policy, :game_session_creation_limit_policy, :status, :deployment_details, :log_configuration, :location_attributes) SENSITIVE = [] include Aws::Structure end |