Struct rusoto_rds::CopyOptionGroupMessage [] [src]

pub struct CopyOptionGroupMessage {
    pub source_option_group_identifier: String,
    pub tags: Option<Vec<Tag>>,
    pub target_option_group_description: String,
    pub target_option_group_identifier: String,
}

Fields

The identifier or ARN for the source option group. For information about creating an ARN, see Constructing an RDS Amazon Resource Name (ARN).

Constraints:

  • Must specify a valid option group.

  • If the source option group is in the same AWS Region as the copy, specify a valid option group identifier, for example my-option-group, or a valid ARN.

  • If the source option group is in a different AWS Region than the copy, specify a valid option group ARN, for example arn:aws:rds:us-west-2:123456789012:og:special-options.

The description for the copied option group.

The identifier for the copied option group.

Constraints:

  • Cannot be null, empty, or blank

  • Must contain from 1 to 255 letters, numbers, or hyphens

  • First character must be a letter

  • Cannot end with a hyphen or contain two consecutive hyphens

Example: my-option-group

Trait Implementations

impl Default for CopyOptionGroupMessage
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for CopyOptionGroupMessage
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CopyOptionGroupMessage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations