Class: Aws::Backup::Types::UpdateFrameworkInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Backup::Types::UpdateFrameworkInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-backup/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#framework_controls ⇒ Array<Types::FrameworkControl>
The controls that make up the framework.
-
#framework_description ⇒ String
An optional description of the framework with a maximum 1,024 characters.
-
#framework_name ⇒ String
The unique name of a framework.
-
#idempotency_token ⇒ String
A customer-chosen string that you can use to distinguish between otherwise identical calls to ‘UpdateFrameworkInput`.
Instance Attribute Details
#framework_controls ⇒ Array<Types::FrameworkControl>
The controls that make up the framework. Each control in the list has a name, input parameters, and scope.
8519 8520 8521 8522 8523 8524 8525 8526 |
# File 'lib/aws-sdk-backup/types.rb', line 8519 class UpdateFrameworkInput < Struct.new( :framework_name, :framework_description, :framework_controls, :idempotency_token) SENSITIVE = [] include Aws::Structure end |
#framework_description ⇒ String
An optional description of the framework with a maximum 1,024 characters.
8519 8520 8521 8522 8523 8524 8525 8526 |
# File 'lib/aws-sdk-backup/types.rb', line 8519 class UpdateFrameworkInput < Struct.new( :framework_name, :framework_description, :framework_controls, :idempotency_token) SENSITIVE = [] include Aws::Structure end |
#framework_name ⇒ String
The unique name of a framework. This name is between 1 and 256 characters, starting with a letter, and consisting of letters (a-z, A-Z), numbers (0-9), and underscores (_).
8519 8520 8521 8522 8523 8524 8525 8526 |
# File 'lib/aws-sdk-backup/types.rb', line 8519 class UpdateFrameworkInput < Struct.new( :framework_name, :framework_description, :framework_controls, :idempotency_token) SENSITIVE = [] include Aws::Structure end |
#idempotency_token ⇒ String
A customer-chosen string that you can use to distinguish between otherwise identical calls to ‘UpdateFrameworkInput`. Retrying a successful request with the same idempotency token results in a success message with no action taken.
**A suitable default value is auto-generated.** You should normally not need to pass this option.
8519 8520 8521 8522 8523 8524 8525 8526 |
# File 'lib/aws-sdk-backup/types.rb', line 8519 class UpdateFrameworkInput < Struct.new( :framework_name, :framework_description, :framework_controls, :idempotency_token) SENSITIVE = [] include Aws::Structure end |