You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Backup::Types::CreateBackupSelectionInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateBackupSelectionInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  backup_plan_id: "string", # required
  backup_selection: { # required
    selection_name: "BackupSelectionName", # required
    iam_role_arn: "IAMRoleArn", # required
    resources: ["ARN"],
    list_of_tags: [
      {
        condition_type: "STRINGEQUALS", # required, accepts STRINGEQUALS
        condition_key: "ConditionKey", # required
        condition_value: "ConditionValue", # required
      },
    ],
  },
  creator_request_id: "string",
}

Instance Attribute Summary collapse

Instance Attribute Details

#backup_plan_idString

Uniquely identifies the backup plan to be associated with the selection of resources.

Returns:

  • (String)

    Uniquely identifies the backup plan to be associated with the selection of resources.

#backup_selectionTypes::BackupSelection

Specifies the body of a request to assign a set of resources to a backup plan.

Returns:

#creator_request_idString

A unique string that identifies the request and allows failed requests to be retried without the risk of running the operation twice.

Returns:

  • (String)

    A unique string that identifies the request and allows failed requests to be retried without the risk of running the operation twice.