Class: Aws::AppRunner::Types::UpdateServiceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRunner::Types::UpdateServiceRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apprunner/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auto_scaling_configuration_arn ⇒ String
The Amazon Resource Name (ARN) of an App Runner automatic scaling configuration resource that you want to associate with the App Runner service.
-
#health_check_configuration ⇒ Types::HealthCheckConfiguration
The settings for the health check that App Runner performs to monitor the health of the App Runner service.
-
#instance_configuration ⇒ Types::InstanceConfiguration
The runtime configuration to apply to instances (scaling units) of your service.
-
#network_configuration ⇒ Types::NetworkConfiguration
Configuration settings related to network traffic of the web application that the App Runner service runs.
-
#observability_configuration ⇒ Types::ServiceObservabilityConfiguration
The observability configuration of your service.
-
#service_arn ⇒ String
The Amazon Resource Name (ARN) of the App Runner service that you want to update.
-
#source_configuration ⇒ Types::SourceConfiguration
The source configuration to apply to the App Runner service.
Instance Attribute Details
#auto_scaling_configuration_arn ⇒ String
The Amazon Resource Name (ARN) of an App Runner automatic scaling configuration resource that you want to associate with the App Runner service.
2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 |
# File 'lib/aws-sdk-apprunner/types.rb', line 2943 class UpdateServiceRequest < Struct.new( :service_arn, :source_configuration, :instance_configuration, :auto_scaling_configuration_arn, :health_check_configuration, :network_configuration, :observability_configuration) SENSITIVE = [] include Aws::Structure end |
#health_check_configuration ⇒ Types::HealthCheckConfiguration
The settings for the health check that App Runner performs to monitor the health of the App Runner service.
2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 |
# File 'lib/aws-sdk-apprunner/types.rb', line 2943 class UpdateServiceRequest < Struct.new( :service_arn, :source_configuration, :instance_configuration, :auto_scaling_configuration_arn, :health_check_configuration, :network_configuration, :observability_configuration) SENSITIVE = [] include Aws::Structure end |
#instance_configuration ⇒ Types::InstanceConfiguration
The runtime configuration to apply to instances (scaling units) of your service.
2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 |
# File 'lib/aws-sdk-apprunner/types.rb', line 2943 class UpdateServiceRequest < Struct.new( :service_arn, :source_configuration, :instance_configuration, :auto_scaling_configuration_arn, :health_check_configuration, :network_configuration, :observability_configuration) SENSITIVE = [] include Aws::Structure end |
#network_configuration ⇒ Types::NetworkConfiguration
Configuration settings related to network traffic of the web application that the App Runner service runs.
2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 |
# File 'lib/aws-sdk-apprunner/types.rb', line 2943 class UpdateServiceRequest < Struct.new( :service_arn, :source_configuration, :instance_configuration, :auto_scaling_configuration_arn, :health_check_configuration, :network_configuration, :observability_configuration) SENSITIVE = [] include Aws::Structure end |
#observability_configuration ⇒ Types::ServiceObservabilityConfiguration
The observability configuration of your service.
2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 |
# File 'lib/aws-sdk-apprunner/types.rb', line 2943 class UpdateServiceRequest < Struct.new( :service_arn, :source_configuration, :instance_configuration, :auto_scaling_configuration_arn, :health_check_configuration, :network_configuration, :observability_configuration) SENSITIVE = [] include Aws::Structure end |
#service_arn ⇒ String
The Amazon Resource Name (ARN) of the App Runner service that you want to update.
2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 |
# File 'lib/aws-sdk-apprunner/types.rb', line 2943 class UpdateServiceRequest < Struct.new( :service_arn, :source_configuration, :instance_configuration, :auto_scaling_configuration_arn, :health_check_configuration, :network_configuration, :observability_configuration) SENSITIVE = [] include Aws::Structure end |
#source_configuration ⇒ Types::SourceConfiguration
The source configuration to apply to the App Runner service.
You can change the configuration of the code or image repository that the service uses. However, you can’t switch from code to image or the other way around. This means that you must provide the same structure member of ‘SourceConfiguration` that you originally included when you created the service. Specifically, you can include either `CodeRepository` or `ImageRepository`. To update the source configuration, set the values to members of the structure that you include.
2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 |
# File 'lib/aws-sdk-apprunner/types.rb', line 2943 class UpdateServiceRequest < Struct.new( :service_arn, :source_configuration, :instance_configuration, :auto_scaling_configuration_arn, :health_check_configuration, :network_configuration, :observability_configuration) SENSITIVE = [] include Aws::Structure end |