Class: Aws::OpsWorksCM::Types::CreateBackupRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpsWorksCM::Types::CreateBackupRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-opsworkscm/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
A user-defined description of the backup.
-
#server_name ⇒ String
The name of the server that you want to back up.
-
#tags ⇒ Array<Types::Tag>
A map that contains tag keys and tag values to attach to an AWS OpsWorks-CM server backup.
Instance Attribute Details
#description ⇒ String
A user-defined description of the backup.
275 276 277 278 279 280 281 |
# File 'lib/aws-sdk-opsworkscm/types.rb', line 275 class CreateBackupRequest < Struct.new( :server_name, :description, :tags) SENSITIVE = [] include Aws::Structure end |
#server_name ⇒ String
The name of the server that you want to back up.
275 276 277 278 279 280 281 |
# File 'lib/aws-sdk-opsworkscm/types.rb', line 275 class CreateBackupRequest < Struct.new( :server_name, :description, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A map that contains tag keys and tag values to attach to an AWS OpsWorks-CM server backup.
-
The key cannot be empty.
-
The key can be a maximum of 127 characters, and can contain only Unicode letters, numbers, or separators, or the following special characters: ‘+ - = . _ : /`
-
The value can be a maximum 255 characters, and contain only Unicode letters, numbers, or separators, or the following special characters: ‘+ - = . _ : /`
-
Leading and trailing white spaces are trimmed from both the key and value.
-
A maximum of 50 user-applied tags is allowed for tag-supported AWS OpsWorks-CM resources.
275 276 277 278 279 280 281 |
# File 'lib/aws-sdk-opsworkscm/types.rb', line 275 class CreateBackupRequest < Struct.new( :server_name, :description, :tags) SENSITIVE = [] include Aws::Structure end |