Class: Aws::CodeDeploy::Types::BatchGetDeploymentGroupsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::BatchGetDeploymentGroupsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Note:
When making an API call, you may pass BatchGetDeploymentGroupsInput data as a hash:
{
application_name: "ApplicationName", # required
deployment_group_names: ["DeploymentGroupName"], # required
}
Represents the input of a BatchGetDeploymentGroups operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application_name ⇒ String
The name of an AWS CodeDeploy application associated with the applicable IAM user or AWS account.
-
#deployment_group_names ⇒ Array<String>
The names of the deployment groups.
Instance Attribute Details
#application_name ⇒ String
The name of an AWS CodeDeploy application associated with the applicable IAM user or AWS account.
425 426 427 428 429 430 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 425 class BatchGetDeploymentGroupsInput < Struct.new( :application_name, :deployment_group_names) SENSITIVE = [] include Aws::Structure end |
#deployment_group_names ⇒ Array<String>
The names of the deployment groups.
425 426 427 428 429 430 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 425 class BatchGetDeploymentGroupsInput < Struct.new( :application_name, :deployment_group_names) SENSITIVE = [] include Aws::Structure end |