Class: Aws::Amplify::Types::CreateBackendEnvironmentRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Amplify::Types::CreateBackendEnvironmentRequest
- Defined in:
- gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb
Overview
Note:
When making an API call, you may pass CreateBackendEnvironmentRequest data as a hash:
{
app_id: "AppId", # required
environment_name: "EnvironmentName", # required
stack_name: "StackName",
deployment_artifacts: "DeploymentArtifacts",
}
The request structure for the backend environment create request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#app_id ⇒ String
The unique ID for an Amplify app.
-
#deployment_artifacts ⇒ String
The name of deployment artifacts.
-
#environment_name ⇒ String
The name for the backend environment.
-
#stack_name ⇒ String
The AWS CloudFormation stack name of a backend environment.
Instance Attribute Details
#app_id ⇒ String
The unique ID for an Amplify app.
716 717 718 719 720 721 722 723 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 716 class CreateBackendEnvironmentRequest < Struct.new( :app_id, :environment_name, :stack_name, :deployment_artifacts) SENSITIVE = [] include Aws::Structure end |
#deployment_artifacts ⇒ String
The name of deployment artifacts.
716 717 718 719 720 721 722 723 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 716 class CreateBackendEnvironmentRequest < Struct.new( :app_id, :environment_name, :stack_name, :deployment_artifacts) SENSITIVE = [] include Aws::Structure end |
#environment_name ⇒ String
The name for the backend environment.
716 717 718 719 720 721 722 723 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 716 class CreateBackendEnvironmentRequest < Struct.new( :app_id, :environment_name, :stack_name, :deployment_artifacts) SENSITIVE = [] include Aws::Structure end |
#stack_name ⇒ String
The AWS CloudFormation stack name of a backend environment.
716 717 718 719 720 721 722 723 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 716 class CreateBackendEnvironmentRequest < Struct.new( :app_id, :environment_name, :stack_name, :deployment_artifacts) SENSITIVE = [] include Aws::Structure end |