1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
)
// Information about the resource tags used to identify resources that are retained
// by the retention rule.
type ResourceTag struct {
// The tag key.
//
// This member is required.
ResourceTagKey *string
// The tag value.
ResourceTagValue *string
noSmithyDocumentSerde
}
// Information about the retention period for which the retention rule is to retain
// resources.
type RetentionPeriod struct {
// The unit of time in which the retention period is measured. Currently, only DAYS
// is supported.
//
// This member is required.
RetentionPeriodUnit RetentionPeriodUnit
// The period value for which the retention rule is to retain resources. The period
// is measured using the unit specified for RetentionPeriodUnit.
//
// This member is required.
RetentionPeriodValue *int32
noSmithyDocumentSerde
}
// Information about a Recycle Bin retention rule.
type RuleSummary struct {
// The retention rule description.
Description *string
// The unique ID of the retention rule.
Identifier *string
// Information about the retention period for which the retention rule is to retain
// resources.
RetentionPeriod *RetentionPeriod
noSmithyDocumentSerde
}
// Information about the tags to assign to the retention rule.
type Tag struct {
// The tag key.
//
// This member is required.
Key *string
// The tag value.
//
// This member is required.
Value *string
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|