Class: Aws::CodeDeploy::Types::DeleteDeploymentGroupInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::DeleteDeploymentGroupInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Note:
When making an API call, you may pass DeleteDeploymentGroupInput data as a hash:
{
application_name: "ApplicationName", # required
deployment_group_name: "DeploymentGroupName", # required
}
Represents the input of a ‘DeleteDeploymentGroup` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application_name ⇒ String
The name of an AWS CodeDeploy application associated with the IAM user or AWS account.
-
#deployment_group_name ⇒ String
The name of a deployment group for the specified application.
Instance Attribute Details
#application_name ⇒ String
The name of an AWS CodeDeploy application associated with the IAM user or AWS account.
1492 1493 1494 1495 1496 1497 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 1492 class DeleteDeploymentGroupInput < Struct.new( :application_name, :deployment_group_name) SENSITIVE = [] include Aws::Structure end |
#deployment_group_name ⇒ String
The name of a deployment group for the specified application.
1492 1493 1494 1495 1496 1497 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 1492 class DeleteDeploymentGroupInput < Struct.new( :application_name, :deployment_group_name) SENSITIVE = [] include Aws::Structure end |