Class: Aws::OpsWorks::Types::DescribeAppsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpsWorks::Types::DescribeAppsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-opsworks/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#app_ids ⇒ Array<String>
An array of app IDs for the apps to be described.
-
#stack_id ⇒ String
The app stack ID.
Instance Attribute Details
#app_ids ⇒ Array<String>
An array of app IDs for the apps to be described. If you use this parameter, ‘DescribeApps` returns a description of the specified apps. Otherwise, it returns a description of every app.
2291 2292 2293 2294 2295 2296 |
# File 'lib/aws-sdk-opsworks/types.rb', line 2291 class DescribeAppsRequest < Struct.new( :stack_id, :app_ids) SENSITIVE = [] include Aws::Structure end |
#stack_id ⇒ String
The app stack ID. If you use this parameter, ‘DescribeApps` returns a description of the apps in the specified stack.
2291 2292 2293 2294 2295 2296 |
# File 'lib/aws-sdk-opsworks/types.rb', line 2291 class DescribeAppsRequest < Struct.new( :stack_id, :app_ids) SENSITIVE = [] include Aws::Structure end |