func ActionType_Values() []string
ActionType_Values returns all elements of the ActionType enum
func Mode_Values() []string
Mode_Values returns all elements of the Mode enum
func NodeConfigurationOptionsFilterName_Values() []string
NodeConfigurationOptionsFilterName_Values returns all elements of the NodeConfigurationOptionsFilterName enum
func OperatorType_Values() []string
OperatorType_Values returns all elements of the OperatorType enum
func ParameterApplyType_Values() []string
ParameterApplyType_Values returns all elements of the ParameterApplyType enum
func ReservedNodeOfferingType_Values() []string
ReservedNodeOfferingType_Values returns all elements of the ReservedNodeOfferingType enum
func ScheduleState_Values() []string
ScheduleState_Values returns all elements of the ScheduleState enum
func ScheduledActionFilterName_Values() []string
ScheduledActionFilterName_Values returns all elements of the ScheduledActionFilterName enum
func ScheduledActionState_Values() []string
ScheduledActionState_Values returns all elements of the ScheduledActionState enum
func ScheduledActionTypeValues_Values() []string
ScheduledActionTypeValues_Values returns all elements of the ScheduledActionTypeValues enum
func SnapshotAttributeToSortBy_Values() []string
SnapshotAttributeToSortBy_Values returns all elements of the SnapshotAttributeToSortBy enum
func SortByOrder_Values() []string
SortByOrder_Values returns all elements of the SortByOrder enum
func SourceType_Values() []string
SourceType_Values returns all elements of the SourceType enum
func TableRestoreStatusType_Values() []string
TableRestoreStatusType_Values returns all elements of the TableRestoreStatusType enum
func UsageLimitBreachAction_Values() []string
UsageLimitBreachAction_Values returns all elements of the UsageLimitBreachAction enum
func UsageLimitFeatureType_Values() []string
UsageLimitFeatureType_Values returns all elements of the UsageLimitFeatureType enum
func UsageLimitLimitType_Values() []string
UsageLimitLimitType_Values returns all elements of the UsageLimitLimitType enum
func UsageLimitPeriod_Values() []string
UsageLimitPeriod_Values returns all elements of the UsageLimitPeriod enum
type AcceptReservedNodeExchangeInput struct { // A string representing the node identifier of the DC1 Reserved Node to be // exchanged. // // ReservedNodeId is a required field ReservedNodeId *string `type:"string" required:"true"` // The unique identifier of the DC2 Reserved Node offering to be used for the // exchange. You can obtain the value for the parameter by calling GetReservedNodeExchangeOfferings // // TargetReservedNodeOfferingId is a required field TargetReservedNodeOfferingId *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s AcceptReservedNodeExchangeInput) GoString() string
GoString returns the string representation
func (s *AcceptReservedNodeExchangeInput) SetReservedNodeId(v string) *AcceptReservedNodeExchangeInput
SetReservedNodeId sets the ReservedNodeId field's value.
func (s *AcceptReservedNodeExchangeInput) SetTargetReservedNodeOfferingId(v string) *AcceptReservedNodeExchangeInput
SetTargetReservedNodeOfferingId sets the TargetReservedNodeOfferingId field's value.
func (s AcceptReservedNodeExchangeInput) String() string
String returns the string representation
func (s *AcceptReservedNodeExchangeInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type AcceptReservedNodeExchangeOutput struct { // Describes a reserved node. You can call the DescribeReservedNodeOfferings // API to obtain the available reserved node offerings. ExchangedReservedNode *ReservedNode `type:"structure"` // contains filtered or unexported fields }
func (s AcceptReservedNodeExchangeOutput) GoString() string
GoString returns the string representation
func (s *AcceptReservedNodeExchangeOutput) SetExchangedReservedNode(v *ReservedNode) *AcceptReservedNodeExchangeOutput
SetExchangedReservedNode sets the ExchangedReservedNode field's value.
func (s AcceptReservedNodeExchangeOutput) String() string
String returns the string representation
type AccountAttribute struct { // The name of the attribute. AttributeName *string `type:"string"` // A list of attribute values. AttributeValues []*AttributeValueTarget `locationNameList:"AttributeValueTarget" type:"list"` // contains filtered or unexported fields }
A name value pair that describes an aspect of an account.
func (s AccountAttribute) GoString() string
GoString returns the string representation
func (s *AccountAttribute) SetAttributeName(v string) *AccountAttribute
SetAttributeName sets the AttributeName field's value.
func (s *AccountAttribute) SetAttributeValues(v []*AttributeValueTarget) *AccountAttribute
SetAttributeValues sets the AttributeValues field's value.
func (s AccountAttribute) String() string
String returns the string representation
type AccountWithRestoreAccess struct { // The identifier of an AWS support account authorized to restore a snapshot. // For AWS support, the identifier is amazon-redshift-support. AccountAlias *string `type:"string"` // The identifier of an AWS customer account authorized to restore a snapshot. AccountId *string `type:"string"` // contains filtered or unexported fields }
Describes an AWS customer account authorized to restore a snapshot.
func (s AccountWithRestoreAccess) GoString() string
GoString returns the string representation
func (s *AccountWithRestoreAccess) SetAccountAlias(v string) *AccountWithRestoreAccess
SetAccountAlias sets the AccountAlias field's value.
func (s *AccountWithRestoreAccess) SetAccountId(v string) *AccountWithRestoreAccess
SetAccountId sets the AccountId field's value.
func (s AccountWithRestoreAccess) String() string
String returns the string representation
type AttributeValueTarget struct { // The value of the attribute. AttributeValue *string `type:"string"` // contains filtered or unexported fields }
Describes an attribute value.
func (s AttributeValueTarget) GoString() string
GoString returns the string representation
func (s *AttributeValueTarget) SetAttributeValue(v string) *AttributeValueTarget
SetAttributeValue sets the AttributeValue field's value.
func (s AttributeValueTarget) String() string
String returns the string representation
type AuthorizeClusterSecurityGroupIngressInput struct { // The IP range to be added the Amazon Redshift security group. CIDRIP *string `type:"string"` // The name of the security group to which the ingress rule is added. // // ClusterSecurityGroupName is a required field ClusterSecurityGroupName *string `type:"string" required:"true"` // The EC2 security group to be added the Amazon Redshift security group. EC2SecurityGroupName *string `type:"string"` // The AWS account number of the owner of the security group specified by the // EC2SecurityGroupName parameter. The AWS Access Key ID is not an acceptable // value. // // Example: 111122223333 EC2SecurityGroupOwnerId *string `type:"string"` // contains filtered or unexported fields }
func (s AuthorizeClusterSecurityGroupIngressInput) GoString() string
GoString returns the string representation
func (s *AuthorizeClusterSecurityGroupIngressInput) SetCIDRIP(v string) *AuthorizeClusterSecurityGroupIngressInput
SetCIDRIP sets the CIDRIP field's value.
func (s *AuthorizeClusterSecurityGroupIngressInput) SetClusterSecurityGroupName(v string) *AuthorizeClusterSecurityGroupIngressInput
SetClusterSecurityGroupName sets the ClusterSecurityGroupName field's value.
func (s *AuthorizeClusterSecurityGroupIngressInput) SetEC2SecurityGroupName(v string) *AuthorizeClusterSecurityGroupIngressInput
SetEC2SecurityGroupName sets the EC2SecurityGroupName field's value.
func (s *AuthorizeClusterSecurityGroupIngressInput) SetEC2SecurityGroupOwnerId(v string) *AuthorizeClusterSecurityGroupIngressInput
SetEC2SecurityGroupOwnerId sets the EC2SecurityGroupOwnerId field's value.
func (s AuthorizeClusterSecurityGroupIngressInput) String() string
String returns the string representation
func (s *AuthorizeClusterSecurityGroupIngressInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type AuthorizeClusterSecurityGroupIngressOutput struct { // Describes a security group. ClusterSecurityGroup *ClusterSecurityGroup `type:"structure"` // contains filtered or unexported fields }
func (s AuthorizeClusterSecurityGroupIngressOutput) GoString() string
GoString returns the string representation
func (s *AuthorizeClusterSecurityGroupIngressOutput) SetClusterSecurityGroup(v *ClusterSecurityGroup) *AuthorizeClusterSecurityGroupIngressOutput
SetClusterSecurityGroup sets the ClusterSecurityGroup field's value.
func (s AuthorizeClusterSecurityGroupIngressOutput) String() string
String returns the string representation
type AuthorizeSnapshotAccessInput struct { // The identifier of the AWS customer account authorized to restore the specified // snapshot. // // To share a snapshot with AWS support, specify amazon-redshift-support. // // AccountWithRestoreAccess is a required field AccountWithRestoreAccess *string `type:"string" required:"true"` // The identifier of the cluster the snapshot was created from. This parameter // is required if your IAM user has a policy containing a snapshot resource // element that specifies anything other than * for the cluster name. SnapshotClusterIdentifier *string `type:"string"` // The identifier of the snapshot the account is authorized to restore. // // SnapshotIdentifier is a required field SnapshotIdentifier *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s AuthorizeSnapshotAccessInput) GoString() string
GoString returns the string representation
func (s *AuthorizeSnapshotAccessInput) SetAccountWithRestoreAccess(v string) *AuthorizeSnapshotAccessInput
SetAccountWithRestoreAccess sets the AccountWithRestoreAccess field's value.
func (s *AuthorizeSnapshotAccessInput) SetSnapshotClusterIdentifier(v string) *AuthorizeSnapshotAccessInput
SetSnapshotClusterIdentifier sets the SnapshotClusterIdentifier field's value.
func (s *AuthorizeSnapshotAccessInput) SetSnapshotIdentifier(v string) *AuthorizeSnapshotAccessInput
SetSnapshotIdentifier sets the SnapshotIdentifier field's value.
func (s AuthorizeSnapshotAccessInput) String() string
String returns the string representation
func (s *AuthorizeSnapshotAccessInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type AuthorizeSnapshotAccessOutput struct { // Describes a snapshot. Snapshot *Snapshot `type:"structure"` // contains filtered or unexported fields }
func (s AuthorizeSnapshotAccessOutput) GoString() string
GoString returns the string representation
func (s *AuthorizeSnapshotAccessOutput) SetSnapshot(v *Snapshot) *AuthorizeSnapshotAccessOutput
SetSnapshot sets the Snapshot field's value.
func (s AuthorizeSnapshotAccessOutput) String() string
String returns the string representation
type AvailabilityZone struct { // The name of the availability zone. Name *string `type:"string"` SupportedPlatforms []*SupportedPlatform `locationNameList:"SupportedPlatform" type:"list"` // contains filtered or unexported fields }
Describes an availability zone.
func (s AvailabilityZone) GoString() string
GoString returns the string representation
func (s *AvailabilityZone) SetName(v string) *AvailabilityZone
SetName sets the Name field's value.
func (s *AvailabilityZone) SetSupportedPlatforms(v []*SupportedPlatform) *AvailabilityZone
SetSupportedPlatforms sets the SupportedPlatforms field's value.
func (s AvailabilityZone) String() string
String returns the string representation
type BatchDeleteClusterSnapshotsInput struct { // A list of identifiers for the snapshots that you want to delete. // // Identifiers is a required field Identifiers []*DeleteClusterSnapshotMessage `locationNameList:"DeleteClusterSnapshotMessage" type:"list" required:"true"` // contains filtered or unexported fields }
func (s BatchDeleteClusterSnapshotsInput) GoString() string
GoString returns the string representation
func (s *BatchDeleteClusterSnapshotsInput) SetIdentifiers(v []*DeleteClusterSnapshotMessage) *BatchDeleteClusterSnapshotsInput
SetIdentifiers sets the Identifiers field's value.
func (s BatchDeleteClusterSnapshotsInput) String() string
String returns the string representation
func (s *BatchDeleteClusterSnapshotsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type BatchDeleteClusterSnapshotsOutput struct { // A list of any errors returned. Errors []*SnapshotErrorMessage `locationNameList:"SnapshotErrorMessage" type:"list"` // A list of the snapshot identifiers that were deleted. Resources []*string `locationNameList:"String" type:"list"` // contains filtered or unexported fields }
func (s BatchDeleteClusterSnapshotsOutput) GoString() string
GoString returns the string representation
func (s *BatchDeleteClusterSnapshotsOutput) SetErrors(v []*SnapshotErrorMessage) *BatchDeleteClusterSnapshotsOutput
SetErrors sets the Errors field's value.
func (s *BatchDeleteClusterSnapshotsOutput) SetResources(v []*string) *BatchDeleteClusterSnapshotsOutput
SetResources sets the Resources field's value.
func (s BatchDeleteClusterSnapshotsOutput) String() string
String returns the string representation
type BatchModifyClusterSnapshotsInput struct { // A boolean value indicating whether to override an exception if the retention // period has passed. Force *bool `type:"boolean"` // The number of days that a manual snapshot is retained. If you specify the // value -1, the manual snapshot is retained indefinitely. // // The number must be either -1 or an integer between 1 and 3,653. // // If you decrease the manual snapshot retention period from its current value, // existing manual snapshots that fall outside of the new retention period will // return an error. If you want to suppress the errors and delete the snapshots, // use the force option. ManualSnapshotRetentionPeriod *int64 `type:"integer"` // A list of snapshot identifiers you want to modify. // // SnapshotIdentifierList is a required field SnapshotIdentifierList []*string `locationNameList:"String" type:"list" required:"true"` // contains filtered or unexported fields }
func (s BatchModifyClusterSnapshotsInput) GoString() string
GoString returns the string representation
func (s *BatchModifyClusterSnapshotsInput) SetForce(v bool) *BatchModifyClusterSnapshotsInput
SetForce sets the Force field's value.
func (s *BatchModifyClusterSnapshotsInput) SetManualSnapshotRetentionPeriod(v int64) *BatchModifyClusterSnapshotsInput
SetManualSnapshotRetentionPeriod sets the ManualSnapshotRetentionPeriod field's value.
func (s *BatchModifyClusterSnapshotsInput) SetSnapshotIdentifierList(v []*string) *BatchModifyClusterSnapshotsInput
SetSnapshotIdentifierList sets the SnapshotIdentifierList field's value.
func (s BatchModifyClusterSnapshotsInput) String() string
String returns the string representation
func (s *BatchModifyClusterSnapshotsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type BatchModifyClusterSnapshotsOutput struct { // A list of any errors returned. Errors []*SnapshotErrorMessage `locationNameList:"SnapshotErrorMessage" type:"list"` // A list of the snapshots that were modified. Resources []*string `locationNameList:"String" type:"list"` // contains filtered or unexported fields }
func (s BatchModifyClusterSnapshotsOutput) GoString() string
GoString returns the string representation
func (s *BatchModifyClusterSnapshotsOutput) SetErrors(v []*SnapshotErrorMessage) *BatchModifyClusterSnapshotsOutput
SetErrors sets the Errors field's value.
func (s *BatchModifyClusterSnapshotsOutput) SetResources(v []*string) *BatchModifyClusterSnapshotsOutput
SetResources sets the Resources field's value.
func (s BatchModifyClusterSnapshotsOutput) String() string
String returns the string representation
type CancelResizeInput struct { // The unique identifier for the cluster that you want to cancel a resize operation // for. // // ClusterIdentifier is a required field ClusterIdentifier *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s CancelResizeInput) GoString() string
GoString returns the string representation
func (s *CancelResizeInput) SetClusterIdentifier(v string) *CancelResizeInput
SetClusterIdentifier sets the ClusterIdentifier field's value.
func (s CancelResizeInput) String() string
String returns the string representation
func (s *CancelResizeInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CancelResizeOutput struct { // The average rate of the resize operation over the last few minutes, measured // in megabytes per second. After the resize operation completes, this value // shows the average rate of the entire resize operation. AvgResizeRateInMegaBytesPerSecond *float64 `type:"double"` // The percent of data transferred from source cluster to target cluster. DataTransferProgressPercent *float64 `type:"double"` // The amount of seconds that have elapsed since the resize operation began. // After the resize operation completes, this value shows the total actual time, // in seconds, for the resize operation. ElapsedTimeInSeconds *int64 `type:"long"` // The estimated time remaining, in seconds, until the resize operation is complete. // This value is calculated based on the average resize rate and the estimated // amount of data remaining to be processed. Once the resize operation is complete, // this value will be 0. EstimatedTimeToCompletionInSeconds *int64 `type:"long"` // The names of tables that have been completely imported . // // Valid Values: List of table names. ImportTablesCompleted []*string `type:"list"` // The names of tables that are being currently imported. // // Valid Values: List of table names. ImportTablesInProgress []*string `type:"list"` // The names of tables that have not been yet imported. // // Valid Values: List of table names ImportTablesNotStarted []*string `type:"list"` // An optional string to provide additional details about the resize action. Message *string `type:"string"` // While the resize operation is in progress, this value shows the current amount // of data, in megabytes, that has been processed so far. When the resize operation // is complete, this value shows the total amount of data, in megabytes, on // the cluster, which may be more or less than TotalResizeDataInMegaBytes (the // estimated total amount of data before resize). ProgressInMegaBytes *int64 `type:"long"` // An enum with possible values of ClassicResize and ElasticResize. These values // describe the type of resize operation being performed. ResizeType *string `type:"string"` // The status of the resize operation. // // Valid Values: NONE | IN_PROGRESS | FAILED | SUCCEEDED | CANCELLING Status *string `type:"string"` // The cluster type after the resize operation is complete. // // Valid Values: multi-node | single-node TargetClusterType *string `type:"string"` // The type of encryption for the cluster after the resize is complete. // // Possible values are KMS and None. TargetEncryptionType *string `type:"string"` // The node type that the cluster will have after the resize operation is complete. TargetNodeType *string `type:"string"` // The number of nodes that the cluster will have after the resize operation // is complete. TargetNumberOfNodes *int64 `type:"integer"` // The estimated total amount of data, in megabytes, on the cluster before the // resize operation began. TotalResizeDataInMegaBytes *int64 `type:"long"` // contains filtered or unexported fields }
Describes the result of a cluster resize operation.
func (s CancelResizeOutput) GoString() string
GoString returns the string representation
func (s *CancelResizeOutput) SetAvgResizeRateInMegaBytesPerSecond(v float64) *CancelResizeOutput
SetAvgResizeRateInMegaBytesPerSecond sets the AvgResizeRateInMegaBytesPerSecond field's value.
func (s *CancelResizeOutput) SetDataTransferProgressPercent(v float64) *CancelResizeOutput
SetDataTransferProgressPercent sets the DataTransferProgressPercent field's value.
func (s *CancelResizeOutput) SetElapsedTimeInSeconds(v int64) *CancelResizeOutput
SetElapsedTimeInSeconds sets the ElapsedTimeInSeconds field's value.
func (s *CancelResizeOutput) SetEstimatedTimeToCompletionInSeconds(v int64) *CancelResizeOutput
SetEstimatedTimeToCompletionInSeconds sets the EstimatedTimeToCompletionInSeconds field's value.
func (s *CancelResizeOutput) SetImportTablesCompleted(v []*string) *CancelResizeOutput
SetImportTablesCompleted sets the ImportTablesCompleted field's value.
func (s *CancelResizeOutput) SetImportTablesInProgress(v []*string) *CancelResizeOutput
SetImportTablesInProgress sets the ImportTablesInProgress field's value.
func (s *CancelResizeOutput) SetImportTablesNotStarted(v []*string) *CancelResizeOutput
SetImportTablesNotStarted sets the ImportTablesNotStarted field's value.
func (s *CancelResizeOutput) SetMessage(v string) *CancelResizeOutput
SetMessage sets the Message field's value.
func (s *CancelResizeOutput) SetProgressInMegaBytes(v int64) *CancelResizeOutput
SetProgressInMegaBytes sets the ProgressInMegaBytes field's value.
func (s *CancelResizeOutput) SetResizeType(v string) *CancelResizeOutput
SetResizeType sets the ResizeType field's value.
func (s *CancelResizeOutput) SetStatus(v string) *CancelResizeOutput
SetStatus sets the Status field's value.
func (s *CancelResizeOutput) SetTargetClusterType(v string) *CancelResizeOutput
SetTargetClusterType sets the TargetClusterType field's value.
func (s *CancelResizeOutput) SetTargetEncryptionType(v string) *CancelResizeOutput
SetTargetEncryptionType sets the TargetEncryptionType field's value.
func (s *CancelResizeOutput) SetTargetNodeType(v string) *CancelResizeOutput
SetTargetNodeType sets the TargetNodeType field's value.
func (s *CancelResizeOutput) SetTargetNumberOfNodes(v int64) *CancelResizeOutput
SetTargetNumberOfNodes sets the TargetNumberOfNodes field's value.
func (s *CancelResizeOutput) SetTotalResizeDataInMegaBytes(v int64) *CancelResizeOutput
SetTotalResizeDataInMegaBytes sets the TotalResizeDataInMegaBytes field's value.
func (s CancelResizeOutput) String() string
String returns the string representation
type Cluster struct { // A boolean value that, if true, indicates that major version upgrades will // be applied automatically to the cluster during the maintenance window. AllowVersionUpgrade *bool `type:"boolean"` // The number of days that automatic cluster snapshots are retained. AutomatedSnapshotRetentionPeriod *int64 `type:"integer"` // The name of the Availability Zone in which the cluster is located. AvailabilityZone *string `type:"string"` // Describes the status of the Availability Zone relocation operation. AvailabilityZoneRelocationStatus *string `type:"string"` // The availability status of the cluster for queries. Possible values are the // following: // // * Available - The cluster is available for queries. // // * Unavailable - The cluster is not available for queries. // // * Maintenance - The cluster is intermittently available for queries due // to maintenance activities. // // * Modifying - The cluster is intermittently available for queries due // to changes that modify the cluster. // // * Failed - The cluster failed and is not available for queries. ClusterAvailabilityStatus *string `type:"string"` // The date and time that the cluster was created. ClusterCreateTime *time.Time `type:"timestamp"` // The unique identifier of the cluster. ClusterIdentifier *string `type:"string"` // The namespace Amazon Resource Name (ARN) of the cluster. ClusterNamespaceArn *string `type:"string"` // The nodes in the cluster. ClusterNodes []*ClusterNode `type:"list"` // The list of cluster parameter groups that are associated with this cluster. // Each parameter group in the list is returned with its status. ClusterParameterGroups []*ClusterParameterGroupStatus `locationNameList:"ClusterParameterGroup" type:"list"` // The public key for the cluster. ClusterPublicKey *string `type:"string"` // The specific revision number of the database in the cluster. ClusterRevisionNumber *string `type:"string"` // A list of cluster security group that are associated with the cluster. Each // security group is represented by an element that contains ClusterSecurityGroup.Name // and ClusterSecurityGroup.Status subelements. // // Cluster security groups are used when the cluster is not created in an Amazon // Virtual Private Cloud (VPC). Clusters that are created in a VPC use VPC security // groups, which are listed by the VpcSecurityGroups parameter. ClusterSecurityGroups []*ClusterSecurityGroupMembership `locationNameList:"ClusterSecurityGroup" type:"list"` // A value that returns the destination region and retention period that are // configured for cross-region snapshot copy. ClusterSnapshotCopyStatus *ClusterSnapshotCopyStatus `type:"structure"` // The current state of the cluster. Possible values are the following: // // * available // // * available, prep-for-resize // // * available, resize-cleanup // // * cancelling-resize // // * creating // // * deleting // // * final-snapshot // // * hardware-failure // // * incompatible-hsm // // * incompatible-network // // * incompatible-parameters // // * incompatible-restore // // * modifying // // * paused // // * rebooting // // * renaming // // * resizing // // * rotating-keys // // * storage-full // // * updating-hsm ClusterStatus *string `type:"string"` // The name of the subnet group that is associated with the cluster. This parameter // is valid only when the cluster is in a VPC. ClusterSubnetGroupName *string `type:"string"` // The version ID of the Amazon Redshift engine that is running on the cluster. ClusterVersion *string `type:"string"` // The name of the initial database that was created when the cluster was created. // This same name is returned for the life of the cluster. If an initial database // was not specified, a database named devdev was created by default. DBName *string `type:"string"` // Describes the status of a cluster while it is in the process of resizing // with an incremental resize. DataTransferProgress *DataTransferProgress `type:"structure"` // Describes a group of DeferredMaintenanceWindow objects. DeferredMaintenanceWindows []*DeferredMaintenanceWindow `locationNameList:"DeferredMaintenanceWindow" type:"list"` // The status of the elastic IP (EIP) address. ElasticIpStatus *ElasticIpStatus `type:"structure"` // The number of nodes that you can resize the cluster to with the elastic resize // method. ElasticResizeNumberOfNodeOptions *string `type:"string"` // A boolean value that, if true, indicates that data in the cluster is encrypted // at rest. Encrypted *bool `type:"boolean"` // The connection endpoint. Endpoint *Endpoint `type:"structure"` // An option that specifies whether to create the cluster with enhanced VPC // routing enabled. To create a cluster that uses enhanced VPC routing, the // cluster must be in a VPC. For more information, see Enhanced VPC Routing // (https://docs.aws.amazon.com/redshift/latest/mgmt/enhanced-vpc-routing.html) // in the Amazon Redshift Cluster Management Guide. // // If this option is true, enhanced VPC routing is enabled. // // Default: false EnhancedVpcRouting *bool `type:"boolean"` // The date and time when the next snapshot is expected to be taken for clusters // with a valid snapshot schedule and backups enabled. ExpectedNextSnapshotScheduleTime *time.Time `type:"timestamp"` // The status of next expected snapshot for clusters having a valid snapshot // schedule and backups enabled. Possible values are the following: // // * OnTrack - The next snapshot is expected to be taken on time. // // * Pending - The next snapshot is pending to be taken. ExpectedNextSnapshotScheduleTimeStatus *string `type:"string"` // A value that reports whether the Amazon Redshift cluster has finished applying // any hardware security module (HSM) settings changes specified in a modify // cluster command. // // Values: active, applying HsmStatus *HsmStatus `type:"structure"` // A list of AWS Identity and Access Management (IAM) roles that can be used // by the cluster to access other AWS services. IamRoles []*ClusterIamRole `locationNameList:"ClusterIamRole" type:"list"` // The AWS Key Management Service (AWS KMS) key ID of the encryption key used // to encrypt data in the cluster. KmsKeyId *string `type:"string"` // The name of the maintenance track for the cluster. MaintenanceTrackName *string `type:"string"` // The default number of days to retain a manual snapshot. If the value is -1, // the snapshot is retained indefinitely. This setting doesn't change the retention // period of existing snapshots. // // The value must be either -1 or an integer between 1 and 3,653. ManualSnapshotRetentionPeriod *int64 `type:"integer"` // The master user name for the cluster. This name is used to connect to the // database that is specified in the DBName parameter. MasterUsername *string `type:"string"` // The status of a modify operation, if any, initiated for the cluster. ModifyStatus *string `type:"string"` // The date and time in UTC when system maintenance can begin. NextMaintenanceWindowStartTime *time.Time `type:"timestamp"` // The node type for the nodes in the cluster. NodeType *string `type:"string"` // The number of compute nodes in the cluster. NumberOfNodes *int64 `type:"integer"` // Cluster operations that are waiting to be started. PendingActions []*string `type:"list"` // A value that, if present, indicates that changes to the cluster are pending. // Specific pending changes are identified by subelements. PendingModifiedValues *PendingModifiedValues `type:"structure"` // The weekly time range, in Universal Coordinated Time (UTC), during which // system maintenance can occur. PreferredMaintenanceWindow *string `type:"string"` // A boolean value that, if true, indicates that the cluster can be accessed // from a public network. PubliclyAccessible *bool `type:"boolean"` // Returns the following: // // * AllowCancelResize: a boolean value indicating if the resize operation // can be cancelled. // // * ResizeType: Returns ClassicResize ResizeInfo *ResizeInfo `type:"structure"` // A value that describes the status of a cluster restore action. This parameter // returns null if the cluster was not created by restoring a snapshot. RestoreStatus *RestoreStatus `type:"structure"` // A unique identifier for the cluster snapshot schedule. SnapshotScheduleIdentifier *string `type:"string"` // The current state of the cluster snapshot schedule. SnapshotScheduleState *string `type:"string" enum:"ScheduleState"` // The list of tags for the cluster. Tags []*Tag `locationNameList:"Tag" type:"list"` // The identifier of the VPC the cluster is in, if the cluster is in a VPC. VpcId *string `type:"string"` // A list of Amazon Virtual Private Cloud (Amazon VPC) security groups that // are associated with the cluster. This parameter is returned only if the cluster // is in a VPC. VpcSecurityGroups []*VpcSecurityGroupMembership `locationNameList:"VpcSecurityGroup" type:"list"` // contains filtered or unexported fields }
Describes a cluster.
func (s Cluster) GoString() string
GoString returns the string representation
func (s *Cluster) SetAllowVersionUpgrade(v bool) *Cluster
SetAllowVersionUpgrade sets the AllowVersionUpgrade field's value.
func (s *Cluster) SetAutomatedSnapshotRetentionPeriod(v int64) *Cluster
SetAutomatedSnapshotRetentionPeriod sets the AutomatedSnapshotRetentionPeriod field's value.
func (s *Cluster) SetAvailabilityZone(v string) *Cluster
SetAvailabilityZone sets the AvailabilityZone field's value.
func (s *Cluster) SetAvailabilityZoneRelocationStatus(v string) *Cluster
SetAvailabilityZoneRelocationStatus sets the AvailabilityZoneRelocationStatus field's value.
func (s *Cluster) SetClusterAvailabilityStatus(v string) *Cluster
SetClusterAvailabilityStatus sets the ClusterAvailabilityStatus field's value.
func (s *Cluster) SetClusterCreateTime(v time.Time) *Cluster
SetClusterCreateTime sets the ClusterCreateTime field's value.
func (s *Cluster) SetClusterIdentifier(v string) *Cluster
SetClusterIdentifier sets the ClusterIdentifier field's value.
func (s *Cluster) SetClusterNamespaceArn(v string) *Cluster
SetClusterNamespaceArn sets the ClusterNamespaceArn field's value.
func (s *Cluster) SetClusterNodes(v []*ClusterNode) *Cluster
SetClusterNodes sets the ClusterNodes field's value.
func (s *Cluster) SetClusterParameterGroups(v []*ClusterParameterGroupStatus) *Cluster
SetClusterParameterGroups sets the ClusterParameterGroups field's value.
func (s *Cluster) SetClusterPublicKey(v string) *Cluster
SetClusterPublicKey sets the ClusterPublicKey field's value.
func (s *Cluster) SetClusterRevisionNumber(v string) *Cluster
SetClusterRevisionNumber sets the ClusterRevisionNumber field's value.
func (s *Cluster) SetClusterSecurityGroups(v []*ClusterSecurityGroupMembership) *Cluster
SetClusterSecurityGroups sets the ClusterSecurityGroups field's value.
func (s *Cluster) SetClusterSnapshotCopyStatus(v *ClusterSnapshotCopyStatus) *Cluster
SetClusterSnapshotCopyStatus sets the ClusterSnapshotCopyStatus field's value.
func (s *Cluster) SetClusterStatus(v string) *Cluster
SetClusterStatus sets the ClusterStatus field's value.
func (s *Cluster) SetClusterSubnetGroupName(v string) *Cluster
SetClusterSubnetGroupName sets the ClusterSubnetGroupName field's value.
func (s *Cluster) SetClusterVersion(v string) *Cluster
SetClusterVersion sets the ClusterVersion field's value.
func (s *Cluster) SetDBName(v string) *Cluster
SetDBName sets the DBName field's value.
func (s *Cluster) SetDataTransferProgress(v *DataTransferProgress) *Cluster
SetDataTransferProgress sets the DataTransferProgress field's value.
func (s *Cluster) SetDeferredMaintenanceWindows(v []*DeferredMaintenanceWindow) *Cluster
SetDeferredMaintenanceWindows sets the DeferredMaintenanceWindows field's value.
func (s *Cluster) SetElasticIpStatus(v *ElasticIpStatus) *Cluster
SetElasticIpStatus sets the ElasticIpStatus field's value.
func (s *Cluster) SetElasticResizeNumberOfNodeOptions(v string) *Cluster
SetElasticResizeNumberOfNodeOptions sets the ElasticResizeNumberOfNodeOptions field's value.
func (s *Cluster) SetEncrypted(v bool) *Cluster
SetEncrypted sets the Encrypted field's value.
func (s *Cluster) SetEndpoint(v *Endpoint) *Cluster
SetEndpoint sets the Endpoint field's value.
func (s *Cluster) SetEnhancedVpcRouting(v bool) *Cluster
SetEnhancedVpcRouting sets the EnhancedVpcRouting field's value.
func (s *Cluster) SetExpectedNextSnapshotScheduleTime(v time.Time) *Cluster
SetExpectedNextSnapshotScheduleTime sets the ExpectedNextSnapshotScheduleTime field's value.
func (s *Cluster) SetExpectedNextSnapshotScheduleTimeStatus(v string) *Cluster
SetExpectedNextSnapshotScheduleTimeStatus sets the ExpectedNextSnapshotScheduleTimeStatus field's value.
func (s *Cluster) SetHsmStatus(v *HsmStatus) *Cluster
SetHsmStatus sets the HsmStatus field's value.
func (s *Cluster) SetIamRoles(v []*ClusterIamRole) *Cluster
SetIamRoles sets the IamRoles field's value.
func (s *Cluster) SetKmsKeyId(v string) *Cluster
SetKmsKeyId sets the KmsKeyId field's value.
func (s *Cluster) SetMaintenanceTrackName(v string) *Cluster
SetMaintenanceTrackName sets the MaintenanceTrackName field's value.
func (s *Cluster) SetManualSnapshotRetentionPeriod(v int64) *Cluster
SetManualSnapshotRetentionPeriod sets the ManualSnapshotRetentionPeriod field's value.
func (s *Cluster) SetMasterUsername(v string) *Cluster
SetMasterUsername sets the MasterUsername field's value.
func (s *Cluster) SetModifyStatus(v string) *Cluster
SetModifyStatus sets the ModifyStatus field's value.
func (s *Cluster) SetNextMaintenanceWindowStartTime(v time.Time) *Cluster
SetNextMaintenanceWindowStartTime sets the NextMaintenanceWindowStartTime field's value.
func (s *Cluster) SetNodeType(v string) *Cluster
SetNodeType sets the NodeType field's value.
func (s *Cluster) SetNumberOfNodes(v int64) *Cluster
SetNumberOfNodes sets the NumberOfNodes field's value.
func (s *Cluster) SetPendingActions(v []*string) *Cluster
SetPendingActions sets the PendingActions field's value.
func (s *Cluster) SetPendingModifiedValues(v *PendingModifiedValues) *Cluster
SetPendingModifiedValues sets the PendingModifiedValues field's value.
func (s *Cluster) SetPreferredMaintenanceWindow(v string) *Cluster
SetPreferredMaintenanceWindow sets the PreferredMaintenanceWindow field's value.
func (s *Cluster) SetPubliclyAccessible(v bool) *Cluster
SetPubliclyAccessible sets the PubliclyAccessible field's value.
func (s *Cluster) SetResizeInfo(v *ResizeInfo) *Cluster
SetResizeInfo sets the ResizeInfo field's value.
func (s *Cluster) SetRestoreStatus(v *RestoreStatus) *Cluster
SetRestoreStatus sets the RestoreStatus field's value.
func (s *Cluster) SetSnapshotScheduleIdentifier(v string) *Cluster
SetSnapshotScheduleIdentifier sets the SnapshotScheduleIdentifier field's value.
func (s *Cluster) SetSnapshotScheduleState(v string) *Cluster
SetSnapshotScheduleState sets the SnapshotScheduleState field's value.
func (s *Cluster) SetTags(v []*Tag) *Cluster
SetTags sets the Tags field's value.
func (s *Cluster) SetVpcId(v string) *Cluster
SetVpcId sets the VpcId field's value.
func (s *Cluster) SetVpcSecurityGroups(v []*VpcSecurityGroupMembership) *Cluster
SetVpcSecurityGroups sets the VpcSecurityGroups field's value.
func (s Cluster) String() string
String returns the string representation
type ClusterAssociatedToSchedule struct {
ClusterIdentifier *string `type:"string"`
ScheduleAssociationState *string `type:"string" enum:"ScheduleState"`
// contains filtered or unexported fields
}
func (s ClusterAssociatedToSchedule) GoString() string
GoString returns the string representation
func (s *ClusterAssociatedToSchedule) SetClusterIdentifier(v string) *ClusterAssociatedToSchedule
SetClusterIdentifier sets the ClusterIdentifier field's value.
func (s *ClusterAssociatedToSchedule) SetScheduleAssociationState(v string) *ClusterAssociatedToSchedule
SetScheduleAssociationState sets the ScheduleAssociationState field's value.
func (s ClusterAssociatedToSchedule) String() string
String returns the string representation
type ClusterDbRevision struct { // The unique identifier of the cluster. ClusterIdentifier *string `type:"string"` // A string representing the current cluster version. CurrentDatabaseRevision *string `type:"string"` // The date on which the database revision was released. DatabaseRevisionReleaseDate *time.Time `type:"timestamp"` // A list of RevisionTarget objects, where each object describes the database // revision that a cluster can be updated to. RevisionTargets []*RevisionTarget `locationNameList:"RevisionTarget" type:"list"` // contains filtered or unexported fields }
Describes a ClusterDbRevision.
func (s ClusterDbRevision) GoString() string
GoString returns the string representation
func (s *ClusterDbRevision) SetClusterIdentifier(v string) *ClusterDbRevision
SetClusterIdentifier sets the ClusterIdentifier field's value.
func (s *ClusterDbRevision) SetCurrentDatabaseRevision(v string) *ClusterDbRevision
SetCurrentDatabaseRevision sets the CurrentDatabaseRevision field's value.
func (s *ClusterDbRevision) SetDatabaseRevisionReleaseDate(v time.Time) *ClusterDbRevision
SetDatabaseRevisionReleaseDate sets the DatabaseRevisionReleaseDate field's value.
func (s *ClusterDbRevision) SetRevisionTargets(v []*RevisionTarget) *ClusterDbRevision
SetRevisionTargets sets the RevisionTargets field's value.
func (s ClusterDbRevision) String() string
String returns the string representation
type ClusterIamRole struct { // A value that describes the status of the IAM role's association with an Amazon // Redshift cluster. // // The following are possible statuses and descriptions. // // * in-sync: The role is available for use by the cluster. // // * adding: The role is in the process of being associated with the cluster. // // * removing: The role is in the process of being disassociated with the // cluster. ApplyStatus *string `type:"string"` // The Amazon Resource Name (ARN) of the IAM role, for example, arn:aws:iam::123456789012:role/RedshiftCopyUnload. IamRoleArn *string `type:"string"` // contains filtered or unexported fields }
An AWS Identity and Access Management (IAM) role that can be used by the associated Amazon Redshift cluster to access other AWS services.
func (s ClusterIamRole) GoString() string
GoString returns the string representation
func (s *ClusterIamRole) SetApplyStatus(v string) *ClusterIamRole
SetApplyStatus sets the ApplyStatus field's value.
func (s *ClusterIamRole) SetIamRoleArn(v string) *ClusterIamRole
SetIamRoleArn sets the IamRoleArn field's value.
func (s ClusterIamRole) String() string
String returns the string representation
type ClusterNode struct { // Whether the node is a leader node or a compute node. NodeRole *string `type:"string"` // The private IP address of a node within a cluster. PrivateIPAddress *string `type:"string"` // The public IP address of a node within a cluster. PublicIPAddress *string `type:"string"` // contains filtered or unexported fields }
The identifier of a node in a cluster.
func (s ClusterNode) GoString() string
GoString returns the string representation
func (s *ClusterNode) SetNodeRole(v string) *ClusterNode
SetNodeRole sets the NodeRole field's value.
func (s *ClusterNode) SetPrivateIPAddress(v string) *ClusterNode
SetPrivateIPAddress sets the PrivateIPAddress field's value.
func (s *ClusterNode) SetPublicIPAddress(v string) *ClusterNode
SetPublicIPAddress sets the PublicIPAddress field's value.
func (s ClusterNode) String() string
String returns the string representation
type ClusterParameterGroup struct { // The description of the parameter group. Description *string `type:"string"` // The name of the cluster parameter group family that this cluster parameter // group is compatible with. ParameterGroupFamily *string `type:"string"` // The name of the cluster parameter group. ParameterGroupName *string `type:"string"` // The list of tags for the cluster parameter group. Tags []*Tag `locationNameList:"Tag" type:"list"` // contains filtered or unexported fields }
Describes a parameter group.
func (s ClusterParameterGroup) GoString() string
GoString returns the string representation
func (s *ClusterParameterGroup) SetDescription(v string) *ClusterParameterGroup
SetDescription sets the Description field's value.
func (s *ClusterParameterGroup) SetParameterGroupFamily(v string) *ClusterParameterGroup
SetParameterGroupFamily sets the ParameterGroupFamily field's value.
func (s *ClusterParameterGroup) SetParameterGroupName(v string) *ClusterParameterGroup
SetParameterGroupName sets the ParameterGroupName field's value.
func (s *ClusterParameterGroup) SetTags(v []*Tag) *ClusterParameterGroup
SetTags sets the Tags field's value.
func (s ClusterParameterGroup) String() string
String returns the string representation
type ClusterParameterGroupNameMessage struct { // The name of the cluster parameter group. ParameterGroupName *string `type:"string"` // The status of the parameter group. For example, if you made a change to a // parameter group name-value pair, then the change could be pending a reboot // of an associated cluster. ParameterGroupStatus *string `type:"string"` // contains filtered or unexported fields }
func (s ClusterParameterGroupNameMessage) GoString() string
GoString returns the string representation
func (s *ClusterParameterGroupNameMessage) SetParameterGroupName(v string) *ClusterParameterGroupNameMessage
SetParameterGroupName sets the ParameterGroupName field's value.
func (s *ClusterParameterGroupNameMessage) SetParameterGroupStatus(v string) *ClusterParameterGroupNameMessage
SetParameterGroupStatus sets the ParameterGroupStatus field's value.
func (s ClusterParameterGroupNameMessage) String() string
String returns the string representation
type ClusterParameterGroupStatus struct { // The list of parameter statuses. // // For more information about parameters and parameter groups, go to Amazon // Redshift Parameter Groups (https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html) // in the Amazon Redshift Cluster Management Guide. ClusterParameterStatusList []*ClusterParameterStatus `type:"list"` // The status of parameter updates. ParameterApplyStatus *string `type:"string"` // The name of the cluster parameter group. ParameterGroupName *string `type:"string"` // contains filtered or unexported fields }
Describes the status of a parameter group.
func (s ClusterParameterGroupStatus) GoString() string
GoString returns the string representation
func (s *ClusterParameterGroupStatus) SetClusterParameterStatusList(v []*ClusterParameterStatus) *ClusterParameterGroupStatus
SetClusterParameterStatusList sets the ClusterParameterStatusList field's value.
func (s *ClusterParameterGroupStatus) SetParameterApplyStatus(v string) *ClusterParameterGroupStatus
SetParameterApplyStatus sets the ParameterApplyStatus field's value.
func (s *ClusterParameterGroupStatus) SetParameterGroupName(v string) *ClusterParameterGroupStatus
SetParameterGroupName sets the ParameterGroupName field's value.
func (s ClusterParameterGroupStatus) String() string
String returns the string representation
type ClusterParameterStatus struct { // The error that prevented the parameter from being applied to the database. ParameterApplyErrorDescription *string `type:"string"` // The status of the parameter that indicates whether the parameter is in sync // with the database, waiting for a cluster reboot, or encountered an error // when being applied. // // The following are possible statuses and descriptions. // // * in-sync: The parameter value is in sync with the database. // // * pending-reboot: The parameter value will be applied after the cluster // reboots. // // * applying: The parameter value is being applied to the database. // // * invalid-parameter: Cannot apply the parameter value because it has an // invalid value or syntax. // // * apply-deferred: The parameter contains static property changes. The // changes are deferred until the cluster reboots. // // * apply-error: Cannot connect to the cluster. The parameter change will // be applied after the cluster reboots. // // * unknown-error: Cannot apply the parameter change right now. The change // will be applied after the cluster reboots. ParameterApplyStatus *string `type:"string"` // The name of the parameter. ParameterName *string `type:"string"` // contains filtered or unexported fields }
Describes the status of a parameter group.
func (s ClusterParameterStatus) GoString() string
GoString returns the string representation
func (s *ClusterParameterStatus) SetParameterApplyErrorDescription(v string) *ClusterParameterStatus
SetParameterApplyErrorDescription sets the ParameterApplyErrorDescription field's value.
func (s *ClusterParameterStatus) SetParameterApplyStatus(v string) *ClusterParameterStatus
SetParameterApplyStatus sets the ParameterApplyStatus field's value.
func (s *ClusterParameterStatus) SetParameterName(v string) *ClusterParameterStatus
SetParameterName sets the ParameterName field's value.
func (s ClusterParameterStatus) String() string
String returns the string representation
type ClusterSecurityGroup struct { // The name of the cluster security group to which the operation was applied. ClusterSecurityGroupName *string `type:"string"` // A description of the security group. Description *string `type:"string"` // A list of EC2 security groups that are permitted to access clusters associated // with this cluster security group. EC2SecurityGroups []*EC2SecurityGroup `locationNameList:"EC2SecurityGroup" type:"list"` // A list of IP ranges (CIDR blocks) that are permitted to access clusters associated // with this cluster security group. IPRanges []*IPRange `locationNameList:"IPRange" type:"list"` // The list of tags for the cluster security group. Tags []*Tag `locationNameList:"Tag" type:"list"` // contains filtered or unexported fields }
Describes a security group.
func (s ClusterSecurityGroup) GoString() string
GoString returns the string representation
func (s *ClusterSecurityGroup) SetClusterSecurityGroupName(v string) *ClusterSecurityGroup
SetClusterSecurityGroupName sets the ClusterSecurityGroupName field's value.
func (s *ClusterSecurityGroup) SetDescription(v string) *ClusterSecurityGroup
SetDescription sets the Description field's value.
func (s *ClusterSecurityGroup) SetEC2SecurityGroups(v []*EC2SecurityGroup) *ClusterSecurityGroup
SetEC2SecurityGroups sets the EC2SecurityGroups field's value.
func (s *ClusterSecurityGroup) SetIPRanges(v []*IPRange) *ClusterSecurityGroup
SetIPRanges sets the IPRanges field's value.
func (s *ClusterSecurityGroup) SetTags(v []*Tag) *ClusterSecurityGroup
SetTags sets the Tags field's value.
func (s ClusterSecurityGroup) String() string
String returns the string representation
type ClusterSecurityGroupMembership struct { // The name of the cluster security group. ClusterSecurityGroupName *string `type:"string"` // The status of the cluster security group. Status *string `type:"string"` // contains filtered or unexported fields }
Describes a cluster security group.
func (s ClusterSecurityGroupMembership) GoString() string
GoString returns the string representation
func (s *ClusterSecurityGroupMembership) SetClusterSecurityGroupName(v string) *ClusterSecurityGroupMembership
SetClusterSecurityGroupName sets the ClusterSecurityGroupName field's value.
func (s *ClusterSecurityGroupMembership) SetStatus(v string) *ClusterSecurityGroupMembership
SetStatus sets the Status field's value.
func (s ClusterSecurityGroupMembership) String() string
String returns the string representation
type ClusterSnapshotCopyStatus struct { // The destination region that snapshots are automatically copied to when cross-region // snapshot copy is enabled. DestinationRegion *string `type:"string"` // The number of days that automated snapshots are retained in the destination // region after they are copied from a source region. If the value is -1, the // manual snapshot is retained indefinitely. // // The value must be either -1 or an integer between 1 and 3,653. ManualSnapshotRetentionPeriod *int64 `type:"integer"` // The number of days that automated snapshots are retained in the destination // region after they are copied from a source region. RetentionPeriod *int64 `type:"long"` // The name of the snapshot copy grant. SnapshotCopyGrantName *string `type:"string"` // contains filtered or unexported fields }
Returns the destination region and retention period that are configured for cross-region snapshot copy.
func (s ClusterSnapshotCopyStatus) GoString() string
GoString returns the string representation
func (s *ClusterSnapshotCopyStatus) SetDestinationRegion(v string) *ClusterSnapshotCopyStatus
SetDestinationRegion sets the DestinationRegion field's value.
func (s *ClusterSnapshotCopyStatus) SetManualSnapshotRetentionPeriod(v int64) *ClusterSnapshotCopyStatus
SetManualSnapshotRetentionPeriod sets the ManualSnapshotRetentionPeriod field's value.
func (s *ClusterSnapshotCopyStatus) SetRetentionPeriod(v int64) *ClusterSnapshotCopyStatus
SetRetentionPeriod sets the RetentionPeriod field's value.
func (s *ClusterSnapshotCopyStatus) SetSnapshotCopyGrantName(v string) *ClusterSnapshotCopyStatus
SetSnapshotCopyGrantName sets the SnapshotCopyGrantName field's value.
func (s ClusterSnapshotCopyStatus) String() string
String returns the string representation
type ClusterSubnetGroup struct { // The name of the cluster subnet group. ClusterSubnetGroupName *string `type:"string"` // The description of the cluster subnet group. Description *string `type:"string"` // The status of the cluster subnet group. Possible values are Complete, Incomplete // and Invalid. SubnetGroupStatus *string `type:"string"` // A list of the VPC Subnet elements. Subnets []*Subnet `locationNameList:"Subnet" type:"list"` // The list of tags for the cluster subnet group. Tags []*Tag `locationNameList:"Tag" type:"list"` // The VPC ID of the cluster subnet group. VpcId *string `type:"string"` // contains filtered or unexported fields }
Describes a subnet group.
func (s ClusterSubnetGroup) GoString() string
GoString returns the string representation
func (s *ClusterSubnetGroup) SetClusterSubnetGroupName(v string) *ClusterSubnetGroup
SetClusterSubnetGroupName sets the ClusterSubnetGroupName field's value.
func (s *ClusterSubnetGroup) SetDescription(v string) *ClusterSubnetGroup
SetDescription sets the Description field's value.
func (s *ClusterSubnetGroup) SetSubnetGroupStatus(v string) *ClusterSubnetGroup
SetSubnetGroupStatus sets the SubnetGroupStatus field's value.
func (s *ClusterSubnetGroup) SetSubnets(v []*Subnet) *ClusterSubnetGroup
SetSubnets sets the Subnets field's value.
func (s *ClusterSubnetGroup) SetTags(v []*Tag) *ClusterSubnetGroup
SetTags sets the Tags field's value.
func (s *ClusterSubnetGroup) SetVpcId(v string) *ClusterSubnetGroup
SetVpcId sets the VpcId field's value.
func (s ClusterSubnetGroup) String() string
String returns the string representation
type ClusterVersion struct { // The name of the cluster parameter group family for the cluster. ClusterParameterGroupFamily *string `type:"string"` // The version number used by the cluster. ClusterVersion *string `type:"string"` // The description of the cluster version. Description *string `type:"string"` // contains filtered or unexported fields }
Describes a cluster version, including the parameter group family and description of the version.
func (s ClusterVersion) GoString() string
GoString returns the string representation
func (s *ClusterVersion) SetClusterParameterGroupFamily(v string) *ClusterVersion
SetClusterParameterGroupFamily sets the ClusterParameterGroupFamily field's value.
func (s *ClusterVersion) SetClusterVersion(v string) *ClusterVersion
SetClusterVersion sets the ClusterVersion field's value.
func (s *ClusterVersion) SetDescription(v string) *ClusterVersion
SetDescription sets the Description field's value.
func (s ClusterVersion) String() string
String returns the string representation
type CopyClusterSnapshotInput struct { // The number of days that a manual snapshot is retained. If the value is -1, // the manual snapshot is retained indefinitely. // // The value must be either -1 or an integer between 1 and 3,653. // // The default value is -1. ManualSnapshotRetentionPeriod *int64 `type:"integer"` // The identifier of the cluster the source snapshot was created from. This // parameter is required if your IAM user has a policy containing a snapshot // resource element that specifies anything other than * for the cluster name. // // Constraints: // // * Must be the identifier for a valid cluster. SourceSnapshotClusterIdentifier *string `type:"string"` // The identifier for the source snapshot. // // Constraints: // // * Must be the identifier for a valid automated snapshot whose state is // available. // // SourceSnapshotIdentifier is a required field SourceSnapshotIdentifier *string `type:"string" required:"true"` // The identifier given to the new manual snapshot. // // Constraints: // // * Cannot be null, empty, or blank. // // * Must contain from 1 to 255 alphanumeric characters or hyphens. // // * First character must be a letter. // // * Cannot end with a hyphen or contain two consecutive hyphens. // // * Must be unique for the AWS account that is making the request. // // TargetSnapshotIdentifier is a required field TargetSnapshotIdentifier *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s CopyClusterSnapshotInput) GoString() string
GoString returns the string representation
func (s *CopyClusterSnapshotInput) SetManualSnapshotRetentionPeriod(v int64) *CopyClusterSnapshotInput
SetManualSnapshotRetentionPeriod sets the ManualSnapshotRetentionPeriod field's value.
func (s *CopyClusterSnapshotInput) SetSourceSnapshotClusterIdentifier(v string) *CopyClusterSnapshotInput
SetSourceSnapshotClusterIdentifier sets the SourceSnapshotClusterIdentifier field's value.
func (s *CopyClusterSnapshotInput) SetSourceSnapshotIdentifier(v string) *CopyClusterSnapshotInput
SetSourceSnapshotIdentifier sets the SourceSnapshotIdentifier field's value.
func (s *CopyClusterSnapshotInput) SetTargetSnapshotIdentifier(v string) *CopyClusterSnapshotInput
SetTargetSnapshotIdentifier sets the TargetSnapshotIdentifier field's value.
func (s CopyClusterSnapshotInput) String() string
String returns the string representation
func (s *CopyClusterSnapshotInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CopyClusterSnapshotOutput struct { // Describes a snapshot. Snapshot *Snapshot `type:"structure"` // contains filtered or unexported fields }
func (s CopyClusterSnapshotOutput) GoString() string
GoString returns the string representation
func (s *CopyClusterSnapshotOutput) SetSnapshot(v *Snapshot) *CopyClusterSnapshotOutput
SetSnapshot sets the Snapshot field's value.
func (s CopyClusterSnapshotOutput) String() string
String returns the string representation
type CreateClusterInput struct { // Reserved. AdditionalInfo *string `type:"string"` // If true, major version upgrades can be applied during the maintenance window // to the Amazon Redshift engine that is running on the cluster. // // When a new major version of the Amazon Redshift engine is released, you can // request that the service automatically apply upgrades during the maintenance // window to the Amazon Redshift engine that is running on your cluster. // // Default: true AllowVersionUpgrade *bool `type:"boolean"` // The number of days that automated snapshots are retained. If the value is // 0, automated snapshots are disabled. Even if automated snapshots are disabled, // you can still create manual snapshots when you want with CreateClusterSnapshot. // // Default: 1 // // Constraints: Must be a value from 0 to 35. AutomatedSnapshotRetentionPeriod *int64 `type:"integer"` // The EC2 Availability Zone (AZ) in which you want Amazon Redshift to provision // the cluster. For example, if you have several EC2 instances running in a // specific Availability Zone, then you might want the cluster to be provisioned // in the same zone in order to decrease network latency. // // Default: A random, system-chosen Availability Zone in the region that is // specified by the endpoint. // // Example: us-east-2d // // Constraint: The specified Availability Zone must be in the same region as // the current endpoint. AvailabilityZone *string `type:"string"` // The option to enable relocation for an Amazon Redshift cluster between Availability // Zones after the cluster is created. AvailabilityZoneRelocation *bool `type:"boolean"` // A unique identifier for the cluster. You use this identifier to refer to // the cluster for any subsequent cluster operations such as deleting or modifying. // The identifier also appears in the Amazon Redshift console. // // Constraints: // // * Must contain from 1 to 63 alphanumeric characters or hyphens. // // * Alphabetic characters must be lowercase. // // * First character must be a letter. // // * Cannot end with a hyphen or contain two consecutive hyphens. // // * Must be unique for all clusters within an AWS account. // // Example: myexamplecluster // // ClusterIdentifier is a required field ClusterIdentifier *string `type:"string" required:"true"` // The name of the parameter group to be associated with this cluster. // // Default: The default Amazon Redshift cluster parameter group. For information // about the default parameter group, go to Working with Amazon Redshift Parameter // Groups (https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html) // // Constraints: // // * Must be 1 to 255 alphanumeric characters or hyphens. // // * First character must be a letter. // // * Cannot end with a hyphen or contain two consecutive hyphens. ClusterParameterGroupName *string `type:"string"` // A list of security groups to be associated with this cluster. // // Default: The default cluster security group for Amazon Redshift. ClusterSecurityGroups []*string `locationNameList:"ClusterSecurityGroupName" type:"list"` // The name of a cluster subnet group to be associated with this cluster. // // If this parameter is not provided the resulting cluster will be deployed // outside virtual private cloud (VPC). ClusterSubnetGroupName *string `type:"string"` // The type of the cluster. When cluster type is specified as // // * single-node, the NumberOfNodes parameter is not required. // // * multi-node, the NumberOfNodes parameter is required. // // Valid Values: multi-node | single-node // // Default: multi-node ClusterType *string `type:"string"` // The version of the Amazon Redshift engine software that you want to deploy // on the cluster. // // The version selected runs on all the nodes in the cluster. // // Constraints: Only version 1.0 is currently available. // // Example: 1.0 ClusterVersion *string `type:"string"` // The name of the first database to be created when the cluster is created. // // To create additional databases after the cluster is created, connect to the // cluster with a SQL client and use SQL commands to create a database. For // more information, go to Create a Database (https://docs.aws.amazon.com/redshift/latest/dg/t_creating_database.html) // in the Amazon Redshift Database Developer Guide. // // Default: dev // // Constraints: // // * Must contain 1 to 64 alphanumeric characters. // // * Must contain only lowercase letters. // // * Cannot be a word that is reserved by the service. A list of reserved // words can be found in Reserved Words (https://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html) // in the Amazon Redshift Database Developer Guide. DBName *string `type:"string"` // The Elastic IP (EIP) address for the cluster. // // Constraints: The cluster must be provisioned in EC2-VPC and publicly-accessible // through an Internet gateway. For more information about provisioning clusters // in EC2-VPC, go to Supported Platforms to Launch Your Cluster (https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#cluster-platforms) // in the Amazon Redshift Cluster Management Guide. ElasticIp *string `type:"string"` // If true, the data in the cluster is encrypted at rest. // // Default: false Encrypted *bool `type:"boolean"` // An option that specifies whether to create the cluster with enhanced VPC // routing enabled. To create a cluster that uses enhanced VPC routing, the // cluster must be in a VPC. For more information, see Enhanced VPC Routing // (https://docs.aws.amazon.com/redshift/latest/mgmt/enhanced-vpc-routing.html) // in the Amazon Redshift Cluster Management Guide. // // If this option is true, enhanced VPC routing is enabled. // // Default: false EnhancedVpcRouting *bool `type:"boolean"` // Specifies the name of the HSM client certificate the Amazon Redshift cluster // uses to retrieve the data encryption keys stored in an HSM. HsmClientCertificateIdentifier *string `type:"string"` // Specifies the name of the HSM configuration that contains the information // the Amazon Redshift cluster can use to retrieve and store keys in an HSM. HsmConfigurationIdentifier *string `type:"string"` // A list of AWS Identity and Access Management (IAM) roles that can be used // by the cluster to access other AWS services. You must supply the IAM roles // in their Amazon Resource Name (ARN) format. You can supply up to 10 IAM roles // in a single request. // // A cluster can have up to 10 IAM roles associated with it at any time. IamRoles []*string `locationNameList:"IamRoleArn" type:"list"` // The AWS Key Management Service (KMS) key ID of the encryption key that you // want to use to encrypt data in the cluster. KmsKeyId *string `type:"string"` // An optional parameter for the name of the maintenance track for the cluster. // If you don't provide a maintenance track name, the cluster is assigned to // the current track. MaintenanceTrackName *string `type:"string"` // The default number of days to retain a manual snapshot. If the value is -1, // the snapshot is retained indefinitely. This setting doesn't change the retention // period of existing snapshots. // // The value must be either -1 or an integer between 1 and 3,653. ManualSnapshotRetentionPeriod *int64 `type:"integer"` // The password associated with the master user account for the cluster that // is being created. // // Constraints: // // * Must be between 8 and 64 characters in length. // // * Must contain at least one uppercase letter. // // * Must contain at least one lowercase letter. // // * Must contain one number. // // * Can be any printable ASCII character (ASCII code 33 to 126) except ' // (single quote), " (double quote), \, /, @, or space. // // MasterUserPassword is a required field MasterUserPassword *string `type:"string" required:"true"` // The user name associated with the master user account for the cluster that // is being created. // // Constraints: // // * Must be 1 - 128 alphanumeric characters. The user name can't be PUBLIC. // // * First character must be a letter. // // * Cannot be a reserved word. A list of reserved words can be found in // Reserved Words (https://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html) // in the Amazon Redshift Database Developer Guide. // // MasterUsername is a required field MasterUsername *string `type:"string" required:"true"` // The node type to be provisioned for the cluster. For information about node // types, go to Working with Clusters (https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#how-many-nodes) // in the Amazon Redshift Cluster Management Guide. // // Valid Values: ds2.xlarge | ds2.8xlarge | dc1.large | dc1.8xlarge | dc2.large // | dc2.8xlarge | ra3.xlplus | ra3.4xlarge | ra3.16xlarge // // NodeType is a required field NodeType *string `type:"string" required:"true"` // The number of compute nodes in the cluster. This parameter is required when // the ClusterType parameter is specified as multi-node. // // For information about determining how many nodes you need, go to Working // with Clusters (https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#how-many-nodes) // in the Amazon Redshift Cluster Management Guide. // // If you don't specify this parameter, you get a single-node cluster. When // requesting a multi-node cluster, you must specify the number of nodes that // you want in the cluster. // // Default: 1 // // Constraints: Value must be at least 1 and no more than 100. NumberOfNodes *int64 `type:"integer"` // The port number on which the cluster accepts incoming connections. // // The cluster is accessible only via the JDBC and ODBC connection strings. // Part of the connection string requires the port on which the cluster will // listen for incoming connections. // // Default: 5439 // // Valid Values: 1150-65535 Port *int64 `type:"integer"` // The weekly time range (in UTC) during which automated cluster maintenance // can occur. // // Format: ddd:hh24:mi-ddd:hh24:mi // // Default: A 30-minute window selected at random from an 8-hour block of time // per region, occurring on a random day of the week. For more information about // the time blocks for each region, see Maintenance Windows (https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#rs-maintenance-windows) // in Amazon Redshift Cluster Management Guide. // // Valid Days: Mon | Tue | Wed | Thu | Fri | Sat | Sun // // Constraints: Minimum 30-minute window. PreferredMaintenanceWindow *string `type:"string"` // If true, the cluster can be accessed from a public network. PubliclyAccessible *bool `type:"boolean"` // A unique identifier for the snapshot schedule. SnapshotScheduleIdentifier *string `type:"string"` // A list of tag instances. Tags []*Tag `locationNameList:"Tag" type:"list"` // A list of Virtual Private Cloud (VPC) security groups to be associated with // the cluster. // // Default: The default VPC security group is associated with the cluster. VpcSecurityGroupIds []*string `locationNameList:"VpcSecurityGroupId" type:"list"` // contains filtered or unexported fields }
func (s CreateClusterInput) GoString() string
GoString returns the string representation
func (s *CreateClusterInput) SetAdditionalInfo(v string) *CreateClusterInput
SetAdditionalInfo sets the AdditionalInfo field's value.
func (s *CreateClusterInput) SetAllowVersionUpgrade(v bool) *CreateClusterInput
SetAllowVersionUpgrade sets the AllowVersionUpgrade field's value.
func (s *CreateClusterInput) SetAutomatedSnapshotRetentionPeriod(v int64) *CreateClusterInput
SetAutomatedSnapshotRetentionPeriod sets the AutomatedSnapshotRetentionPeriod field's value.
func (s *CreateClusterInput) SetAvailabilityZone(v string) *CreateClusterInput
SetAvailabilityZone sets the AvailabilityZone field's value.
func (s *CreateClusterInput) SetAvailabilityZoneRelocation(v bool) *CreateClusterInput
SetAvailabilityZoneRelocation sets the AvailabilityZoneRelocation field's value.
func (s *CreateClusterInput) SetClusterIdentifier(v string) *CreateClusterInput
SetClusterIdentifier sets the ClusterIdentifier field's value.
func (s *CreateClusterInput) SetClusterParameterGroupName(v string) *CreateClusterInput
SetClusterParameterGroupName sets the ClusterParameterGroupName field's value.
func (s *CreateClusterInput) SetClusterSecurityGroups(v []*string) *CreateClusterInput
SetClusterSecurityGroups sets the ClusterSecurityGroups field's value.
func (s *CreateClusterInput) SetClusterSubnetGroupName(v string) *CreateClusterInput
SetClusterSubnetGroupName sets the ClusterSubnetGroupName field's value.
func (s *CreateClusterInput) SetClusterType(v string) *CreateClusterInput
SetClusterType sets the ClusterType field's value.
func (s *CreateClusterInput) SetClusterVersion(v string) *CreateClusterInput
SetClusterVersion sets the ClusterVersion field's value.
func (s *CreateClusterInput) SetDBName(v string) *CreateClusterInput
SetDBName sets the DBName field's value.
func (s *CreateClusterInput) SetElasticIp(v string) *CreateClusterInput
SetElasticIp sets the ElasticIp field's value.
func (s *CreateClusterInput) SetEncrypted(v bool) *CreateClusterInput
SetEncrypted sets the Encrypted field's value.
func (s *CreateClusterInput) SetEnhancedVpcRouting(v bool) *CreateClusterInput
SetEnhancedVpcRouting sets the EnhancedVpcRouting field's value.
func (s *CreateClusterInput) SetHsmClientCertificateIdentifier(v string) *CreateClusterInput
SetHsmClientCertificateIdentifier sets the HsmClientCertificateIdentifier field's value.
func (s *CreateClusterInput) SetHsmConfigurationIdentifier(v string) *CreateClusterInput
SetHsmConfigurationIdentifier sets the HsmConfigurationIdentifier field's value.
func (s *CreateClusterInput) SetIamRoles(v []*string) *CreateClusterInput
SetIamRoles sets the IamRoles field's value.
func (s *CreateClusterInput) SetKmsKeyId(v string) *CreateClusterInput
SetKmsKeyId sets the KmsKeyId field's value.
func (s *CreateClusterInput) SetMaintenanceTrackName(v string) *CreateClusterInput
SetMaintenanceTrackName sets the MaintenanceTrackName field's value.
func (s *CreateClusterInput) SetManualSnapshotRetentionPeriod(v int64) *CreateClusterInput
SetManualSnapshotRetentionPeriod sets the ManualSnapshotRetentionPeriod field's value.
func (s *CreateClusterInput) SetMasterUserPassword(v string) *CreateClusterInput
SetMasterUserPassword sets the MasterUserPassword field's value.
func (s *CreateClusterInput) SetMasterUsername(v string) *CreateClusterInput
SetMasterUsername sets the MasterUsername field's value.
func (s *CreateClusterInput) SetNodeType(v string) *CreateClusterInput
SetNodeType sets the NodeType field's value.
func (s *CreateClusterInput) SetNumberOfNodes(v int64) *CreateClusterInput
SetNumberOfNodes sets the NumberOfNodes field's value.
func (s *CreateClusterInput) SetPort(v int64) *CreateClusterInput
SetPort sets the Port field's value.
func (s *CreateClusterInput) SetPreferredMaintenanceWindow(v string) *CreateClusterInput
SetPreferredMaintenanceWindow sets the PreferredMaintenanceWindow field's value.
func (s *CreateClusterInput) SetPubliclyAccessible(v bool) *CreateClusterInput
SetPubliclyAccessible sets the PubliclyAccessible field's value.
func (s *CreateClusterInput) SetSnapshotScheduleIdentifier(v string) *CreateClusterInput
SetSnapshotScheduleIdentifier sets the SnapshotScheduleIdentifier field's value.
func (s *CreateClusterInput) SetTags(v []*Tag) *CreateClusterInput
SetTags sets the Tags field's value.
func (s *CreateClusterInput) SetVpcSecurityGroupIds(v []*string) *CreateClusterInput
SetVpcSecurityGroupIds sets the VpcSecurityGroupIds field's value.
func (s CreateClusterInput) String() string
String returns the string representation
func (s *CreateClusterInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateClusterOutput struct { // Describes a cluster. Cluster *Cluster `type:"structure"` // contains filtered or unexported fields }
func (s CreateClusterOutput) GoString() string
GoString returns the string representation
func (s *CreateClusterOutput) SetCluster(v *Cluster) *CreateClusterOutput
SetCluster sets the Cluster field's value.
func (s CreateClusterOutput) String() string
String returns the string representation
type CreateClusterParameterGroupInput struct { // A description of the parameter group. // // Description is a required field Description *string `type:"string" required:"true"` // The Amazon Redshift engine version to which the cluster parameter group applies. // The cluster engine version determines the set of parameters. // // To get a list of valid parameter group family names, you can call DescribeClusterParameterGroups. // By default, Amazon Redshift returns a list of all the parameter groups that // are owned by your AWS account, including the default parameter groups for // each Amazon Redshift engine version. The parameter group family names associated // with the default parameter groups provide you the valid values. For example, // a valid family name is "redshift-1.0". // // ParameterGroupFamily is a required field ParameterGroupFamily *string `type:"string" required:"true"` // The name of the cluster parameter group. // // Constraints: // // * Must be 1 to 255 alphanumeric characters or hyphens // // * First character must be a letter. // // * Cannot end with a hyphen or contain two consecutive hyphens. // // * Must be unique withing your AWS account. // // This value is stored as a lower-case string. // // ParameterGroupName is a required field ParameterGroupName *string `type:"string" required:"true"` // A list of tag instances. Tags []*Tag `locationNameList:"Tag" type:"list"` // contains filtered or unexported fields }
func (s CreateClusterParameterGroupInput) GoString() string
GoString returns the string representation
func (s *CreateClusterParameterGroupInput) SetDescription(v string) *CreateClusterParameterGroupInput
SetDescription sets the Description field's value.
func (s *CreateClusterParameterGroupInput) SetParameterGroupFamily(v string) *CreateClusterParameterGroupInput
SetParameterGroupFamily sets the ParameterGroupFamily field's value.
func (s *CreateClusterParameterGroupInput) SetParameterGroupName(v string) *CreateClusterParameterGroupInput
SetParameterGroupName sets the ParameterGroupName field's value.
func (s *CreateClusterParameterGroupInput) SetTags(v []*Tag) *CreateClusterParameterGroupInput
SetTags sets the Tags field's value.
func (s CreateClusterParameterGroupInput) String() string
String returns the string representation
func (s *CreateClusterParameterGroupInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateClusterParameterGroupOutput struct { // Describes a parameter group. ClusterParameterGroup *ClusterParameterGroup `type:"structure"` // contains filtered or unexported fields }
func (s CreateClusterParameterGroupOutput) GoString() string
GoString returns the string representation
func (s *CreateClusterParameterGroupOutput) SetClusterParameterGroup(v *ClusterParameterGroup) *CreateClusterParameterGroupOutput
SetClusterParameterGroup sets the ClusterParameterGroup field's value.
func (s CreateClusterParameterGroupOutput) String() string
String returns the string representation
type CreateClusterSecurityGroupInput struct { // The name for the security group. Amazon Redshift stores the value as a lowercase // string. // // Constraints: // // * Must contain no more than 255 alphanumeric characters or hyphens. // // * Must not be "Default". // // * Must be unique for all security groups that are created by your AWS // account. // // Example: examplesecuritygroup // // ClusterSecurityGroupName is a required field ClusterSecurityGroupName *string `type:"string" required:"true"` // A description for the security group. // // Description is a required field Description *string `type:"string" required:"true"` // A list of tag instances. Tags []*Tag `locationNameList:"Tag" type:"list"` // contains filtered or unexported fields }
func (s CreateClusterSecurityGroupInput) GoString() string
GoString returns the string representation
func (s *CreateClusterSecurityGroupInput) SetClusterSecurityGroupName(v string) *CreateClusterSecurityGroupInput
SetClusterSecurityGroupName sets the ClusterSecurityGroupName field's value.
func (s *CreateClusterSecurityGroupInput) SetDescription(v string) *CreateClusterSecurityGroupInput
SetDescription sets the Description field's value.
func (s *CreateClusterSecurityGroupInput) SetTags(v []*Tag) *CreateClusterSecurityGroupInput
SetTags sets the Tags field's value.
func (s CreateClusterSecurityGroupInput) String() string
String returns the string representation
func (s *CreateClusterSecurityGroupInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateClusterSecurityGroupOutput struct { // Describes a security group. ClusterSecurityGroup *ClusterSecurityGroup `type:"structure"` // contains filtered or unexported fields }
func (s CreateClusterSecurityGroupOutput) GoString() string
GoString returns the string representation
func (s *CreateClusterSecurityGroupOutput) SetClusterSecurityGroup(v *ClusterSecurityGroup) *CreateClusterSecurityGroupOutput
SetClusterSecurityGroup sets the ClusterSecurityGroup field's value.
func (s CreateClusterSecurityGroupOutput) String() string
String returns the string representation
type CreateClusterSnapshotInput struct { // The cluster identifier for which you want a snapshot. // // ClusterIdentifier is a required field ClusterIdentifier *string `type:"string" required:"true"` // The number of days that a manual snapshot is retained. If the value is -1, // the manual snapshot is retained indefinitely. // // The value must be either -1 or an integer between 1 and 3,653. // // The default value is -1. ManualSnapshotRetentionPeriod *int64 `type:"integer"` // A unique identifier for the snapshot that you are requesting. This identifier // must be unique for all snapshots within the AWS account. // // Constraints: // // * Cannot be null, empty, or blank // // * Must contain from 1 to 255 alphanumeric characters or hyphens // // * First character must be a letter // // * Cannot end with a hyphen or contain two consecutive hyphens // // Example: my-snapshot-id // // SnapshotIdentifier is a required field SnapshotIdentifier *string `type:"string" required:"true"` // A list of tag instances. Tags []*Tag `locationNameList:"Tag" type:"list"` // contains filtered or unexported fields }
func (s CreateClusterSnapshotInput) GoString() string
GoString returns the string representation
func (s *CreateClusterSnapshotInput) SetClusterIdentifier(v string) *CreateClusterSnapshotInput
SetClusterIdentifier sets the ClusterIdentifier field's value.
func (s *CreateClusterSnapshotInput) SetManualSnapshotRetentionPeriod(v int64) *CreateClusterSnapshotInput
SetManualSnapshotRetentionPeriod sets the ManualSnapshotRetentionPeriod field's value.
func (s *CreateClusterSnapshotInput) SetSnapshotIdentifier(v string) *CreateClusterSnapshotInput
SetSnapshotIdentifier sets the SnapshotIdentifier field's value.
func (s *CreateClusterSnapshotInput) SetTags(v []*Tag) *CreateClusterSnapshotInput
SetTags sets the Tags field's value.
func (s CreateClusterSnapshotInput) String() string
String returns the string representation
func (s *CreateClusterSnapshotInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateClusterSnapshotOutput struct { // Describes a snapshot. Snapshot *Snapshot `type:"structure"` // contains filtered or unexported fields }
func (s CreateClusterSnapshotOutput) GoString() string
GoString returns the string representation
func (s *CreateClusterSnapshotOutput) SetSnapshot(v *Snapshot) *CreateClusterSnapshotOutput
SetSnapshot sets the Snapshot field's value.
func (s CreateClusterSnapshotOutput) String() string
String returns the string representation
type CreateClusterSubnetGroupInput struct { // The name for the subnet group. Amazon Redshift stores the value as a lowercase // string. // // Constraints: // // * Must contain no more than 255 alphanumeric characters or hyphens. // // * Must not be "Default". // // * Must be unique for all subnet groups that are created by your AWS account. // // Example: examplesubnetgroup // // ClusterSubnetGroupName is a required field ClusterSubnetGroupName *string `type:"string" required:"true"` // A description for the subnet group. // // Description is a required field Description *string `type:"string" required:"true"` // An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a // single request. // // SubnetIds is a required field SubnetIds []*string `locationNameList:"SubnetIdentifier" type:"list" required:"true"` // A list of tag instances. Tags []*Tag `locationNameList:"Tag" type:"list"` // contains filtered or unexported fields }
func (s CreateClusterSubnetGroupInput) GoString() string
GoString returns the string representation
func (s *CreateClusterSubnetGroupInput) SetClusterSubnetGroupName(v string) *CreateClusterSubnetGroupInput
SetClusterSubnetGroupName sets the ClusterSubnetGroupName field's value.
func (s *CreateClusterSubnetGroupInput) SetDescription(v string) *CreateClusterSubnetGroupInput
SetDescription sets the Description field's value.
func (s *CreateClusterSubnetGroupInput) SetSubnetIds(v []*string) *CreateClusterSubnetGroupInput
SetSubnetIds sets the SubnetIds field's value.
func (s *CreateClusterSubnetGroupInput) SetTags(v []*Tag) *CreateClusterSubnetGroupInput
SetTags sets the Tags field's value.
func (s CreateClusterSubnetGroupInput) String() string
String returns the string representation
func (s *CreateClusterSubnetGroupInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateClusterSubnetGroupOutput struct { // Describes a subnet group. ClusterSubnetGroup *ClusterSubnetGroup `type:"structure"` // contains filtered or unexported fields }
func (s CreateClusterSubnetGroupOutput) GoString() string
GoString returns the string representation
func (s *CreateClusterSubnetGroupOutput) SetClusterSubnetGroup(v *ClusterSubnetGroup) *CreateClusterSubnetGroupOutput
SetClusterSubnetGroup sets the ClusterSubnetGroup field's value.
func (s CreateClusterSubnetGroupOutput) String() string
String returns the string representation
type CreateEventSubscriptionInput struct { // A boolean value; set to true to activate the subscription, and set to false // to create the subscription but not activate it. Enabled *bool `type:"boolean"` // Specifies the Amazon Redshift event categories to be published by the event // notification subscription. // // Values: configuration, management, monitoring, security EventCategories []*string `locationNameList:"EventCategory" type:"list"` // Specifies the Amazon Redshift event severity to be published by the event // notification subscription. // // Values: ERROR, INFO Severity *string `type:"string"` // The Amazon Resource Name (ARN) of the Amazon SNS topic used to transmit the // event notifications. The ARN is created by Amazon SNS when you create a topic // and subscribe to it. // // SnsTopicArn is a required field SnsTopicArn *string `type:"string" required:"true"` // A list of one or more identifiers of Amazon Redshift source objects. All // of the objects must be of the same type as was specified in the source type // parameter. The event subscription will return only events generated by the // specified objects. If not specified, then events are returned for all objects // within the source type specified. // // Example: my-cluster-1, my-cluster-2 // // Example: my-snapshot-20131010 SourceIds []*string `locationNameList:"SourceId" type:"list"` // The type of source that will be generating the events. For example, if you // want to be notified of events generated by a cluster, you would set this // parameter to cluster. If this value is not specified, events are returned // for all Amazon Redshift objects in your AWS account. You must specify a source // type in order to specify source IDs. // // Valid values: cluster, cluster-parameter-group, cluster-security-group, cluster-snapshot, // and scheduled-action. SourceType *string `type:"string"` // The name of the event subscription to be created. // // Constraints: // // * Cannot be null, empty, or blank. // // * Must contain from 1 to 255 alphanumeric characters or hyphens. // // * First character must be a letter. // // * Cannot end with a hyphen or contain two consecutive hyphens. // // SubscriptionName is a required field SubscriptionName *string `type:"string" required:"true"` // A list of tag instances. Tags []*Tag `locationNameList:"Tag" type:"list"` // contains filtered or unexported fields }
func (s CreateEventSubscriptionInput) GoString() string
GoString returns the string representation
func (s *CreateEventSubscriptionInput) SetEnabled(v bool) *CreateEventSubscriptionInput
SetEnabled sets the Enabled field's value.
func (s *CreateEventSubscriptionInput) SetEventCategories(v []*string) *CreateEventSubscriptionInput
SetEventCategories sets the EventCategories field's value.
func (s *CreateEventSubscriptionInput) SetSeverity(v string) *CreateEventSubscriptionInput
SetSeverity sets the Severity field's value.
func (s *CreateEventSubscriptionInput) SetSnsTopicArn(v string) *CreateEventSubscriptionInput
SetSnsTopicArn sets the SnsTopicArn field's value.
func (s *CreateEventSubscriptionInput) SetSourceIds(v []*string) *CreateEventSubscriptionInput
SetSourceIds sets the SourceIds field's value.
func (s *CreateEventSubscriptionInput) SetSourceType(v string) *CreateEventSubscriptionInput
SetSourceType sets the SourceType field's value.
func (s *CreateEventSubscriptionInput) SetSubscriptionName(v string) *CreateEventSubscriptionInput
SetSubscriptionName sets the SubscriptionName field's value.
func (s *CreateEventSubscriptionInput) SetTags(v []*Tag) *CreateEventSubscriptionInput
SetTags sets the Tags field's value.
func (s CreateEventSubscriptionInput) String() string
String returns the string representation
func (s *CreateEventSubscriptionInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateEventSubscriptionOutput struct { // Describes event subscriptions. EventSubscription *EventSubscription `type:"structure"` // contains filtered or unexported fields }
func (s CreateEventSubscriptionOutput) GoString() string
GoString returns the string representation
func (s *CreateEventSubscriptionOutput) SetEventSubscription(v *EventSubscription) *CreateEventSubscriptionOutput
SetEventSubscription sets the EventSubscription field's value.
func (s CreateEventSubscriptionOutput) String() string
String returns the string representation
type CreateHsmClientCertificateInput struct { // The identifier to be assigned to the new HSM client certificate that the // cluster will use to connect to the HSM to use the database encryption keys. // // HsmClientCertificateIdentifier is a required field HsmClientCertificateIdentifier *string `type:"string" required:"true"` // A list of tag instances. Tags []*Tag `locationNameList:"Tag" type:"list"` // contains filtered or unexported fields }
func (s CreateHsmClientCertificateInput) GoString() string
GoString returns the string representation
func (s *CreateHsmClientCertificateInput) SetHsmClientCertificateIdentifier(v string) *CreateHsmClientCertificateInput
SetHsmClientCertificateIdentifier sets the HsmClientCertificateIdentifier field's value.
func (s *CreateHsmClientCertificateInput) SetTags(v []*Tag) *CreateHsmClientCertificateInput
SetTags sets the Tags field's value.
func (s CreateHsmClientCertificateInput) String() string
String returns the string representation
func (s *CreateHsmClientCertificateInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateHsmClientCertificateOutput struct { // Returns information about an HSM client certificate. The certificate is stored // in a secure Hardware Storage Module (HSM), and used by the Amazon Redshift // cluster to encrypt data files. HsmClientCertificate *HsmClientCertificate `type:"structure"` // contains filtered or unexported fields }
func (s CreateHsmClientCertificateOutput) GoString() string
GoString returns the string representation
func (s *CreateHsmClientCertificateOutput) SetHsmClientCertificate(v *HsmClientCertificate) *CreateHsmClientCertificateOutput
SetHsmClientCertificate sets the HsmClientCertificate field's value.
func (s CreateHsmClientCertificateOutput) String() string
String returns the string representation
type CreateHsmConfigurationInput struct { // A text description of the HSM configuration to be created. // // Description is a required field Description *string `type:"string" required:"true"` // The identifier to be assigned to the new Amazon Redshift HSM configuration. // // HsmConfigurationIdentifier is a required field HsmConfigurationIdentifier *string `type:"string" required:"true"` // The IP address that the Amazon Redshift cluster must use to access the HSM. // // HsmIpAddress is a required field HsmIpAddress *string `type:"string" required:"true"` // The name of the partition in the HSM where the Amazon Redshift clusters will // store their database encryption keys. // // HsmPartitionName is a required field HsmPartitionName *string `type:"string" required:"true"` // The password required to access the HSM partition. // // HsmPartitionPassword is a required field HsmPartitionPassword *string `type:"string" required:"true"` // The HSMs public certificate file. When using Cloud HSM, the file name is // server.pem. // // HsmServerPublicCertificate is a required field HsmServerPublicCertificate *string `type:"string" required:"true"` // A list of tag instances. Tags []*Tag `locationNameList:"Tag" type:"list"` // contains filtered or unexported fields }
func (s CreateHsmConfigurationInput) GoString() string
GoString returns the string representation
func (s *CreateHsmConfigurationInput) SetDescription(v string) *CreateHsmConfigurationInput
SetDescription sets the Description field's value.
func (s *CreateHsmConfigurationInput) SetHsmConfigurationIdentifier(v string) *CreateHsmConfigurationInput
SetHsmConfigurationIdentifier sets the HsmConfigurationIdentifier field's value.
func (s *CreateHsmConfigurationInput) SetHsmIpAddress(v string) *CreateHsmConfigurationInput
SetHsmIpAddress sets the HsmIpAddress field's value.
func (s *CreateHsmConfigurationInput) SetHsmPartitionName(v string) *CreateHsmConfigurationInput
SetHsmPartitionName sets the HsmPartitionName field's value.
func (s *CreateHsmConfigurationInput) SetHsmPartitionPassword(v string) *CreateHsmConfigurationInput
SetHsmPartitionPassword sets the HsmPartitionPassword field's value.
func (s *CreateHsmConfigurationInput) SetHsmServerPublicCertificate(v string) *CreateHsmConfigurationInput
SetHsmServerPublicCertificate sets the HsmServerPublicCertificate field's value.
func (s *CreateHsmConfigurationInput) SetTags(v []*Tag) *CreateHsmConfigurationInput
SetTags sets the Tags field's value.
func (s CreateHsmConfigurationInput) String() string
String returns the string representation
func (s *CreateHsmConfigurationInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateHsmConfigurationOutput struct { // Returns information about an HSM configuration, which is an object that describes // to Amazon Redshift clusters the information they require to connect to an // HSM where they can store database encryption keys. HsmConfiguration *HsmConfiguration `type:"structure"` // contains filtered or unexported fields }
func (s CreateHsmConfigurationOutput) GoString() string
GoString returns the string representation
func (s *CreateHsmConfigurationOutput) SetHsmConfiguration(v *HsmConfiguration) *CreateHsmConfigurationOutput
SetHsmConfiguration sets the HsmConfiguration field's value.
func (s CreateHsmConfigurationOutput) String() string
String returns the string representation
type CreateScheduledActionInput struct { // If true, the schedule is enabled. If false, the scheduled action does not // trigger. For more information about state of the scheduled action, see ScheduledAction. Enable *bool `type:"boolean"` // The end time in UTC of the scheduled action. After this time, the scheduled // action does not trigger. For more information about this parameter, see ScheduledAction. EndTime *time.Time `type:"timestamp"` // The IAM role to assume to run the target action. For more information about // this parameter, see ScheduledAction. // // IamRole is a required field IamRole *string `type:"string" required:"true"` // The schedule in at( ) or cron( ) format. For more information about this // parameter, see ScheduledAction. // // Schedule is a required field Schedule *string `type:"string" required:"true"` // The description of the scheduled action. ScheduledActionDescription *string `type:"string"` // The name of the scheduled action. The name must be unique within an account. // For more information about this parameter, see ScheduledAction. // // ScheduledActionName is a required field ScheduledActionName *string `type:"string" required:"true"` // The start time in UTC of the scheduled action. Before this time, the scheduled // action does not trigger. For more information about this parameter, see ScheduledAction. StartTime *time.Time `type:"timestamp"` // A JSON format string of the Amazon Redshift API operation with input parameters. // For more information about this parameter, see ScheduledAction. // // TargetAction is a required field TargetAction *ScheduledActionType `type:"structure" required:"true"` // contains filtered or unexported fields }
func (s CreateScheduledActionInput) GoString() string
GoString returns the string representation
func (s *CreateScheduledActionInput) SetEnable(v bool) *CreateScheduledActionInput
SetEnable sets the Enable field's value.
func (s *CreateScheduledActionInput) SetEndTime(v time.Time) *CreateScheduledActionInput
SetEndTime sets the EndTime field's value.
func (s *CreateScheduledActionInput) SetIamRole(v string) *CreateScheduledActionInput
SetIamRole sets the IamRole field's value.
func (s *CreateScheduledActionInput) SetSchedule(v string) *CreateScheduledActionInput
SetSchedule sets the Schedule field's value.
func (s *CreateScheduledActionInput) SetScheduledActionDescription(v string) *CreateScheduledActionInput
SetScheduledActionDescription sets the ScheduledActionDescription field's value.
func (s *CreateScheduledActionInput) SetScheduledActionName(v string) *CreateScheduledActionInput
SetScheduledActionName sets the ScheduledActionName field's value.
func (s *CreateScheduledActionInput) SetStartTime(v time.Time) *CreateScheduledActionInput
SetStartTime sets the StartTime field's value.
func (s *CreateScheduledActionInput) SetTargetAction(v *ScheduledActionType) *CreateScheduledActionInput
SetTargetAction sets the TargetAction field's value.
func (s CreateScheduledActionInput) String() string
String returns the string representation
func (s *CreateScheduledActionInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateScheduledActionOutput struct { // The end time in UTC when the schedule is no longer active. After this time, // the scheduled action does not trigger. EndTime *time.Time `type:"timestamp"` // The IAM role to assume to run the scheduled action. This IAM role must have // permission to run the Amazon Redshift API operation in the scheduled action. // This IAM role must allow the Amazon Redshift scheduler (Principal scheduler.redshift.amazonaws.com) // to assume permissions on your behalf. For more information about the IAM // role to use with the Amazon Redshift scheduler, see Using Identity-Based // Policies for Amazon Redshift (https://docs.aws.amazon.com/redshift/latest/mgmt/redshift-iam-access-control-identity-based.html) // in the Amazon Redshift Cluster Management Guide. IamRole *string `type:"string"` // List of times when the scheduled action will run. NextInvocations []*time.Time `locationNameList:"ScheduledActionTime" type:"list"` // The schedule for a one-time (at format) or recurring (cron format) scheduled // action. Schedule invocations must be separated by at least one hour. // // Format of at expressions is "at(yyyy-mm-ddThh:mm:ss)". For example, "at(2016-03-04T17:27:00)". // // Format of cron expressions is "cron(Minutes Hours Day-of-month Month Day-of-week // Year)". For example, "cron(0 10 ? * MON *)". For more information, see Cron // Expressions (https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/ScheduledEvents.html#CronExpressions) // in the Amazon CloudWatch Events User Guide. Schedule *string `type:"string"` // The description of the scheduled action. ScheduledActionDescription *string `type:"string"` // The name of the scheduled action. ScheduledActionName *string `type:"string"` // The start time in UTC when the schedule is active. Before this time, the // scheduled action does not trigger. StartTime *time.Time `type:"timestamp"` // The state of the scheduled action. For example, DISABLED. State *string `type:"string" enum:"ScheduledActionState"` // A JSON format string of the Amazon Redshift API operation with input parameters. // // "{\"ResizeCluster\":{\"NodeType\":\"ds2.8xlarge\",\"ClusterIdentifier\":\"my-test-cluster\",\"NumberOfNodes\":3}}". TargetAction *ScheduledActionType `type:"structure"` // contains filtered or unexported fields }
Describes a scheduled action. You can use a scheduled action to trigger some Amazon Redshift API operations on a schedule. For information about which API operations can be scheduled, see ScheduledActionType.
func (s CreateScheduledActionOutput) GoString() string
GoString returns the string representation
func (s *CreateScheduledActionOutput) SetEndTime(v time.Time) *CreateScheduledActionOutput
SetEndTime sets the EndTime field's value.
func (s *CreateScheduledActionOutput) SetIamRole(v string) *CreateScheduledActionOutput
SetIamRole sets the IamRole field's value.
func (s *CreateScheduledActionOutput) SetNextInvocations(v []*time.Time) *CreateScheduledActionOutput
SetNextInvocations sets the NextInvocations field's value.
func (s *CreateScheduledActionOutput) SetSchedule(v string) *CreateScheduledActionOutput
SetSchedule sets the Schedule field's value.
func (s *CreateScheduledActionOutput) SetScheduledActionDescription(v string) *CreateScheduledActionOutput
SetScheduledActionDescription sets the ScheduledActionDescription field's value.
func (s *CreateScheduledActionOutput) SetScheduledActionName(v string) *CreateScheduledActionOutput
SetScheduledActionName sets the ScheduledActionName field's value.
func (s *CreateScheduledActionOutput) SetStartTime(v time.Time) *CreateScheduledActionOutput
SetStartTime sets the StartTime field's value.
func (s *CreateScheduledActionOutput) SetState(v string) *CreateScheduledActionOutput
SetState sets the State field's value.
func (s *CreateScheduledActionOutput) SetTargetAction(v *ScheduledActionType) *CreateScheduledActionOutput
SetTargetAction sets the TargetAction field's value.
func (s CreateScheduledActionOutput) String() string
String returns the string representation
type CreateSnapshotCopyGrantInput struct { // The unique identifier of the customer master key (CMK) to which to grant // Amazon Redshift permission. If no key is specified, the default key is used. KmsKeyId *string `type:"string"` // The name of the snapshot copy grant. This name must be unique in the region // for the AWS account. // // Constraints: // // * Must contain from 1 to 63 alphanumeric characters or hyphens. // // * Alphabetic characters must be lowercase. // // * First character must be a letter. // // * Cannot end with a hyphen or contain two consecutive hyphens. // // * Must be unique for all clusters within an AWS account. // // SnapshotCopyGrantName is a required field SnapshotCopyGrantName *string `type:"string" required:"true"` // A list of tag instances. Tags []*Tag `locationNameList:"Tag" type:"list"` // contains filtered or unexported fields }
The result of the CreateSnapshotCopyGrant action.
func (s CreateSnapshotCopyGrantInput) GoString() string
GoString returns the string representation
func (s *CreateSnapshotCopyGrantInput) SetKmsKeyId(v string) *CreateSnapshotCopyGrantInput
SetKmsKeyId sets the KmsKeyId field's value.
func (s *CreateSnapshotCopyGrantInput) SetSnapshotCopyGrantName(v string) *CreateSnapshotCopyGrantInput
SetSnapshotCopyGrantName sets the SnapshotCopyGrantName field's value.
func (s *CreateSnapshotCopyGrantInput) SetTags(v []*Tag) *CreateSnapshotCopyGrantInput
SetTags sets the Tags field's value.
func (s CreateSnapshotCopyGrantInput) String() string
String returns the string representation
func (s *CreateSnapshotCopyGrantInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateSnapshotCopyGrantOutput struct { // The snapshot copy grant that grants Amazon Redshift permission to encrypt // copied snapshots with the specified customer master key (CMK) from AWS KMS // in the destination region. // // For more information about managing snapshot copy grants, go to Amazon Redshift // Database Encryption (https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-db-encryption.html) // in the Amazon Redshift Cluster Management Guide. SnapshotCopyGrant *SnapshotCopyGrant `type:"structure"` // contains filtered or unexported fields }
func (s CreateSnapshotCopyGrantOutput) GoString() string
GoString returns the string representation
func (s *CreateSnapshotCopyGrantOutput) SetSnapshotCopyGrant(v *SnapshotCopyGrant) *CreateSnapshotCopyGrantOutput
SetSnapshotCopyGrant sets the SnapshotCopyGrant field's value.
func (s CreateSnapshotCopyGrantOutput) String() string
String returns the string representation
type CreateSnapshotScheduleInput struct { DryRun *bool `type:"boolean"` NextInvocations *int64 `type:"integer"` // The definition of the snapshot schedule. The definition is made up of schedule // expressions, for example "cron(30 12 *)" or "rate(12 hours)". ScheduleDefinitions []*string `locationNameList:"ScheduleDefinition" type:"list"` // The description of the snapshot schedule. ScheduleDescription *string `type:"string"` // A unique identifier for a snapshot schedule. Only alphanumeric characters // are allowed for the identifier. ScheduleIdentifier *string `type:"string"` // An optional set of tags you can use to search for the schedule. Tags []*Tag `locationNameList:"Tag" type:"list"` // contains filtered or unexported fields }
func (s CreateSnapshotScheduleInput) GoString() string
GoString returns the string representation
func (s *CreateSnapshotScheduleInput) SetDryRun(v bool) *CreateSnapshotScheduleInput
SetDryRun sets the DryRun field's value.
func (s *CreateSnapshotScheduleInput) SetNextInvocations(v int64) *CreateSnapshotScheduleInput
SetNextInvocations sets the NextInvocations field's value.
func (s *CreateSnapshotScheduleInput) SetScheduleDefinitions(v []*string) *CreateSnapshotScheduleInput
SetScheduleDefinitions sets the ScheduleDefinitions field's value.
func (s *CreateSnapshotScheduleInput) SetScheduleDescription(v string) *CreateSnapshotScheduleInput
SetScheduleDescription sets the ScheduleDescription field's value.
func (s *CreateSnapshotScheduleInput) SetScheduleIdentifier(v string) *CreateSnapshotScheduleInput
SetScheduleIdentifier sets the ScheduleIdentifier field's value.
func (s *CreateSnapshotScheduleInput) SetTags(v []*Tag) *CreateSnapshotScheduleInput
SetTags sets the Tags field's value.
func (s CreateSnapshotScheduleInput) String() string
String returns the string representation
type CreateSnapshotScheduleOutput struct { // The number of clusters associated with the schedule. AssociatedClusterCount *int64 `type:"integer"` // A list of clusters associated with the schedule. A maximum of 100 clusters // is returned. AssociatedClusters []*ClusterAssociatedToSchedule `locationNameList:"ClusterAssociatedToSchedule" type:"list"` NextInvocations []*time.Time `locationNameList:"SnapshotTime" type:"list"` // A list of ScheduleDefinitions. ScheduleDefinitions []*string `locationNameList:"ScheduleDefinition" type:"list"` // The description of the schedule. ScheduleDescription *string `type:"string"` // A unique identifier for the schedule. ScheduleIdentifier *string `type:"string"` // An optional set of tags describing the schedule. Tags []*Tag `locationNameList:"Tag" type:"list"` // contains filtered or unexported fields }
Describes a snapshot schedule. You can set a regular interval for creating snapshots of a cluster. You can also schedule snapshots for specific dates.
func (s CreateSnapshotScheduleOutput) GoString() string
GoString returns the string representation
func (s *CreateSnapshotScheduleOutput) SetAssociatedClusterCount(v int64) *CreateSnapshotScheduleOutput
SetAssociatedClusterCount sets the AssociatedClusterCount field's value.
func (s *CreateSnapshotScheduleOutput) SetAssociatedClusters(v []*ClusterAssociatedToSchedule) *CreateSnapshotScheduleOutput
SetAssociatedClusters sets the AssociatedClusters field's value.
func (s *CreateSnapshotScheduleOutput) SetNextInvocations(v []*time.Time) *CreateSnapshotScheduleOutput
SetNextInvocations sets the NextInvocations field's value.
func (s *CreateSnapshotScheduleOutput) SetScheduleDefinitions(v []*string) *CreateSnapshotScheduleOutput
SetScheduleDefinitions sets the ScheduleDefinitions field's value.
func (s *CreateSnapshotScheduleOutput) SetScheduleDescription(v string) *CreateSnapshotScheduleOutput
SetScheduleDescription sets the ScheduleDescription field's value.
func (s *CreateSnapshotScheduleOutput) SetScheduleIdentifier(v string) *CreateSnapshotScheduleOutput
SetScheduleIdentifier sets the ScheduleIdentifier field's value.
func (s *CreateSnapshotScheduleOutput) SetTags(v []*Tag) *CreateSnapshotScheduleOutput
SetTags sets the Tags field's value.
func (s CreateSnapshotScheduleOutput) String() string
String returns the string representation
type CreateTagsInput struct { // The Amazon Resource Name (ARN) to which you want to add the tag or tags. // For example, arn:aws:redshift:us-east-2:123456789:cluster:t1. // // ResourceName is a required field ResourceName *string `type:"string" required:"true"` // One or more name/value pairs to add as tags to the specified resource. Each // tag name is passed in with the parameter Key and the corresponding value // is passed in with the parameter Value. The Key and Value parameters are separated // by a comma (,). Separate multiple tags with a space. For example, --tags // "Key"="owner","Value"="admin" "Key"="environment","Value"="test" "Key"="version","Value"="1.0". // // Tags is a required field Tags []*Tag `locationNameList:"Tag" type:"list" required:"true"` // contains filtered or unexported fields }
Contains the output from the CreateTags action.
func (s CreateTagsInput) GoString() string
GoString returns the string representation
func (s *CreateTagsInput) SetResourceName(v string) *CreateTagsInput
SetResourceName sets the ResourceName field's value.
func (s *CreateTagsInput) SetTags(v []*Tag) *CreateTagsInput
SetTags sets the Tags field's value.
func (s CreateTagsInput) String() string
String returns the string representation
func (s *CreateTagsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateTagsOutput struct {
// contains filtered or unexported fields
}
func (s CreateTagsOutput) GoString() string
GoString returns the string representation
func (s CreateTagsOutput) String() string
String returns the string representation
type CreateUsageLimitInput struct { // The limit amount. If time-based, this amount is in minutes. If data-based, // this amount is in terabytes (TB). The value must be a positive number. // // Amount is a required field Amount *int64 `type:"long" required:"true"` // The action that Amazon Redshift takes when the limit is reached. The default // is log. For more information about this parameter, see UsageLimit. BreachAction *string `type:"string" enum:"UsageLimitBreachAction"` // The identifier of the cluster that you want to limit usage. // // ClusterIdentifier is a required field ClusterIdentifier *string `type:"string" required:"true"` // The Amazon Redshift feature that you want to limit. // // FeatureType is a required field FeatureType *string `type:"string" required:"true" enum:"UsageLimitFeatureType"` // The type of limit. Depending on the feature type, this can be based on a // time duration or data size. If FeatureType is spectrum, then LimitType must // be data-scanned. If FeatureType is concurrency-scaling, then LimitType must // be time. // // LimitType is a required field LimitType *string `type:"string" required:"true" enum:"UsageLimitLimitType"` // The time period that the amount applies to. A weekly period begins on Sunday. // The default is monthly. Period *string `type:"string" enum:"UsageLimitPeriod"` // A list of tag instances. Tags []*Tag `locationNameList:"Tag" type:"list"` // contains filtered or unexported fields }
func (s CreateUsageLimitInput) GoString() string
GoString returns the string representation
func (s *CreateUsageLimitInput) SetAmount(v int64) *CreateUsageLimitInput
SetAmount sets the Amount field's value.
func (s *CreateUsageLimitInput) SetBreachAction(v string) *CreateUsageLimitInput
SetBreachAction sets the BreachAction field's value.
func (s *CreateUsageLimitInput) SetClusterIdentifier(v string) *CreateUsageLimitInput
SetClusterIdentifier sets the ClusterIdentifier field's value.
func (s *CreateUsageLimitInput) SetFeatureType(v string) *CreateUsageLimitInput
SetFeatureType sets the FeatureType field's value.
func (s *CreateUsageLimitInput) SetLimitType(v string) *CreateUsageLimitInput
SetLimitType sets the LimitType field's value.
func (s *CreateUsageLimitInput) SetPeriod(v string) *CreateUsageLimitInput
SetPeriod sets the Period field's value.
func (s *CreateUsageLimitInput) SetTags(v []*Tag) *CreateUsageLimitInput
SetTags sets the Tags field's value.
func (s CreateUsageLimitInput) String() string
String returns the string representation
func (s *CreateUsageLimitInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateUsageLimitOutput struct { // The limit amount. If time-based, this amount is in minutes. If data-based, // this amount is in terabytes (TB). Amount *int64 `type:"long"` // The action that Amazon Redshift takes when the limit is reached. Possible // values are: // // * log - To log an event in a system table. The default is log. // // * emit-metric - To emit CloudWatch metrics. // // * disable - To disable the feature until the next usage period begins. BreachAction *string `type:"string" enum:"UsageLimitBreachAction"` // The identifier of the cluster with a usage limit. ClusterIdentifier *string `type:"string"` // The Amazon Redshift feature to which the limit applies. FeatureType *string `type:"string" enum:"UsageLimitFeatureType"` // The type of limit. Depending on the feature type, this can be based on a // time duration or data size. LimitType *string `type:"string" enum:"UsageLimitLimitType"` // The time period that the amount applies to. A weekly period begins on Sunday. // The default is monthly. Period *string `type:"string" enum:"UsageLimitPeriod"` // A list of tag instances. Tags []*Tag `locationNameList:"Tag" type:"list"` // The identifier of the usage limit. UsageLimitId *string `type:"string"` // contains filtered or unexported fields }
Describes a usage limit object for a cluster.
func (s CreateUsageLimitOutput) GoString() string
GoString returns the string representation
func (s *CreateUsageLimitOutput) SetAmount(v int64) *CreateUsageLimitOutput
SetAmount sets the Amount field's value.
func (s *CreateUsageLimitOutput) SetBreachAction(v string) *CreateUsageLimitOutput
SetBreachAction sets the BreachAction field's value.
func (s *CreateUsageLimitOutput) SetClusterIdentifier(v string) *CreateUsageLimitOutput
SetClusterIdentifier sets the ClusterIdentifier field's value.
func (s *CreateUsageLimitOutput) SetFeatureType(v string) *CreateUsageLimitOutput
SetFeatureType sets the FeatureType field's value.
func (s *CreateUsageLimitOutput) SetLimitType(v string) *CreateUsageLimitOutput
SetLimitType sets the LimitType field's value.
func (s *CreateUsageLimitOutput) SetPeriod(v string) *CreateUsageLimitOutput
SetPeriod sets the Period field's value.
func (s *CreateUsageLimitOutput) SetTags(v []*Tag) *CreateUsageLimitOutput
SetTags sets the Tags field's value.
func (s *CreateUsageLimitOutput) SetUsageLimitId(v string) *CreateUsageLimitOutput
SetUsageLimitId sets the UsageLimitId field's value.
func (s CreateUsageLimitOutput) String() string
String returns the string representation
type DataTransferProgress struct { // Describes the data transfer rate in MB's per second. CurrentRateInMegaBytesPerSecond *float64 `type:"double"` // Describes the total amount of data that has been transfered in MB's. DataTransferredInMegaBytes *int64 `type:"long"` // Describes the number of seconds that have elapsed during the data transfer. ElapsedTimeInSeconds *int64 `type:"long"` // Describes the estimated number of seconds remaining to complete the transfer. EstimatedTimeToCompletionInSeconds *int64 `type:"long"` // Describes the status of the cluster. While the transfer is in progress the // status is transferringdata. Status *string `type:"string"` // Describes the total amount of data to be transfered in megabytes. TotalDataInMegaBytes *int64 `type:"long"` // contains filtered or unexported fields }
Describes the status of a cluster while it is in the process of resizing with an incremental resize.
func (s DataTransferProgress) GoString() string
GoString returns the string representation
func (s *DataTransferProgress) SetCurrentRateInMegaBytesPerSecond(v float64) *DataTransferProgress
SetCurrentRateInMegaBytesPerSecond sets the CurrentRateInMegaBytesPerSecond field's value.
func (s *DataTransferProgress) SetDataTransferredInMegaBytes(v int64) *DataTransferProgress
SetDataTransferredInMegaBytes sets the DataTransferredInMegaBytes field's value.
func (s *DataTransferProgress) SetElapsedTimeInSeconds(v int64) *DataTransferProgress
SetElapsedTimeInSeconds sets the ElapsedTimeInSeconds field's value.
func (s *DataTransferProgress) SetEstimatedTimeToCompletionInSeconds(v int64) *DataTransferProgress
SetEstimatedTimeToCompletionInSeconds sets the EstimatedTimeToCompletionInSeconds field's value.
func (s *DataTransferProgress) SetStatus(v string) *DataTransferProgress
SetStatus sets the Status field's value.
func (s *DataTransferProgress) SetTotalDataInMegaBytes(v int64) *DataTransferProgress
SetTotalDataInMegaBytes sets the TotalDataInMegaBytes field's value.
func (s DataTransferProgress) String() string
String returns the string representation
type DefaultClusterParameters struct { // A value that indicates the starting point for the next set of response records // in a subsequent request. If a value is returned in a response, you can retrieve // the next set of records by providing this returned marker value in the Marker // parameter and retrying the command. If the Marker field is empty, all response // records have been retrieved for the request. Marker *string `type:"string"` // The name of the cluster parameter group family to which the engine default // parameters apply. ParameterGroupFamily *string `type:"string"` // The list of cluster default parameters. Parameters []*Parameter `locationNameList:"Parameter" type:"list"` // contains filtered or unexported fields }
Describes the default cluster parameters for a parameter group family.
func (s DefaultClusterParameters) GoString() string
GoString returns the string representation
func (s *DefaultClusterParameters) SetMarker(v string) *DefaultClusterParameters
SetMarker sets the Marker field's value.
func (s *DefaultClusterParameters) SetParameterGroupFamily(v string) *DefaultClusterParameters
SetParameterGroupFamily sets the ParameterGroupFamily field's value.
func (s *DefaultClusterParameters) SetParameters(v []*Parameter) *DefaultClusterParameters
SetParameters sets the Parameters field's value.
func (s DefaultClusterParameters) String() string
String returns the string representation
type DeferredMaintenanceWindow struct { // A timestamp for the end of the time period when we defer maintenance. DeferMaintenanceEndTime *time.Time `type:"timestamp"` // A unique identifier for the maintenance window. DeferMaintenanceIdentifier *string `type:"string"` // A timestamp for the beginning of the time period when we defer maintenance. DeferMaintenanceStartTime *time.Time `type:"timestamp"` // contains filtered or unexported fields }
Describes a deferred maintenance window
func (s DeferredMaintenanceWindow) GoString() string
GoString returns the string representation
func (s *DeferredMaintenanceWindow) SetDeferMaintenanceEndTime(v time.Time) *DeferredMaintenanceWindow
SetDeferMaintenanceEndTime sets the DeferMaintenanceEndTime field's value.
func (s *DeferredMaintenanceWindow) SetDeferMaintenanceIdentifier(v string) *DeferredMaintenanceWindow
SetDeferMaintenanceIdentifier sets the DeferMaintenanceIdentifier field's value.
func (s *DeferredMaintenanceWindow) SetDeferMaintenanceStartTime(v time.Time) *DeferredMaintenanceWindow
SetDeferMaintenanceStartTime sets the DeferMaintenanceStartTime field's value.
func (s DeferredMaintenanceWindow) String() string
String returns the string representation
type DeleteClusterInput struct { // The identifier of the cluster to be deleted. // // Constraints: // // * Must contain lowercase characters. // // * Must contain from 1 to 63 alphanumeric characters or hyphens. // // * First character must be a letter. // // * Cannot end with a hyphen or contain two consecutive hyphens. // // ClusterIdentifier is a required field ClusterIdentifier *string `type:"string" required:"true"` // The identifier of the final snapshot that is to be created immediately before // deleting the cluster. If this parameter is provided, SkipFinalClusterSnapshot // must be false. // // Constraints: // // * Must be 1 to 255 alphanumeric characters. // // * First character must be a letter. // // * Cannot end with a hyphen or contain two consecutive hyphens. FinalClusterSnapshotIdentifier *string `type:"string"` // The number of days that a manual snapshot is retained. If the value is -1, // the manual snapshot is retained indefinitely. // // The value must be either -1 or an integer between 1 and 3,653. // // The default value is -1. FinalClusterSnapshotRetentionPeriod *int64 `type:"integer"` // Determines whether a final snapshot of the cluster is created before Amazon // Redshift deletes the cluster. If true, a final cluster snapshot is not created. // If false, a final cluster snapshot is created before the cluster is deleted. // // The FinalClusterSnapshotIdentifier parameter must be specified if SkipFinalClusterSnapshot // is false. // // Default: false SkipFinalClusterSnapshot *bool `type:"boolean"` // contains filtered or unexported fields }
func (s DeleteClusterInput) GoString() string
GoString returns the string representation
func (s *DeleteClusterInput) SetClusterIdentifier(v string) *DeleteClusterInput
SetClusterIdentifier sets the ClusterIdentifier field's value.
func (s *DeleteClusterInput) SetFinalClusterSnapshotIdentifier(v string) *DeleteClusterInput
SetFinalClusterSnapshotIdentifier sets the FinalClusterSnapshotIdentifier field's value.
func (s *DeleteClusterInput) SetFinalClusterSnapshotRetentionPeriod(v int64) *DeleteClusterInput
SetFinalClusterSnapshotRetentionPeriod sets the FinalClusterSnapshotRetentionPeriod field's value.
func (s *DeleteClusterInput) SetSkipFinalClusterSnapshot(v bool) *DeleteClusterInput
SetSkipFinalClusterSnapshot sets the SkipFinalClusterSnapshot field's value.
func (s DeleteClusterInput) String() string
String returns the string representation
func (s *DeleteClusterInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteClusterOutput struct { // Describes a cluster. Cluster *Cluster `type:"structure"` // contains filtered or unexported fields }
func (s DeleteClusterOutput) GoString() string
GoString returns the string representation
func (s *DeleteClusterOutput) SetCluster(v *Cluster) *DeleteClusterOutput
SetCluster sets the Cluster field's value.
func (s DeleteClusterOutput) String() string
String returns the string representation
type DeleteClusterParameterGroupInput struct { // The name of the parameter group to be deleted. // // Constraints: // // * Must be the name of an existing cluster parameter group. // // * Cannot delete a default cluster parameter group. // // ParameterGroupName is a required field ParameterGroupName *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s DeleteClusterParameterGroupInput) GoString() string
GoString returns the string representation
func (s *DeleteClusterParameterGroupInput) SetParameterGroupName(v string) *DeleteClusterParameterGroupInput
SetParameterGroupName sets the ParameterGroupName field's value.
func (s DeleteClusterParameterGroupInput) String() string
String returns the string representation
func (s *DeleteClusterParameterGroupInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteClusterParameterGroupOutput struct {
// contains filtered or unexported fields
}
func (s DeleteClusterParameterGroupOutput) GoString() string
GoString returns the string representation
func (s DeleteClusterParameterGroupOutput) String() string
String returns the string representation
type DeleteClusterSecurityGroupInput struct { // The name of the cluster security group to be deleted. // // ClusterSecurityGroupName is a required field ClusterSecurityGroupName *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s DeleteClusterSecurityGroupInput) GoString() string
GoString returns the string representation
func (s *DeleteClusterSecurityGroupInput) SetClusterSecurityGroupName(v string) *DeleteClusterSecurityGroupInput
SetClusterSecurityGroupName sets the ClusterSecurityGroupName field's value.
func (s DeleteClusterSecurityGroupInput) String() string
String returns the string representation
func (s *DeleteClusterSecurityGroupInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteClusterSecurityGroupOutput struct {
// contains filtered or unexported fields
}
func (s DeleteClusterSecurityGroupOutput) GoString() string
GoString returns the string representation
func (s DeleteClusterSecurityGroupOutput) String() string
String returns the string representation
type DeleteClusterSnapshotInput struct { // The unique identifier of the cluster the snapshot was created from. This // parameter is required if your IAM user has a policy containing a snapshot // resource element that specifies anything other than * for the cluster name. // // Constraints: Must be the name of valid cluster. SnapshotClusterIdentifier *string `type:"string"` // The unique identifier of the manual snapshot to be deleted. // // Constraints: Must be the name of an existing snapshot that is in the available, // failed, or cancelled state. // // SnapshotIdentifier is a required field SnapshotIdentifier *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s DeleteClusterSnapshotInput) GoString() string
GoString returns the string representation
func (s *DeleteClusterSnapshotInput) SetSnapshotClusterIdentifier(v string) *DeleteClusterSnapshotInput
SetSnapshotClusterIdentifier sets the SnapshotClusterIdentifier field's value.
func (s *DeleteClusterSnapshotInput) SetSnapshotIdentifier(v string) *DeleteClusterSnapshotInput
SetSnapshotIdentifier sets the SnapshotIdentifier field's value.
func (s DeleteClusterSnapshotInput) String() string
String returns the string representation
func (s *DeleteClusterSnapshotInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteClusterSnapshotMessage struct { // The unique identifier of the cluster the snapshot was created from. This // parameter is required if your IAM user has a policy containing a snapshot // resource element that specifies anything other than * for the cluster name. // // Constraints: Must be the name of valid cluster. SnapshotClusterIdentifier *string `type:"string"` // The unique identifier of the manual snapshot to be deleted. // // Constraints: Must be the name of an existing snapshot that is in the available, // failed, or cancelled state. // // SnapshotIdentifier is a required field SnapshotIdentifier *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s DeleteClusterSnapshotMessage) GoString() string
GoString returns the string representation
func (s *DeleteClusterSnapshotMessage) SetSnapshotClusterIdentifier(v string) *DeleteClusterSnapshotMessage
SetSnapshotClusterIdentifier sets the SnapshotClusterIdentifier field's value.
func (s *DeleteClusterSnapshotMessage) SetSnapshotIdentifier(v string) *DeleteClusterSnapshotMessage
SetSnapshotIdentifier sets the SnapshotIdentifier field's value.
func (s DeleteClusterSnapshotMessage) String() string
String returns the string representation
func (s *DeleteClusterSnapshotMessage) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteClusterSnapshotOutput struct { // Describes a snapshot. Snapshot *Snapshot `type:"structure"` // contains filtered or unexported fields }
func (s DeleteClusterSnapshotOutput) GoString() string
GoString returns the string representation
func (s *DeleteClusterSnapshotOutput) SetSnapshot(v *Snapshot) *DeleteClusterSnapshotOutput
SetSnapshot sets the Snapshot field's value.
func (s DeleteClusterSnapshotOutput) String() string
String returns the string representation
type DeleteClusterSubnetGroupInput struct { // The name of the cluster subnet group name to be deleted. // // ClusterSubnetGroupName is a required field ClusterSubnetGroupName *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s DeleteClusterSubnetGroupInput) GoString() string
GoString returns the string representation
func (s *DeleteClusterSubnetGroupInput) SetClusterSubnetGroupName(v string) *DeleteClusterSubnetGroupInput
SetClusterSubnetGroupName sets the ClusterSubnetGroupName field's value.
func (s DeleteClusterSubnetGroupInput) String() string
String returns the string representation
func (s *DeleteClusterSubnetGroupInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteClusterSubnetGroupOutput struct {
// contains filtered or unexported fields
}
func (s DeleteClusterSubnetGroupOutput) GoString() string
GoString returns the string representation
func (s DeleteClusterSubnetGroupOutput) String() string
String returns the string representation
type DeleteEventSubscriptionInput struct { // The name of the Amazon Redshift event notification subscription to be deleted. // // SubscriptionName is a required field SubscriptionName *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s DeleteEventSubscriptionInput) GoString() string
GoString returns the string representation
func (s *DeleteEventSubscriptionInput) SetSubscriptionName(v string) *DeleteEventSubscriptionInput
SetSubscriptionName sets the SubscriptionName field's value.
func (s DeleteEventSubscriptionInput) String() string
String returns the string representation
func (s *DeleteEventSubscriptionInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteEventSubscriptionOutput struct {
// contains filtered or unexported fields
}
func (s DeleteEventSubscriptionOutput) GoString() string
GoString returns the string representation
func (s DeleteEventSubscriptionOutput) String() string
String returns the string representation
type DeleteHsmClientCertificateInput struct { // The identifier of the HSM client certificate to be deleted. // // HsmClientCertificateIdentifier is a required field HsmClientCertificateIdentifier *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s DeleteHsmClientCertificateInput) GoString() string
GoString returns the string representation
func (s *DeleteHsmClientCertificateInput) SetHsmClientCertificateIdentifier(v string) *DeleteHsmClientCertificateInput
SetHsmClientCertificateIdentifier sets the HsmClientCertificateIdentifier field's value.
func (s DeleteHsmClientCertificateInput) String() string
String returns the string representation
func (s *DeleteHsmClientCertificateInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteHsmClientCertificateOutput struct {
// contains filtered or unexported fields
}
func (s DeleteHsmClientCertificateOutput) GoString() string
GoString returns the string representation
func (s DeleteHsmClientCertificateOutput) String() string
String returns the string representation
type DeleteHsmConfigurationInput struct { // The identifier of the Amazon Redshift HSM configuration to be deleted. // // HsmConfigurationIdentifier is a required field HsmConfigurationIdentifier *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s DeleteHsmConfigurationInput) GoString() string
GoString returns the string representation
func (s *DeleteHsmConfigurationInput) SetHsmConfigurationIdentifier(v string) *DeleteHsmConfigurationInput
SetHsmConfigurationIdentifier sets the HsmConfigurationIdentifier field's value.
func (s DeleteHsmConfigurationInput) String() string
String returns the string representation
func (s *DeleteHsmConfigurationInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteHsmConfigurationOutput struct {
// contains filtered or unexported fields
}
func (s DeleteHsmConfigurationOutput) GoString() string
GoString returns the string representation
func (s DeleteHsmConfigurationOutput) String() string
String returns the string representation
type DeleteScheduledActionInput struct { // The name of the scheduled action to delete. // // ScheduledActionName is a required field ScheduledActionName *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s DeleteScheduledActionInput) GoString() string
GoString returns the string representation
func (s *DeleteScheduledActionInput) SetScheduledActionName(v string) *DeleteScheduledActionInput
SetScheduledActionName sets the ScheduledActionName field's value.
func (s DeleteScheduledActionInput) String() string
String returns the string representation
func (s *DeleteScheduledActionInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteScheduledActionOutput struct {
// contains filtered or unexported fields
}
func (s DeleteScheduledActionOutput) GoString() string
GoString returns the string representation
func (s DeleteScheduledActionOutput) String() string
String returns the string representation
type DeleteSnapshotCopyGrantInput struct { // The name of the snapshot copy grant to delete. // // SnapshotCopyGrantName is a required field SnapshotCopyGrantName *string `type:"string" required:"true"` // contains filtered or unexported fields }
The result of the DeleteSnapshotCopyGrant action.
func (s DeleteSnapshotCopyGrantInput) GoString() string
GoString returns the string representation
func (s *DeleteSnapshotCopyGrantInput) SetSnapshotCopyGrantName(v string) *DeleteSnapshotCopyGrantInput
SetSnapshotCopyGrantName sets the SnapshotCopyGrantName field's value.
func (s DeleteSnapshotCopyGrantInput) String() string
String returns the string representation
func (s *DeleteSnapshotCopyGrantInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteSnapshotCopyGrantOutput struct {
// contains filtered or unexported fields
}
func (s DeleteSnapshotCopyGrantOutput) GoString() string
GoString returns the string representation
func (s DeleteSnapshotCopyGrantOutput) String() string
String returns the string representation
type DeleteSnapshotScheduleInput struct { // A unique identifier of the snapshot schedule to delete. // // ScheduleIdentifier is a required field ScheduleIdentifier *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s DeleteSnapshotScheduleInput) GoString() string
GoString returns the string representation
func (s *DeleteSnapshotScheduleInput) SetScheduleIdentifier(v string) *DeleteSnapshotScheduleInput
SetScheduleIdentifier sets the ScheduleIdentifier field's value.
func (s DeleteSnapshotScheduleInput) String() string
String returns the string representation
func (s *DeleteSnapshotScheduleInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteSnapshotScheduleOutput struct {
// contains filtered or unexported fields
}
func (s DeleteSnapshotScheduleOutput) GoString() string
GoString returns the string representation
func (s DeleteSnapshotScheduleOutput) String() string
String returns the string representation
type DeleteTagsInput struct { // The Amazon Resource Name (ARN) from which you want to remove the tag or tags. // For example, arn:aws:redshift:us-east-2:123456789:cluster:t1. // // ResourceName is a required field ResourceName *string `type:"string" required:"true"` // The tag key that you want to delete. // // TagKeys is a required field TagKeys []*string `locationNameList:"TagKey" type:"list" required:"true"` // contains filtered or unexported fields }
Contains the output from the DeleteTags action.
func (s DeleteTagsInput) GoString() string
GoString returns the string representation
func (s *DeleteTagsInput) SetResourceName(v string) *DeleteTagsInput
SetResourceName sets the ResourceName field's value.
func (s *DeleteTagsInput) SetTagKeys(v []*string) *DeleteTagsInput
SetTagKeys sets the TagKeys field's value.
func (s DeleteTagsInput) String() string
String returns the string representation
func (s *DeleteTagsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteTagsOutput struct {
// contains filtered or unexported fields
}
func (s DeleteTagsOutput) GoString() string
GoString returns the string representation
func (s DeleteTagsOutput) String() string
String returns the string representation
type DeleteUsageLimitInput struct { // The identifier of the usage limit to delete. // // UsageLimitId is a required field UsageLimitId *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s DeleteUsageLimitInput) GoString() string
GoString returns the string representation
func (s *DeleteUsageLimitInput) SetUsageLimitId(v string) *DeleteUsageLimitInput
SetUsageLimitId sets the UsageLimitId field's value.
func (s DeleteUsageLimitInput) String() string
String returns the string representation
func (s *DeleteUsageLimitInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteUsageLimitOutput struct {
// contains filtered or unexported fields
}
func (s DeleteUsageLimitOutput) GoString() string
GoString returns the string representation
func (s DeleteUsageLimitOutput) String() string
String returns the string representation
type DescribeAccountAttributesInput struct { // A list of attribute names. AttributeNames []*string `locationNameList:"AttributeName" type:"list"` // contains filtered or unexported fields }
func (s DescribeAccountAttributesInput) GoString() string
GoString returns the string representation
func (s *DescribeAccountAttributesInput) SetAttributeNames(v []*string) *DescribeAccountAttributesInput
SetAttributeNames sets the AttributeNames field's value.
func (s DescribeAccountAttributesInput) String() string
String returns the string representation
type DescribeAccountAttributesOutput struct { // A list of attributes assigned to an account. AccountAttributes []*AccountAttribute `locationNameList:"AccountAttribute" type:"list"` // contains filtered or unexported fields }
func (s DescribeAccountAttributesOutput) GoString() string
GoString returns the string representation
func (s *DescribeAccountAttributesOutput) SetAccountAttributes(v []*AccountAttribute) *DescribeAccountAttributesOutput
SetAccountAttributes sets the AccountAttributes field's value.
func (s DescribeAccountAttributesOutput) String() string
String returns the string representation
type DescribeClusterDbRevisionsInput struct { // A unique identifier for a cluster whose ClusterDbRevisions you are requesting. // This parameter is case sensitive. All clusters defined for an account are // returned by default. ClusterIdentifier *string `type:"string"` // An optional parameter that specifies the starting point for returning a set // of response records. When the results of a DescribeClusterDbRevisions request // exceed the value specified in MaxRecords, Amazon Redshift returns a value // in the marker field of the response. You can retrieve the next set of response // records by providing the returned marker value in the marker parameter and // retrying the request. // // Constraints: You can specify either the ClusterIdentifier parameter, or the // marker parameter, but not both. Marker *string `type:"string"` // The maximum number of response records to return in each call. If the number // of remaining response records exceeds the specified MaxRecords value, a value // is returned in the marker field of the response. You can retrieve the next // set of response records by providing the returned marker value in the marker // parameter and retrying the request. // // Default: 100 // // Constraints: minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // contains filtered or unexported fields }
func (s DescribeClusterDbRevisionsInput) GoString() string
GoString returns the string representation
func (s *DescribeClusterDbRevisionsInput) SetClusterIdentifier(v string) *DescribeClusterDbRevisionsInput
SetClusterIdentifier sets the ClusterIdentifier field's value.
func (s *DescribeClusterDbRevisionsInput) SetMarker(v string) *DescribeClusterDbRevisionsInput
SetMarker sets the Marker field's value.
func (s *DescribeClusterDbRevisionsInput) SetMaxRecords(v int64) *DescribeClusterDbRevisionsInput
SetMaxRecords sets the MaxRecords field's value.
func (s DescribeClusterDbRevisionsInput) String() string
String returns the string representation
type DescribeClusterDbRevisionsOutput struct { // A list of revisions. ClusterDbRevisions []*ClusterDbRevision `locationNameList:"ClusterDbRevision" type:"list"` // A string representing the starting point for the next set of revisions. If // a value is returned in a response, you can retrieve the next set of revisions // by providing the value in the marker parameter and retrying the command. // If the marker field is empty, all revisions have already been returned. Marker *string `type:"string"` // contains filtered or unexported fields }
func (s DescribeClusterDbRevisionsOutput) GoString() string
GoString returns the string representation
func (s *DescribeClusterDbRevisionsOutput) SetClusterDbRevisions(v []*ClusterDbRevision) *DescribeClusterDbRevisionsOutput
SetClusterDbRevisions sets the ClusterDbRevisions field's value.
func (s *DescribeClusterDbRevisionsOutput) SetMarker(v string) *DescribeClusterDbRevisionsOutput
SetMarker sets the Marker field's value.
func (s DescribeClusterDbRevisionsOutput) String() string
String returns the string representation
type DescribeClusterParameterGroupsInput struct { // An optional parameter that specifies the starting point to return a set of // response records. When the results of a DescribeClusterParameterGroups request // exceed the value specified in MaxRecords, AWS returns a value in the Marker // field of the response. You can retrieve the next set of response records // by providing the returned marker value in the Marker parameter and retrying // the request. Marker *string `type:"string"` // The maximum number of response records to return in each call. If the number // of remaining response records exceeds the specified MaxRecords value, a value // is returned in a marker field of the response. You can retrieve the next // set of records by retrying the command with the returned marker value. // // Default: 100 // // Constraints: minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // The name of a specific parameter group for which to return details. By default, // details about all parameter groups and the default parameter group are returned. ParameterGroupName *string `type:"string"` // A tag key or keys for which you want to return all matching cluster parameter // groups that are associated with the specified key or keys. For example, suppose // that you have parameter groups that are tagged with keys called owner and // environment. If you specify both of these tag keys in the request, Amazon // Redshift returns a response with the parameter groups that have either or // both of these tag keys associated with them. TagKeys []*string `locationNameList:"TagKey" type:"list"` // A tag value or values for which you want to return all matching cluster parameter // groups that are associated with the specified tag value or values. For example, // suppose that you have parameter groups that are tagged with values called // admin and test. If you specify both of these tag values in the request, Amazon // Redshift returns a response with the parameter groups that have either or // both of these tag values associated with them. TagValues []*string `locationNameList:"TagValue" type:"list"` // contains filtered or unexported fields }
func (s DescribeClusterParameterGroupsInput) GoString() string
GoString returns the string representation
func (s *DescribeClusterParameterGroupsInput) SetMarker(v string) *DescribeClusterParameterGroupsInput
SetMarker sets the Marker field's value.
func (s *DescribeClusterParameterGroupsInput) SetMaxRecords(v int64) *DescribeClusterParameterGroupsInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribeClusterParameterGroupsInput) SetParameterGroupName(v string) *DescribeClusterParameterGroupsInput
SetParameterGroupName sets the ParameterGroupName field's value.
func (s *DescribeClusterParameterGroupsInput) SetTagKeys(v []*string) *DescribeClusterParameterGroupsInput
SetTagKeys sets the TagKeys field's value.
func (s *DescribeClusterParameterGroupsInput) SetTagValues(v []*string) *DescribeClusterParameterGroupsInput
SetTagValues sets the TagValues field's value.
func (s DescribeClusterParameterGroupsInput) String() string
String returns the string representation
type DescribeClusterParameterGroupsOutput struct { // A value that indicates the starting point for the next set of response records // in a subsequent request. If a value is returned in a response, you can retrieve // the next set of records by providing this returned marker value in the Marker // parameter and retrying the command. If the Marker field is empty, all response // records have been retrieved for the request. Marker *string `type:"string"` // A list of ClusterParameterGroup instances. Each instance describes one cluster // parameter group. ParameterGroups []*ClusterParameterGroup `locationNameList:"ClusterParameterGroup" type:"list"` // contains filtered or unexported fields }
Contains the output from the DescribeClusterParameterGroups action.
func (s DescribeClusterParameterGroupsOutput) GoString() string
GoString returns the string representation
func (s *DescribeClusterParameterGroupsOutput) SetMarker(v string) *DescribeClusterParameterGroupsOutput
SetMarker sets the Marker field's value.
func (s *DescribeClusterParameterGroupsOutput) SetParameterGroups(v []*ClusterParameterGroup) *DescribeClusterParameterGroupsOutput
SetParameterGroups sets the ParameterGroups field's value.
func (s DescribeClusterParameterGroupsOutput) String() string
String returns the string representation
type DescribeClusterParametersInput struct { // An optional parameter that specifies the starting point to return a set of // response records. When the results of a DescribeClusterParameters request // exceed the value specified in MaxRecords, AWS returns a value in the Marker // field of the response. You can retrieve the next set of response records // by providing the returned marker value in the Marker parameter and retrying // the request. Marker *string `type:"string"` // The maximum number of response records to return in each call. If the number // of remaining response records exceeds the specified MaxRecords value, a value // is returned in a marker field of the response. You can retrieve the next // set of records by retrying the command with the returned marker value. // // Default: 100 // // Constraints: minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // The name of a cluster parameter group for which to return details. // // ParameterGroupName is a required field ParameterGroupName *string `type:"string" required:"true"` // The parameter types to return. Specify user to show parameters that are different // form the default. Similarly, specify engine-default to show parameters that // are the same as the default parameter group. // // Default: All parameter types returned. // // Valid Values: user | engine-default Source *string `type:"string"` // contains filtered or unexported fields }
func (s DescribeClusterParametersInput) GoString() string
GoString returns the string representation
func (s *DescribeClusterParametersInput) SetMarker(v string) *DescribeClusterParametersInput
SetMarker sets the Marker field's value.
func (s *DescribeClusterParametersInput) SetMaxRecords(v int64) *DescribeClusterParametersInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribeClusterParametersInput) SetParameterGroupName(v string) *DescribeClusterParametersInput
SetParameterGroupName sets the ParameterGroupName field's value.
func (s *DescribeClusterParametersInput) SetSource(v string) *DescribeClusterParametersInput
SetSource sets the Source field's value.
func (s DescribeClusterParametersInput) String() string
String returns the string representation
func (s *DescribeClusterParametersInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeClusterParametersOutput struct { // A value that indicates the starting point for the next set of response records // in a subsequent request. If a value is returned in a response, you can retrieve // the next set of records by providing this returned marker value in the Marker // parameter and retrying the command. If the Marker field is empty, all response // records have been retrieved for the request. Marker *string `type:"string"` // A list of Parameter instances. Each instance lists the parameters of one // cluster parameter group. Parameters []*Parameter `locationNameList:"Parameter" type:"list"` // contains filtered or unexported fields }
Contains the output from the DescribeClusterParameters action.
func (s DescribeClusterParametersOutput) GoString() string
GoString returns the string representation
func (s *DescribeClusterParametersOutput) SetMarker(v string) *DescribeClusterParametersOutput
SetMarker sets the Marker field's value.
func (s *DescribeClusterParametersOutput) SetParameters(v []*Parameter) *DescribeClusterParametersOutput
SetParameters sets the Parameters field's value.
func (s DescribeClusterParametersOutput) String() string
String returns the string representation
type DescribeClusterSecurityGroupsInput struct { // The name of a cluster security group for which you are requesting details. // You can specify either the Marker parameter or a ClusterSecurityGroupName // parameter, but not both. // // Example: securitygroup1 ClusterSecurityGroupName *string `type:"string"` // An optional parameter that specifies the starting point to return a set of // response records. When the results of a DescribeClusterSecurityGroups request // exceed the value specified in MaxRecords, AWS returns a value in the Marker // field of the response. You can retrieve the next set of response records // by providing the returned marker value in the Marker parameter and retrying // the request. // // Constraints: You can specify either the ClusterSecurityGroupName parameter // or the Marker parameter, but not both. Marker *string `type:"string"` // The maximum number of response records to return in each call. If the number // of remaining response records exceeds the specified MaxRecords value, a value // is returned in a marker field of the response. You can retrieve the next // set of records by retrying the command with the returned marker value. // // Default: 100 // // Constraints: minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // A tag key or keys for which you want to return all matching cluster security // groups that are associated with the specified key or keys. For example, suppose // that you have security groups that are tagged with keys called owner and // environment. If you specify both of these tag keys in the request, Amazon // Redshift returns a response with the security groups that have either or // both of these tag keys associated with them. TagKeys []*string `locationNameList:"TagKey" type:"list"` // A tag value or values for which you want to return all matching cluster security // groups that are associated with the specified tag value or values. For example, // suppose that you have security groups that are tagged with values called // admin and test. If you specify both of these tag values in the request, Amazon // Redshift returns a response with the security groups that have either or // both of these tag values associated with them. TagValues []*string `locationNameList:"TagValue" type:"list"` // contains filtered or unexported fields }
func (s DescribeClusterSecurityGroupsInput) GoString() string
GoString returns the string representation
func (s *DescribeClusterSecurityGroupsInput) SetClusterSecurityGroupName(v string) *DescribeClusterSecurityGroupsInput
SetClusterSecurityGroupName sets the ClusterSecurityGroupName field's value.
func (s *DescribeClusterSecurityGroupsInput) SetMarker(v string) *DescribeClusterSecurityGroupsInput
SetMarker sets the Marker field's value.
func (s *DescribeClusterSecurityGroupsInput) SetMaxRecords(v int64) *DescribeClusterSecurityGroupsInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribeClusterSecurityGroupsInput) SetTagKeys(v []*string) *DescribeClusterSecurityGroupsInput
SetTagKeys sets the TagKeys field's value.
func (s *DescribeClusterSecurityGroupsInput) SetTagValues(v []*string) *DescribeClusterSecurityGroupsInput
SetTagValues sets the TagValues field's value.
func (s DescribeClusterSecurityGroupsInput) String() string
String returns the string representation
type DescribeClusterSecurityGroupsOutput struct { // A list of ClusterSecurityGroup instances. ClusterSecurityGroups []*ClusterSecurityGroup `locationNameList:"ClusterSecurityGroup" type:"list"` // A value that indicates the starting point for the next set of response records // in a subsequent request. If a value is returned in a response, you can retrieve // the next set of records by providing this returned marker value in the Marker // parameter and retrying the command. If the Marker field is empty, all response // records have been retrieved for the request. Marker *string `type:"string"` // contains filtered or unexported fields }
func (s DescribeClusterSecurityGroupsOutput) GoString() string
GoString returns the string representation
func (s *DescribeClusterSecurityGroupsOutput) SetClusterSecurityGroups(v []*ClusterSecurityGroup) *DescribeClusterSecurityGroupsOutput
SetClusterSecurityGroups sets the ClusterSecurityGroups field's value.
func (s *DescribeClusterSecurityGroupsOutput) SetMarker(v string) *DescribeClusterSecurityGroupsOutput
SetMarker sets the Marker field's value.
func (s DescribeClusterSecurityGroupsOutput) String() string
String returns the string representation
type DescribeClusterSnapshotsInput struct { // A value that indicates whether to return snapshots only for an existing cluster. // You can perform table-level restore only by using a snapshot of an existing // cluster, that is, a cluster that has not been deleted. Values for this parameter // work as follows: // // * If ClusterExists is set to true, ClusterIdentifier is required. // // * If ClusterExists is set to false and ClusterIdentifier isn't specified, // all snapshots associated with deleted clusters (orphaned snapshots) are // returned. // // * If ClusterExists is set to false and ClusterIdentifier is specified // for a deleted cluster, snapshots associated with that cluster are returned. // // * If ClusterExists is set to false and ClusterIdentifier is specified // for an existing cluster, no snapshots are returned. ClusterExists *bool `type:"boolean"` // The identifier of the cluster which generated the requested snapshots. ClusterIdentifier *string `type:"string"` // A time value that requests only snapshots created at or before the specified // time. The time value is specified in ISO 8601 format. For more information // about ISO 8601, go to the ISO8601 Wikipedia page. (http://en.wikipedia.org/wiki/ISO_8601) // // Example: 2012-07-16T18:00:00Z EndTime *time.Time `type:"timestamp"` // An optional parameter that specifies the starting point to return a set of // response records. When the results of a DescribeClusterSnapshots request // exceed the value specified in MaxRecords, AWS returns a value in the Marker // field of the response. You can retrieve the next set of response records // by providing the returned marker value in the Marker parameter and retrying // the request. Marker *string `type:"string"` // The maximum number of response records to return in each call. If the number // of remaining response records exceeds the specified MaxRecords value, a value // is returned in a marker field of the response. You can retrieve the next // set of records by retrying the command with the returned marker value. // // Default: 100 // // Constraints: minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // The AWS customer account used to create or copy the snapshot. Use this field // to filter the results to snapshots owned by a particular account. To describe // snapshots you own, either specify your AWS customer account, or do not specify // the parameter. OwnerAccount *string `type:"string"` // The snapshot identifier of the snapshot about which to return information. SnapshotIdentifier *string `type:"string"` // The type of snapshots for which you are requesting information. By default, // snapshots of all types are returned. // // Valid Values: automated | manual SnapshotType *string `type:"string"` SortingEntities []*SnapshotSortingEntity `locationNameList:"SnapshotSortingEntity" type:"list"` // A value that requests only snapshots created at or after the specified time. // The time value is specified in ISO 8601 format. For more information about // ISO 8601, go to the ISO8601 Wikipedia page. (http://en.wikipedia.org/wiki/ISO_8601) // // Example: 2012-07-16T18:00:00Z StartTime *time.Time `type:"timestamp"` // A tag key or keys for which you want to return all matching cluster snapshots // that are associated with the specified key or keys. For example, suppose // that you have snapshots that are tagged with keys called owner and environment. // If you specify both of these tag keys in the request, Amazon Redshift returns // a response with the snapshots that have either or both of these tag keys // associated with them. TagKeys []*string `locationNameList:"TagKey" type:"list"` // A tag value or values for which you want to return all matching cluster snapshots // that are associated with the specified tag value or values. For example, // suppose that you have snapshots that are tagged with values called admin // and test. If you specify both of these tag values in the request, Amazon // Redshift returns a response with the snapshots that have either or both of // these tag values associated with them. TagValues []*string `locationNameList:"TagValue" type:"list"` // contains filtered or unexported fields }
func (s DescribeClusterSnapshotsInput) GoString() string
GoString returns the string representation
func (s *DescribeClusterSnapshotsInput) SetClusterExists(v bool) *DescribeClusterSnapshotsInput
SetClusterExists sets the ClusterExists field's value.
func (s *DescribeClusterSnapshotsInput) SetClusterIdentifier(v string) *DescribeClusterSnapshotsInput
SetClusterIdentifier sets the ClusterIdentifier field's value.
func (s *DescribeClusterSnapshotsInput) SetEndTime(v time.Time) *DescribeClusterSnapshotsInput
SetEndTime sets the EndTime field's value.
func (s *DescribeClusterSnapshotsInput) SetMarker(v string) *DescribeClusterSnapshotsInput
SetMarker sets the Marker field's value.
func (s *DescribeClusterSnapshotsInput) SetMaxRecords(v int64) *DescribeClusterSnapshotsInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribeClusterSnapshotsInput) SetOwnerAccount(v string) *DescribeClusterSnapshotsInput
SetOwnerAccount sets the OwnerAccount field's value.
func (s *DescribeClusterSnapshotsInput) SetSnapshotIdentifier(v string) *DescribeClusterSnapshotsInput
SetSnapshotIdentifier sets the SnapshotIdentifier field's value.
func (s *DescribeClusterSnapshotsInput) SetSnapshotType(v string) *DescribeClusterSnapshotsInput
SetSnapshotType sets the SnapshotType field's value.
func (s *DescribeClusterSnapshotsInput) SetSortingEntities(v []*SnapshotSortingEntity) *DescribeClusterSnapshotsInput
SetSortingEntities sets the SortingEntities field's value.
func (s *DescribeClusterSnapshotsInput) SetStartTime(v time.Time) *DescribeClusterSnapshotsInput
SetStartTime sets the StartTime field's value.
func (s *DescribeClusterSnapshotsInput) SetTagKeys(v []*string) *DescribeClusterSnapshotsInput
SetTagKeys sets the TagKeys field's value.
func (s *DescribeClusterSnapshotsInput) SetTagValues(v []*string) *DescribeClusterSnapshotsInput
SetTagValues sets the TagValues field's value.
func (s DescribeClusterSnapshotsInput) String() string
String returns the string representation
func (s *DescribeClusterSnapshotsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeClusterSnapshotsOutput struct { // A value that indicates the starting point for the next set of response records // in a subsequent request. If a value is returned in a response, you can retrieve // the next set of records by providing this returned marker value in the Marker // parameter and retrying the command. If the Marker field is empty, all response // records have been retrieved for the request. Marker *string `type:"string"` // A list of Snapshot instances. Snapshots []*Snapshot `locationNameList:"Snapshot" type:"list"` // contains filtered or unexported fields }
Contains the output from the DescribeClusterSnapshots action.
func (s DescribeClusterSnapshotsOutput) GoString() string
GoString returns the string representation
func (s *DescribeClusterSnapshotsOutput) SetMarker(v string) *DescribeClusterSnapshotsOutput
SetMarker sets the Marker field's value.
func (s *DescribeClusterSnapshotsOutput) SetSnapshots(v []*Snapshot) *DescribeClusterSnapshotsOutput
SetSnapshots sets the Snapshots field's value.
func (s DescribeClusterSnapshotsOutput) String() string
String returns the string representation
type DescribeClusterSubnetGroupsInput struct { // The name of the cluster subnet group for which information is requested. ClusterSubnetGroupName *string `type:"string"` // An optional parameter that specifies the starting point to return a set of // response records. When the results of a DescribeClusterSubnetGroups request // exceed the value specified in MaxRecords, AWS returns a value in the Marker // field of the response. You can retrieve the next set of response records // by providing the returned marker value in the Marker parameter and retrying // the request. Marker *string `type:"string"` // The maximum number of response records to return in each call. If the number // of remaining response records exceeds the specified MaxRecords value, a value // is returned in a marker field of the response. You can retrieve the next // set of records by retrying the command with the returned marker value. // // Default: 100 // // Constraints: minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // A tag key or keys for which you want to return all matching cluster subnet // groups that are associated with the specified key or keys. For example, suppose // that you have subnet groups that are tagged with keys called owner and environment. // If you specify both of these tag keys in the request, Amazon Redshift returns // a response with the subnet groups that have either or both of these tag keys // associated with them. TagKeys []*string `locationNameList:"TagKey" type:"list"` // A tag value or values for which you want to return all matching cluster subnet // groups that are associated with the specified tag value or values. For example, // suppose that you have subnet groups that are tagged with values called admin // and test. If you specify both of these tag values in the request, Amazon // Redshift returns a response with the subnet groups that have either or both // of these tag values associated with them. TagValues []*string `locationNameList:"TagValue" type:"list"` // contains filtered or unexported fields }
func (s DescribeClusterSubnetGroupsInput) GoString() string
GoString returns the string representation
func (s *DescribeClusterSubnetGroupsInput) SetClusterSubnetGroupName(v string) *DescribeClusterSubnetGroupsInput
SetClusterSubnetGroupName sets the ClusterSubnetGroupName field's value.
func (s *DescribeClusterSubnetGroupsInput) SetMarker(v string) *DescribeClusterSubnetGroupsInput
SetMarker sets the Marker field's value.
func (s *DescribeClusterSubnetGroupsInput) SetMaxRecords(v int64) *DescribeClusterSubnetGroupsInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribeClusterSubnetGroupsInput) SetTagKeys(v []*string) *DescribeClusterSubnetGroupsInput
SetTagKeys sets the TagKeys field's value.
func (s *DescribeClusterSubnetGroupsInput) SetTagValues(v []*string) *DescribeClusterSubnetGroupsInput
SetTagValues sets the TagValues field's value.
func (s DescribeClusterSubnetGroupsInput) String() string
String returns the string representation
type DescribeClusterSubnetGroupsOutput struct { // A list of ClusterSubnetGroup instances. ClusterSubnetGroups []*ClusterSubnetGroup `locationNameList:"ClusterSubnetGroup" type:"list"` // A value that indicates the starting point for the next set of response records // in a subsequent request. If a value is returned in a response, you can retrieve // the next set of records by providing this returned marker value in the Marker // parameter and retrying the command. If the Marker field is empty, all response // records have been retrieved for the request. Marker *string `type:"string"` // contains filtered or unexported fields }
Contains the output from the DescribeClusterSubnetGroups action.
func (s DescribeClusterSubnetGroupsOutput) GoString() string
GoString returns the string representation
func (s *DescribeClusterSubnetGroupsOutput) SetClusterSubnetGroups(v []*ClusterSubnetGroup) *DescribeClusterSubnetGroupsOutput
SetClusterSubnetGroups sets the ClusterSubnetGroups field's value.
func (s *DescribeClusterSubnetGroupsOutput) SetMarker(v string) *DescribeClusterSubnetGroupsOutput
SetMarker sets the Marker field's value.
func (s DescribeClusterSubnetGroupsOutput) String() string
String returns the string representation
type DescribeClusterTracksInput struct { // The name of the maintenance track. MaintenanceTrackName *string `type:"string"` // An optional parameter that specifies the starting point to return a set of // response records. When the results of a DescribeClusterTracks request exceed // the value specified in MaxRecords, Amazon Redshift returns a value in the // Marker field of the response. You can retrieve the next set of response records // by providing the returned marker value in the Marker parameter and retrying // the request. Marker *string `type:"string"` // An integer value for the maximum number of maintenance tracks to return. MaxRecords *int64 `type:"integer"` // contains filtered or unexported fields }
func (s DescribeClusterTracksInput) GoString() string
GoString returns the string representation
func (s *DescribeClusterTracksInput) SetMaintenanceTrackName(v string) *DescribeClusterTracksInput
SetMaintenanceTrackName sets the MaintenanceTrackName field's value.
func (s *DescribeClusterTracksInput) SetMarker(v string) *DescribeClusterTracksInput
SetMarker sets the Marker field's value.
func (s *DescribeClusterTracksInput) SetMaxRecords(v int64) *DescribeClusterTracksInput
SetMaxRecords sets the MaxRecords field's value.
func (s DescribeClusterTracksInput) String() string
String returns the string representation
type DescribeClusterTracksOutput struct { // A list of maintenance tracks output by the DescribeClusterTracks operation. MaintenanceTracks []*MaintenanceTrack `locationNameList:"MaintenanceTrack" type:"list"` // The starting point to return a set of response tracklist records. You can // retrieve the next set of response records by providing the returned marker // value in the Marker parameter and retrying the request. Marker *string `type:"string"` // contains filtered or unexported fields }
func (s DescribeClusterTracksOutput) GoString() string
GoString returns the string representation
func (s *DescribeClusterTracksOutput) SetMaintenanceTracks(v []*MaintenanceTrack) *DescribeClusterTracksOutput
SetMaintenanceTracks sets the MaintenanceTracks field's value.
func (s *DescribeClusterTracksOutput) SetMarker(v string) *DescribeClusterTracksOutput
SetMarker sets the Marker field's value.
func (s DescribeClusterTracksOutput) String() string
String returns the string representation
type DescribeClusterVersionsInput struct { // The name of a specific cluster parameter group family to return details for. // // Constraints: // // * Must be 1 to 255 alphanumeric characters // // * First character must be a letter // // * Cannot end with a hyphen or contain two consecutive hyphens ClusterParameterGroupFamily *string `type:"string"` // The specific cluster version to return. // // Example: 1.0 ClusterVersion *string `type:"string"` // An optional parameter that specifies the starting point to return a set of // response records. When the results of a DescribeClusterVersions request exceed // the value specified in MaxRecords, AWS returns a value in the Marker field // of the response. You can retrieve the next set of response records by providing // the returned marker value in the Marker parameter and retrying the request. Marker *string `type:"string"` // The maximum number of response records to return in each call. If the number // of remaining response records exceeds the specified MaxRecords value, a value // is returned in a marker field of the response. You can retrieve the next // set of records by retrying the command with the returned marker value. // // Default: 100 // // Constraints: minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // contains filtered or unexported fields }
func (s DescribeClusterVersionsInput) GoString() string
GoString returns the string representation
func (s *DescribeClusterVersionsInput) SetClusterParameterGroupFamily(v string) *DescribeClusterVersionsInput
SetClusterParameterGroupFamily sets the ClusterParameterGroupFamily field's value.
func (s *DescribeClusterVersionsInput) SetClusterVersion(v string) *DescribeClusterVersionsInput
SetClusterVersion sets the ClusterVersion field's value.
func (s *DescribeClusterVersionsInput) SetMarker(v string) *DescribeClusterVersionsInput
SetMarker sets the Marker field's value.
func (s *DescribeClusterVersionsInput) SetMaxRecords(v int64) *DescribeClusterVersionsInput
SetMaxRecords sets the MaxRecords field's value.
func (s DescribeClusterVersionsInput) String() string
String returns the string representation
type DescribeClusterVersionsOutput struct { // A list of Version elements. ClusterVersions []*ClusterVersion `locationNameList:"ClusterVersion" type:"list"` // A value that indicates the starting point for the next set of response records // in a subsequent request. If a value is returned in a response, you can retrieve // the next set of records by providing this returned marker value in the Marker // parameter and retrying the command. If the Marker field is empty, all response // records have been retrieved for the request. Marker *string `type:"string"` // contains filtered or unexported fields }
Contains the output from the DescribeClusterVersions action.
func (s DescribeClusterVersionsOutput) GoString() string
GoString returns the string representation
func (s *DescribeClusterVersionsOutput) SetClusterVersions(v []*ClusterVersion) *DescribeClusterVersionsOutput
SetClusterVersions sets the ClusterVersions field's value.
func (s *DescribeClusterVersionsOutput) SetMarker(v string) *DescribeClusterVersionsOutput
SetMarker sets the Marker field's value.
func (s DescribeClusterVersionsOutput) String() string
String returns the string representation
type DescribeClustersInput struct { // The unique identifier of a cluster whose properties you are requesting. This // parameter is case sensitive. // // The default is that all clusters defined for an account are returned. ClusterIdentifier *string `type:"string"` // An optional parameter that specifies the starting point to return a set of // response records. When the results of a DescribeClusters request exceed the // value specified in MaxRecords, AWS returns a value in the Marker field of // the response. You can retrieve the next set of response records by providing // the returned marker value in the Marker parameter and retrying the request. // // Constraints: You can specify either the ClusterIdentifier parameter or the // Marker parameter, but not both. Marker *string `type:"string"` // The maximum number of response records to return in each call. If the number // of remaining response records exceeds the specified MaxRecords value, a value // is returned in a marker field of the response. You can retrieve the next // set of records by retrying the command with the returned marker value. // // Default: 100 // // Constraints: minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // A tag key or keys for which you want to return all matching clusters that // are associated with the specified key or keys. For example, suppose that // you have clusters that are tagged with keys called owner and environment. // If you specify both of these tag keys in the request, Amazon Redshift returns // a response with the clusters that have either or both of these tag keys associated // with them. TagKeys []*string `locationNameList:"TagKey" type:"list"` // A tag value or values for which you want to return all matching clusters // that are associated with the specified tag value or values. For example, // suppose that you have clusters that are tagged with values called admin and // test. If you specify both of these tag values in the request, Amazon Redshift // returns a response with the clusters that have either or both of these tag // values associated with them. TagValues []*string `locationNameList:"TagValue" type:"list"` // contains filtered or unexported fields }
func (s DescribeClustersInput) GoString() string
GoString returns the string representation
func (s *DescribeClustersInput) SetClusterIdentifier(v string) *DescribeClustersInput
SetClusterIdentifier sets the ClusterIdentifier field's value.
func (s *DescribeClustersInput) SetMarker(v string) *DescribeClustersInput
SetMarker sets the Marker field's value.
func (s *DescribeClustersInput) SetMaxRecords(v int64) *DescribeClustersInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribeClustersInput) SetTagKeys(v []*string) *DescribeClustersInput
SetTagKeys sets the TagKeys field's value.
func (s *DescribeClustersInput) SetTagValues(v []*string) *DescribeClustersInput
SetTagValues sets the TagValues field's value.
func (s DescribeClustersInput) String() string
String returns the string representation
type DescribeClustersOutput struct { // A list of Cluster objects, where each object describes one cluster. Clusters []*Cluster `locationNameList:"Cluster" type:"list"` // A value that indicates the starting point for the next set of response records // in a subsequent request. If a value is returned in a response, you can retrieve // the next set of records by providing this returned marker value in the Marker // parameter and retrying the command. If the Marker field is empty, all response // records have been retrieved for the request. Marker *string `type:"string"` // contains filtered or unexported fields }
Contains the output from the DescribeClusters action.
func (s DescribeClustersOutput) GoString() string
GoString returns the string representation
func (s *DescribeClustersOutput) SetClusters(v []*Cluster) *DescribeClustersOutput
SetClusters sets the Clusters field's value.
func (s *DescribeClustersOutput) SetMarker(v string) *DescribeClustersOutput
SetMarker sets the Marker field's value.
func (s DescribeClustersOutput) String() string
String returns the string representation
type DescribeDefaultClusterParametersInput struct { // An optional parameter that specifies the starting point to return a set of // response records. When the results of a DescribeDefaultClusterParameters // request exceed the value specified in MaxRecords, AWS returns a value in // the Marker field of the response. You can retrieve the next set of response // records by providing the returned marker value in the Marker parameter and // retrying the request. Marker *string `type:"string"` // The maximum number of response records to return in each call. If the number // of remaining response records exceeds the specified MaxRecords value, a value // is returned in a marker field of the response. You can retrieve the next // set of records by retrying the command with the returned marker value. // // Default: 100 // // Constraints: minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // The name of the cluster parameter group family. // // ParameterGroupFamily is a required field ParameterGroupFamily *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s DescribeDefaultClusterParametersInput) GoString() string
GoString returns the string representation
func (s *DescribeDefaultClusterParametersInput) SetMarker(v string) *DescribeDefaultClusterParametersInput
SetMarker sets the Marker field's value.
func (s *DescribeDefaultClusterParametersInput) SetMaxRecords(v int64) *DescribeDefaultClusterParametersInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribeDefaultClusterParametersInput) SetParameterGroupFamily(v string) *DescribeDefaultClusterParametersInput
SetParameterGroupFamily sets the ParameterGroupFamily field's value.
func (s DescribeDefaultClusterParametersInput) String() string
String returns the string representation
func (s *DescribeDefaultClusterParametersInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeDefaultClusterParametersOutput struct { // Describes the default cluster parameters for a parameter group family. DefaultClusterParameters *DefaultClusterParameters `type:"structure"` // contains filtered or unexported fields }
func (s DescribeDefaultClusterParametersOutput) GoString() string
GoString returns the string representation
func (s *DescribeDefaultClusterParametersOutput) SetDefaultClusterParameters(v *DefaultClusterParameters) *DescribeDefaultClusterParametersOutput
SetDefaultClusterParameters sets the DefaultClusterParameters field's value.
func (s DescribeDefaultClusterParametersOutput) String() string
String returns the string representation
type DescribeEventCategoriesInput struct { // The source type, such as cluster or parameter group, to which the described // event categories apply. // // Valid values: cluster, cluster-snapshot, cluster-parameter-group, cluster-security-group, // and scheduled-action. SourceType *string `type:"string"` // contains filtered or unexported fields }
func (s DescribeEventCategoriesInput) GoString() string
GoString returns the string representation
func (s *DescribeEventCategoriesInput) SetSourceType(v string) *DescribeEventCategoriesInput
SetSourceType sets the SourceType field's value.
func (s DescribeEventCategoriesInput) String() string
String returns the string representation
type DescribeEventCategoriesOutput struct { // A list of event categories descriptions. EventCategoriesMapList []*EventCategoriesMap `locationNameList:"EventCategoriesMap" type:"list"` // contains filtered or unexported fields }
func (s DescribeEventCategoriesOutput) GoString() string
GoString returns the string representation
func (s *DescribeEventCategoriesOutput) SetEventCategoriesMapList(v []*EventCategoriesMap) *DescribeEventCategoriesOutput
SetEventCategoriesMapList sets the EventCategoriesMapList field's value.
func (s DescribeEventCategoriesOutput) String() string
String returns the string representation
type DescribeEventSubscriptionsInput struct { // An optional parameter that specifies the starting point to return a set of // response records. When the results of a DescribeEventSubscriptions request // exceed the value specified in MaxRecords, AWS returns a value in the Marker // field of the response. You can retrieve the next set of response records // by providing the returned marker value in the Marker parameter and retrying // the request. Marker *string `type:"string"` // The maximum number of response records to return in each call. If the number // of remaining response records exceeds the specified MaxRecords value, a value // is returned in a marker field of the response. You can retrieve the next // set of records by retrying the command with the returned marker value. // // Default: 100 // // Constraints: minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // The name of the Amazon Redshift event notification subscription to be described. SubscriptionName *string `type:"string"` // A tag key or keys for which you want to return all matching event notification // subscriptions that are associated with the specified key or keys. For example, // suppose that you have subscriptions that are tagged with keys called owner // and environment. If you specify both of these tag keys in the request, Amazon // Redshift returns a response with the subscriptions that have either or both // of these tag keys associated with them. TagKeys []*string `locationNameList:"TagKey" type:"list"` // A tag value or values for which you want to return all matching event notification // subscriptions that are associated with the specified tag value or values. // For example, suppose that you have subscriptions that are tagged with values // called admin and test. If you specify both of these tag values in the request, // Amazon Redshift returns a response with the subscriptions that have either // or both of these tag values associated with them. TagValues []*string `locationNameList:"TagValue" type:"list"` // contains filtered or unexported fields }
func (s DescribeEventSubscriptionsInput) GoString() string
GoString returns the string representation
func (s *DescribeEventSubscriptionsInput) SetMarker(v string) *DescribeEventSubscriptionsInput
SetMarker sets the Marker field's value.
func (s *DescribeEventSubscriptionsInput) SetMaxRecords(v int64) *DescribeEventSubscriptionsInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribeEventSubscriptionsInput) SetSubscriptionName(v string) *DescribeEventSubscriptionsInput
SetSubscriptionName sets the SubscriptionName field's value.
func (s *DescribeEventSubscriptionsInput) SetTagKeys(v []*string) *DescribeEventSubscriptionsInput
SetTagKeys sets the TagKeys field's value.
func (s *DescribeEventSubscriptionsInput) SetTagValues(v []*string) *DescribeEventSubscriptionsInput
SetTagValues sets the TagValues field's value.
func (s DescribeEventSubscriptionsInput) String() string
String returns the string representation
type DescribeEventSubscriptionsOutput struct { // A list of event subscriptions. EventSubscriptionsList []*EventSubscription `locationNameList:"EventSubscription" type:"list"` // A value that indicates the starting point for the next set of response records // in a subsequent request. If a value is returned in a response, you can retrieve // the next set of records by providing this returned marker value in the Marker // parameter and retrying the command. If the Marker field is empty, all response // records have been retrieved for the request. Marker *string `type:"string"` // contains filtered or unexported fields }
func (s DescribeEventSubscriptionsOutput) GoString() string
GoString returns the string representation
func (s *DescribeEventSubscriptionsOutput) SetEventSubscriptionsList(v []*EventSubscription) *DescribeEventSubscriptionsOutput
SetEventSubscriptionsList sets the EventSubscriptionsList field's value.
func (s *DescribeEventSubscriptionsOutput) SetMarker(v string) *DescribeEventSubscriptionsOutput
SetMarker sets the Marker field's value.
func (s DescribeEventSubscriptionsOutput) String() string
String returns the string representation
type DescribeEventsInput struct { // The number of minutes prior to the time of the request for which to retrieve // events. For example, if the request is sent at 18:00 and you specify a duration // of 60, then only events which have occurred after 17:00 will be returned. // // Default: 60 Duration *int64 `type:"integer"` // The end of the time interval for which to retrieve events, specified in ISO // 8601 format. For more information about ISO 8601, go to the ISO8601 Wikipedia // page. (http://en.wikipedia.org/wiki/ISO_8601) // // Example: 2009-07-08T18:00Z EndTime *time.Time `type:"timestamp"` // An optional parameter that specifies the starting point to return a set of // response records. When the results of a DescribeEvents request exceed the // value specified in MaxRecords, AWS returns a value in the Marker field of // the response. You can retrieve the next set of response records by providing // the returned marker value in the Marker parameter and retrying the request. Marker *string `type:"string"` // The maximum number of response records to return in each call. If the number // of remaining response records exceeds the specified MaxRecords value, a value // is returned in a marker field of the response. You can retrieve the next // set of records by retrying the command with the returned marker value. // // Default: 100 // // Constraints: minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // The identifier of the event source for which events will be returned. If // this parameter is not specified, then all sources are included in the response. // // Constraints: // // If SourceIdentifier is supplied, SourceType must also be provided. // // * Specify a cluster identifier when SourceType is cluster. // // * Specify a cluster security group name when SourceType is cluster-security-group. // // * Specify a cluster parameter group name when SourceType is cluster-parameter-group. // // * Specify a cluster snapshot identifier when SourceType is cluster-snapshot. SourceIdentifier *string `type:"string"` // The event source to retrieve events for. If no value is specified, all events // are returned. // // Constraints: // // If SourceType is supplied, SourceIdentifier must also be provided. // // * Specify cluster when SourceIdentifier is a cluster identifier. // // * Specify cluster-security-group when SourceIdentifier is a cluster security // group name. // // * Specify cluster-parameter-group when SourceIdentifier is a cluster parameter // group name. // // * Specify cluster-snapshot when SourceIdentifier is a cluster snapshot // identifier. SourceType *string `type:"string" enum:"SourceType"` // The beginning of the time interval to retrieve events for, specified in ISO // 8601 format. For more information about ISO 8601, go to the ISO8601 Wikipedia // page. (http://en.wikipedia.org/wiki/ISO_8601) // // Example: 2009-07-08T18:00Z StartTime *time.Time `type:"timestamp"` // contains filtered or unexported fields }
func (s DescribeEventsInput) GoString() string
GoString returns the string representation
func (s *DescribeEventsInput) SetDuration(v int64) *DescribeEventsInput
SetDuration sets the Duration field's value.
func (s *DescribeEventsInput) SetEndTime(v time.Time) *DescribeEventsInput
SetEndTime sets the EndTime field's value.
func (s *DescribeEventsInput) SetMarker(v string) *DescribeEventsInput
SetMarker sets the Marker field's value.
func (s *DescribeEventsInput) SetMaxRecords(v int64) *DescribeEventsInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribeEventsInput) SetSourceIdentifier(v string) *DescribeEventsInput
SetSourceIdentifier sets the SourceIdentifier field's value.
func (s *DescribeEventsInput) SetSourceType(v string) *DescribeEventsInput
SetSourceType sets the SourceType field's value.
func (s *DescribeEventsInput) SetStartTime(v time.Time) *DescribeEventsInput
SetStartTime sets the StartTime field's value.
func (s DescribeEventsInput) String() string
String returns the string representation
type DescribeEventsOutput struct { // A list of Event instances. Events []*Event `locationNameList:"Event" type:"list"` // A value that indicates the starting point for the next set of response records // in a subsequent request. If a value is returned in a response, you can retrieve // the next set of records by providing this returned marker value in the Marker // parameter and retrying the command. If the Marker field is empty, all response // records have been retrieved for the request. Marker *string `type:"string"` // contains filtered or unexported fields }
func (s DescribeEventsOutput) GoString() string
GoString returns the string representation
func (s *DescribeEventsOutput) SetEvents(v []*Event) *DescribeEventsOutput
SetEvents sets the Events field's value.
func (s *DescribeEventsOutput) SetMarker(v string) *DescribeEventsOutput
SetMarker sets the Marker field's value.
func (s DescribeEventsOutput) String() string
String returns the string representation
type DescribeHsmClientCertificatesInput struct { // The identifier of a specific HSM client certificate for which you want information. // If no identifier is specified, information is returned for all HSM client // certificates owned by your AWS customer account. HsmClientCertificateIdentifier *string `type:"string"` // An optional parameter that specifies the starting point to return a set of // response records. When the results of a DescribeHsmClientCertificates request // exceed the value specified in MaxRecords, AWS returns a value in the Marker // field of the response. You can retrieve the next set of response records // by providing the returned marker value in the Marker parameter and retrying // the request. Marker *string `type:"string"` // The maximum number of response records to return in each call. If the number // of remaining response records exceeds the specified MaxRecords value, a value // is returned in a marker field of the response. You can retrieve the next // set of records by retrying the command with the returned marker value. // // Default: 100 // // Constraints: minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // A tag key or keys for which you want to return all matching HSM client certificates // that are associated with the specified key or keys. For example, suppose // that you have HSM client certificates that are tagged with keys called owner // and environment. If you specify both of these tag keys in the request, Amazon // Redshift returns a response with the HSM client certificates that have either // or both of these tag keys associated with them. TagKeys []*string `locationNameList:"TagKey" type:"list"` // A tag value or values for which you want to return all matching HSM client // certificates that are associated with the specified tag value or values. // For example, suppose that you have HSM client certificates that are tagged // with values called admin and test. If you specify both of these tag values // in the request, Amazon Redshift returns a response with the HSM client certificates // that have either or both of these tag values associated with them. TagValues []*string `locationNameList:"TagValue" type:"list"` // contains filtered or unexported fields }
func (s DescribeHsmClientCertificatesInput) GoString() string
GoString returns the string representation
func (s *DescribeHsmClientCertificatesInput) SetHsmClientCertificateIdentifier(v string) *DescribeHsmClientCertificatesInput
SetHsmClientCertificateIdentifier sets the HsmClientCertificateIdentifier field's value.
func (s *DescribeHsmClientCertificatesInput) SetMarker(v string) *DescribeHsmClientCertificatesInput
SetMarker sets the Marker field's value.
func (s *DescribeHsmClientCertificatesInput) SetMaxRecords(v int64) *DescribeHsmClientCertificatesInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribeHsmClientCertificatesInput) SetTagKeys(v []*string) *DescribeHsmClientCertificatesInput
SetTagKeys sets the TagKeys field's value.
func (s *DescribeHsmClientCertificatesInput) SetTagValues(v []*string) *DescribeHsmClientCertificatesInput
SetTagValues sets the TagValues field's value.
func (s DescribeHsmClientCertificatesInput) String() string
String returns the string representation
type DescribeHsmClientCertificatesOutput struct { // A list of the identifiers for one or more HSM client certificates used by // Amazon Redshift clusters to store and retrieve database encryption keys in // an HSM. HsmClientCertificates []*HsmClientCertificate `locationNameList:"HsmClientCertificate" type:"list"` // A value that indicates the starting point for the next set of response records // in a subsequent request. If a value is returned in a response, you can retrieve // the next set of records by providing this returned marker value in the Marker // parameter and retrying the command. If the Marker field is empty, all response // records have been retrieved for the request. Marker *string `type:"string"` // contains filtered or unexported fields }
func (s DescribeHsmClientCertificatesOutput) GoString() string
GoString returns the string representation
func (s *DescribeHsmClientCertificatesOutput) SetHsmClientCertificates(v []*HsmClientCertificate) *DescribeHsmClientCertificatesOutput
SetHsmClientCertificates sets the HsmClientCertificates field's value.
func (s *DescribeHsmClientCertificatesOutput) SetMarker(v string) *DescribeHsmClientCertificatesOutput
SetMarker sets the Marker field's value.
func (s DescribeHsmClientCertificatesOutput) String() string
String returns the string representation
type DescribeHsmConfigurationsInput struct { // The identifier of a specific Amazon Redshift HSM configuration to be described. // If no identifier is specified, information is returned for all HSM configurations // owned by your AWS customer account. HsmConfigurationIdentifier *string `type:"string"` // An optional parameter that specifies the starting point to return a set of // response records. When the results of a DescribeHsmConfigurations request // exceed the value specified in MaxRecords, AWS returns a value in the Marker // field of the response. You can retrieve the next set of response records // by providing the returned marker value in the Marker parameter and retrying // the request. Marker *string `type:"string"` // The maximum number of response records to return in each call. If the number // of remaining response records exceeds the specified MaxRecords value, a value // is returned in a marker field of the response. You can retrieve the next // set of records by retrying the command with the returned marker value. // // Default: 100 // // Constraints: minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // A tag key or keys for which you want to return all matching HSM configurations // that are associated with the specified key or keys. For example, suppose // that you have HSM configurations that are tagged with keys called owner and // environment. If you specify both of these tag keys in the request, Amazon // Redshift returns a response with the HSM configurations that have either // or both of these tag keys associated with them. TagKeys []*string `locationNameList:"TagKey" type:"list"` // A tag value or values for which you want to return all matching HSM configurations // that are associated with the specified tag value or values. For example, // suppose that you have HSM configurations that are tagged with values called // admin and test. If you specify both of these tag values in the request, Amazon // Redshift returns a response with the HSM configurations that have either // or both of these tag values associated with them. TagValues []*string `locationNameList:"TagValue" type:"list"` // contains filtered or unexported fields }
func (s DescribeHsmConfigurationsInput) GoString() string
GoString returns the string representation
func (s *DescribeHsmConfigurationsInput) SetHsmConfigurationIdentifier(v string) *DescribeHsmConfigurationsInput
SetHsmConfigurationIdentifier sets the HsmConfigurationIdentifier field's value.
func (s *DescribeHsmConfigurationsInput) SetMarker(v string) *DescribeHsmConfigurationsInput
SetMarker sets the Marker field's value.
func (s *DescribeHsmConfigurationsInput) SetMaxRecords(v int64) *DescribeHsmConfigurationsInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribeHsmConfigurationsInput) SetTagKeys(v []*string) *DescribeHsmConfigurationsInput
SetTagKeys sets the TagKeys field's value.
func (s *DescribeHsmConfigurationsInput) SetTagValues(v []*string) *DescribeHsmConfigurationsInput
SetTagValues sets the TagValues field's value.
func (s DescribeHsmConfigurationsInput) String() string
String returns the string representation
type DescribeHsmConfigurationsOutput struct { // A list of HsmConfiguration objects. HsmConfigurations []*HsmConfiguration `locationNameList:"HsmConfiguration" type:"list"` // A value that indicates the starting point for the next set of response records // in a subsequent request. If a value is returned in a response, you can retrieve // the next set of records by providing this returned marker value in the Marker // parameter and retrying the command. If the Marker field is empty, all response // records have been retrieved for the request. Marker *string `type:"string"` // contains filtered or unexported fields }
func (s DescribeHsmConfigurationsOutput) GoString() string
GoString returns the string representation
func (s *DescribeHsmConfigurationsOutput) SetHsmConfigurations(v []*HsmConfiguration) *DescribeHsmConfigurationsOutput
SetHsmConfigurations sets the HsmConfigurations field's value.
func (s *DescribeHsmConfigurationsOutput) SetMarker(v string) *DescribeHsmConfigurationsOutput
SetMarker sets the Marker field's value.
func (s DescribeHsmConfigurationsOutput) String() string
String returns the string representation
type DescribeLoggingStatusInput struct { // The identifier of the cluster from which to get the logging status. // // Example: examplecluster // // ClusterIdentifier is a required field ClusterIdentifier *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s DescribeLoggingStatusInput) GoString() string
GoString returns the string representation
func (s *DescribeLoggingStatusInput) SetClusterIdentifier(v string) *DescribeLoggingStatusInput
SetClusterIdentifier sets the ClusterIdentifier field's value.
func (s DescribeLoggingStatusInput) String() string
String returns the string representation
func (s *DescribeLoggingStatusInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeNodeConfigurationOptionsInput struct { // The action type to evaluate for possible node configurations. Specify "restore-cluster" // to get configuration combinations based on an existing snapshot. Specify // "recommend-node-config" to get configuration recommendations based on an // existing cluster or snapshot. Specify "resize-cluster" to get configuration // combinations for elastic resize based on an existing cluster. // // ActionType is a required field ActionType *string `type:"string" required:"true" enum:"ActionType"` // The identifier of the cluster to evaluate for possible node configurations. ClusterIdentifier *string `type:"string"` // A set of name, operator, and value items to filter the results. Filters []*NodeConfigurationOptionsFilter `locationName:"Filter" locationNameList:"NodeConfigurationOptionsFilter" type:"list"` // An optional parameter that specifies the starting point to return a set of // response records. When the results of a DescribeNodeConfigurationOptions // request exceed the value specified in MaxRecords, AWS returns a value in // the Marker field of the response. You can retrieve the next set of response // records by providing the returned marker value in the Marker parameter and // retrying the request. Marker *string `type:"string"` // The maximum number of response records to return in each call. If the number // of remaining response records exceeds the specified MaxRecords value, a value // is returned in a marker field of the response. You can retrieve the next // set of records by retrying the command with the returned marker value. // // Default: 500 // // Constraints: minimum 100, maximum 500. MaxRecords *int64 `type:"integer"` // The AWS customer account used to create or copy the snapshot. Required if // you are restoring a snapshot you do not own, optional if you own the snapshot. OwnerAccount *string `type:"string"` // The identifier of the snapshot to evaluate for possible node configurations. SnapshotIdentifier *string `type:"string"` // contains filtered or unexported fields }
func (s DescribeNodeConfigurationOptionsInput) GoString() string
GoString returns the string representation
func (s *DescribeNodeConfigurationOptionsInput) SetActionType(v string) *DescribeNodeConfigurationOptionsInput
SetActionType sets the ActionType field's value.
func (s *DescribeNodeConfigurationOptionsInput) SetClusterIdentifier(v string) *DescribeNodeConfigurationOptionsInput
SetClusterIdentifier sets the ClusterIdentifier field's value.
func (s *DescribeNodeConfigurationOptionsInput) SetFilters(v []*NodeConfigurationOptionsFilter) *DescribeNodeConfigurationOptionsInput
SetFilters sets the Filters field's value.
func (s *DescribeNodeConfigurationOptionsInput) SetMarker(v string) *DescribeNodeConfigurationOptionsInput
SetMarker sets the Marker field's value.
func (s *DescribeNodeConfigurationOptionsInput) SetMaxRecords(v int64) *DescribeNodeConfigurationOptionsInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribeNodeConfigurationOptionsInput) SetOwnerAccount(v string) *DescribeNodeConfigurationOptionsInput
SetOwnerAccount sets the OwnerAccount field's value.
func (s *DescribeNodeConfigurationOptionsInput) SetSnapshotIdentifier(v string) *DescribeNodeConfigurationOptionsInput
SetSnapshotIdentifier sets the SnapshotIdentifier field's value.
func (s DescribeNodeConfigurationOptionsInput) String() string
String returns the string representation
func (s *DescribeNodeConfigurationOptionsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeNodeConfigurationOptionsOutput struct { // A value that indicates the starting point for the next set of response records // in a subsequent request. If a value is returned in a response, you can retrieve // the next set of records by providing this returned marker value in the Marker // parameter and retrying the command. If the Marker field is empty, all response // records have been retrieved for the request. Marker *string `type:"string"` // A list of valid node configurations. NodeConfigurationOptionList []*NodeConfigurationOption `locationNameList:"NodeConfigurationOption" type:"list"` // contains filtered or unexported fields }
func (s DescribeNodeConfigurationOptionsOutput) GoString() string
GoString returns the string representation
func (s *DescribeNodeConfigurationOptionsOutput) SetMarker(v string) *DescribeNodeConfigurationOptionsOutput
SetMarker sets the Marker field's value.
func (s *DescribeNodeConfigurationOptionsOutput) SetNodeConfigurationOptionList(v []*NodeConfigurationOption) *DescribeNodeConfigurationOptionsOutput
SetNodeConfigurationOptionList sets the NodeConfigurationOptionList field's value.
func (s DescribeNodeConfigurationOptionsOutput) String() string
String returns the string representation
type DescribeOrderableClusterOptionsInput struct { // The version filter value. Specify this parameter to show only the available // offerings matching the specified version. // // Default: All versions. // // Constraints: Must be one of the version returned from DescribeClusterVersions. ClusterVersion *string `type:"string"` // An optional parameter that specifies the starting point to return a set of // response records. When the results of a DescribeOrderableClusterOptions request // exceed the value specified in MaxRecords, AWS returns a value in the Marker // field of the response. You can retrieve the next set of response records // by providing the returned marker value in the Marker parameter and retrying // the request. Marker *string `type:"string"` // The maximum number of response records to return in each call. If the number // of remaining response records exceeds the specified MaxRecords value, a value // is returned in a marker field of the response. You can retrieve the next // set of records by retrying the command with the returned marker value. // // Default: 100 // // Constraints: minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // The node type filter value. Specify this parameter to show only the available // offerings matching the specified node type. NodeType *string `type:"string"` // contains filtered or unexported fields }
func (s DescribeOrderableClusterOptionsInput) GoString() string
GoString returns the string representation
func (s *DescribeOrderableClusterOptionsInput) SetClusterVersion(v string) *DescribeOrderableClusterOptionsInput
SetClusterVersion sets the ClusterVersion field's value.
func (s *DescribeOrderableClusterOptionsInput) SetMarker(v string) *DescribeOrderableClusterOptionsInput
SetMarker sets the Marker field's value.
func (s *DescribeOrderableClusterOptionsInput) SetMaxRecords(v int64) *DescribeOrderableClusterOptionsInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribeOrderableClusterOptionsInput) SetNodeType(v string) *DescribeOrderableClusterOptionsInput
SetNodeType sets the NodeType field's value.
func (s DescribeOrderableClusterOptionsInput) String() string
String returns the string representation
type DescribeOrderableClusterOptionsOutput struct { // A value that indicates the starting point for the next set of response records // in a subsequent request. If a value is returned in a response, you can retrieve // the next set of records by providing this returned marker value in the Marker // parameter and retrying the command. If the Marker field is empty, all response // records have been retrieved for the request. Marker *string `type:"string"` // An OrderableClusterOption structure containing information about orderable // options for the cluster. OrderableClusterOptions []*OrderableClusterOption `locationNameList:"OrderableClusterOption" type:"list"` // contains filtered or unexported fields }
Contains the output from the DescribeOrderableClusterOptions action.
func (s DescribeOrderableClusterOptionsOutput) GoString() string
GoString returns the string representation
func (s *DescribeOrderableClusterOptionsOutput) SetMarker(v string) *DescribeOrderableClusterOptionsOutput
SetMarker sets the Marker field's value.
func (s *DescribeOrderableClusterOptionsOutput) SetOrderableClusterOptions(v []*OrderableClusterOption) *DescribeOrderableClusterOptionsOutput
SetOrderableClusterOptions sets the OrderableClusterOptions field's value.
func (s DescribeOrderableClusterOptionsOutput) String() string
String returns the string representation
type DescribeReservedNodeOfferingsInput struct { // An optional parameter that specifies the starting point to return a set of // response records. When the results of a DescribeReservedNodeOfferings request // exceed the value specified in MaxRecords, AWS returns a value in the Marker // field of the response. You can retrieve the next set of response records // by providing the returned marker value in the Marker parameter and retrying // the request. Marker *string `type:"string"` // The maximum number of response records to return in each call. If the number // of remaining response records exceeds the specified MaxRecords value, a value // is returned in a marker field of the response. You can retrieve the next // set of records by retrying the command with the returned marker value. // // Default: 100 // // Constraints: minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // The unique identifier for the offering. ReservedNodeOfferingId *string `type:"string"` // contains filtered or unexported fields }
func (s DescribeReservedNodeOfferingsInput) GoString() string
GoString returns the string representation
func (s *DescribeReservedNodeOfferingsInput) SetMarker(v string) *DescribeReservedNodeOfferingsInput
SetMarker sets the Marker field's value.
func (s *DescribeReservedNodeOfferingsInput) SetMaxRecords(v int64) *DescribeReservedNodeOfferingsInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribeReservedNodeOfferingsInput) SetReservedNodeOfferingId(v string) *DescribeReservedNodeOfferingsInput
SetReservedNodeOfferingId sets the ReservedNodeOfferingId field's value.
func (s DescribeReservedNodeOfferingsInput) String() string
String returns the string representation
type DescribeReservedNodeOfferingsOutput struct { // A value that indicates the starting point for the next set of response records // in a subsequent request. If a value is returned in a response, you can retrieve // the next set of records by providing this returned marker value in the Marker // parameter and retrying the command. If the Marker field is empty, all response // records have been retrieved for the request. Marker *string `type:"string"` // A list of ReservedNodeOffering objects. ReservedNodeOfferings []*ReservedNodeOffering `locationNameList:"ReservedNodeOffering" type:"list"` // contains filtered or unexported fields }
func (s DescribeReservedNodeOfferingsOutput) GoString() string
GoString returns the string representation
func (s *DescribeReservedNodeOfferingsOutput) SetMarker(v string) *DescribeReservedNodeOfferingsOutput
SetMarker sets the Marker field's value.
func (s *DescribeReservedNodeOfferingsOutput) SetReservedNodeOfferings(v []*ReservedNodeOffering) *DescribeReservedNodeOfferingsOutput
SetReservedNodeOfferings sets the ReservedNodeOfferings field's value.
func (s DescribeReservedNodeOfferingsOutput) String() string
String returns the string representation
type DescribeReservedNodesInput struct { // An optional parameter that specifies the starting point to return a set of // response records. When the results of a DescribeReservedNodes request exceed // the value specified in MaxRecords, AWS returns a value in the Marker field // of the response. You can retrieve the next set of response records by providing // the returned marker value in the Marker parameter and retrying the request. Marker *string `type:"string"` // The maximum number of response records to return in each call. If the number // of remaining response records exceeds the specified MaxRecords value, a value // is returned in a marker field of the response. You can retrieve the next // set of records by retrying the command with the returned marker value. // // Default: 100 // // Constraints: minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // Identifier for the node reservation. ReservedNodeId *string `type:"string"` // contains filtered or unexported fields }
func (s DescribeReservedNodesInput) GoString() string
GoString returns the string representation
func (s *DescribeReservedNodesInput) SetMarker(v string) *DescribeReservedNodesInput
SetMarker sets the Marker field's value.
func (s *DescribeReservedNodesInput) SetMaxRecords(v int64) *DescribeReservedNodesInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribeReservedNodesInput) SetReservedNodeId(v string) *DescribeReservedNodesInput
SetReservedNodeId sets the ReservedNodeId field's value.
func (s DescribeReservedNodesInput) String() string
String returns the string representation
type DescribeReservedNodesOutput struct { // A value that indicates the starting point for the next set of response records // in a subsequent request. If a value is returned in a response, you can retrieve // the next set of records by providing this returned marker value in the Marker // parameter and retrying the command. If the Marker field is empty, all response // records have been retrieved for the request. Marker *string `type:"string"` // The list of ReservedNode objects. ReservedNodes []*ReservedNode `locationNameList:"ReservedNode" type:"list"` // contains filtered or unexported fields }
func (s DescribeReservedNodesOutput) GoString() string
GoString returns the string representation
func (s *DescribeReservedNodesOutput) SetMarker(v string) *DescribeReservedNodesOutput
SetMarker sets the Marker field's value.
func (s *DescribeReservedNodesOutput) SetReservedNodes(v []*ReservedNode) *DescribeReservedNodesOutput
SetReservedNodes sets the ReservedNodes field's value.
func (s DescribeReservedNodesOutput) String() string
String returns the string representation
type DescribeResizeInput struct { // The unique identifier of a cluster whose resize progress you are requesting. // This parameter is case-sensitive. // // By default, resize operations for all clusters defined for an AWS account // are returned. // // ClusterIdentifier is a required field ClusterIdentifier *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s DescribeResizeInput) GoString() string
GoString returns the string representation
func (s *DescribeResizeInput) SetClusterIdentifier(v string) *DescribeResizeInput
SetClusterIdentifier sets the ClusterIdentifier field's value.
func (s DescribeResizeInput) String() string
String returns the string representation
func (s *DescribeResizeInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeResizeOutput struct { // The average rate of the resize operation over the last few minutes, measured // in megabytes per second. After the resize operation completes, this value // shows the average rate of the entire resize operation. AvgResizeRateInMegaBytesPerSecond *float64 `type:"double"` // The percent of data transferred from source cluster to target cluster. DataTransferProgressPercent *float64 `type:"double"` // The amount of seconds that have elapsed since the resize operation began. // After the resize operation completes, this value shows the total actual time, // in seconds, for the resize operation. ElapsedTimeInSeconds *int64 `type:"long"` // The estimated time remaining, in seconds, until the resize operation is complete. // This value is calculated based on the average resize rate and the estimated // amount of data remaining to be processed. Once the resize operation is complete, // this value will be 0. EstimatedTimeToCompletionInSeconds *int64 `type:"long"` // The names of tables that have been completely imported . // // Valid Values: List of table names. ImportTablesCompleted []*string `type:"list"` // The names of tables that are being currently imported. // // Valid Values: List of table names. ImportTablesInProgress []*string `type:"list"` // The names of tables that have not been yet imported. // // Valid Values: List of table names ImportTablesNotStarted []*string `type:"list"` // An optional string to provide additional details about the resize action. Message *string `type:"string"` // While the resize operation is in progress, this value shows the current amount // of data, in megabytes, that has been processed so far. When the resize operation // is complete, this value shows the total amount of data, in megabytes, on // the cluster, which may be more or less than TotalResizeDataInMegaBytes (the // estimated total amount of data before resize). ProgressInMegaBytes *int64 `type:"long"` // An enum with possible values of ClassicResize and ElasticResize. These values // describe the type of resize operation being performed. ResizeType *string `type:"string"` // The status of the resize operation. // // Valid Values: NONE | IN_PROGRESS | FAILED | SUCCEEDED | CANCELLING Status *string `type:"string"` // The cluster type after the resize operation is complete. // // Valid Values: multi-node | single-node TargetClusterType *string `type:"string"` // The type of encryption for the cluster after the resize is complete. // // Possible values are KMS and None. TargetEncryptionType *string `type:"string"` // The node type that the cluster will have after the resize operation is complete. TargetNodeType *string `type:"string"` // The number of nodes that the cluster will have after the resize operation // is complete. TargetNumberOfNodes *int64 `type:"integer"` // The estimated total amount of data, in megabytes, on the cluster before the // resize operation began. TotalResizeDataInMegaBytes *int64 `type:"long"` // contains filtered or unexported fields }
Describes the result of a cluster resize operation.
func (s DescribeResizeOutput) GoString() string
GoString returns the string representation
func (s *DescribeResizeOutput) SetAvgResizeRateInMegaBytesPerSecond(v float64) *DescribeResizeOutput
SetAvgResizeRateInMegaBytesPerSecond sets the AvgResizeRateInMegaBytesPerSecond field's value.
func (s *DescribeResizeOutput) SetDataTransferProgressPercent(v float64) *DescribeResizeOutput
SetDataTransferProgressPercent sets the DataTransferProgressPercent field's value.
func (s *DescribeResizeOutput) SetElapsedTimeInSeconds(v int64) *DescribeResizeOutput
SetElapsedTimeInSeconds sets the ElapsedTimeInSeconds field's value.
func (s *DescribeResizeOutput) SetEstimatedTimeToCompletionInSeconds(v int64) *DescribeResizeOutput
SetEstimatedTimeToCompletionInSeconds sets the EstimatedTimeToCompletionInSeconds field's value.
func (s *DescribeResizeOutput) SetImportTablesCompleted(v []*string) *DescribeResizeOutput
SetImportTablesCompleted sets the ImportTablesCompleted field's value.
func (s *DescribeResizeOutput) SetImportTablesInProgress(v []*string) *DescribeResizeOutput
SetImportTablesInProgress sets the ImportTablesInProgress field's value.
func (s *DescribeResizeOutput) SetImportTablesNotStarted(v []*string) *DescribeResizeOutput
SetImportTablesNotStarted sets the ImportTablesNotStarted field's value.
func (s *DescribeResizeOutput) SetMessage(v string) *DescribeResizeOutput
SetMessage sets the Message field's value.
func (s *DescribeResizeOutput) SetProgressInMegaBytes(v int64) *DescribeResizeOutput
SetProgressInMegaBytes sets the ProgressInMegaBytes field's value.
func (s *DescribeResizeOutput) SetResizeType(v string) *DescribeResizeOutput
SetResizeType sets the ResizeType field's value.
func (s *DescribeResizeOutput) SetStatus(v string) *DescribeResizeOutput
SetStatus sets the Status field's value.
func (s *DescribeResizeOutput) SetTargetClusterType(v string) *DescribeResizeOutput
SetTargetClusterType sets the TargetClusterType field's value.
func (s *DescribeResizeOutput) SetTargetEncryptionType(v string) *DescribeResizeOutput
SetTargetEncryptionType sets the TargetEncryptionType field's value.
func (s *DescribeResizeOutput) SetTargetNodeType(v string) *DescribeResizeOutput
SetTargetNodeType sets the TargetNodeType field's value.
func (s *DescribeResizeOutput) SetTargetNumberOfNodes(v int64) *DescribeResizeOutput
SetTargetNumberOfNodes sets the TargetNumberOfNodes field's value.
func (s *DescribeResizeOutput) SetTotalResizeDataInMegaBytes(v int64) *DescribeResizeOutput
SetTotalResizeDataInMegaBytes sets the TotalResizeDataInMegaBytes field's value.
func (s DescribeResizeOutput) String() string
String returns the string representation
type DescribeScheduledActionsInput struct { // If true, retrieve only active scheduled actions. If false, retrieve only // disabled scheduled actions. Active *bool `type:"boolean"` // The end time in UTC of the scheduled action to retrieve. Only active scheduled // actions that have invocations before this time are retrieved. EndTime *time.Time `type:"timestamp"` // List of scheduled action filters. Filters []*ScheduledActionFilter `locationNameList:"ScheduledActionFilter" type:"list"` // An optional parameter that specifies the starting point to return a set of // response records. When the results of a DescribeScheduledActions request // exceed the value specified in MaxRecords, AWS returns a value in the Marker // field of the response. You can retrieve the next set of response records // by providing the returned marker value in the Marker parameter and retrying // the request. Marker *string `type:"string"` // The maximum number of response records to return in each call. If the number // of remaining response records exceeds the specified MaxRecords value, a value // is returned in a marker field of the response. You can retrieve the next // set of records by retrying the command with the returned marker value. // // Default: 100 // // Constraints: minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // The name of the scheduled action to retrieve. ScheduledActionName *string `type:"string"` // The start time in UTC of the scheduled actions to retrieve. Only active scheduled // actions that have invocations after this time are retrieved. StartTime *time.Time `type:"timestamp"` // The type of the scheduled actions to retrieve. TargetActionType *string `type:"string" enum:"ScheduledActionTypeValues"` // contains filtered or unexported fields }
func (s DescribeScheduledActionsInput) GoString() string
GoString returns the string representation
func (s *DescribeScheduledActionsInput) SetActive(v bool) *DescribeScheduledActionsInput
SetActive sets the Active field's value.
func (s *DescribeScheduledActionsInput) SetEndTime(v time.Time) *DescribeScheduledActionsInput
SetEndTime sets the EndTime field's value.
func (s *DescribeScheduledActionsInput) SetFilters(v []*ScheduledActionFilter) *DescribeScheduledActionsInput
SetFilters sets the Filters field's value.
func (s *DescribeScheduledActionsInput) SetMarker(v string) *DescribeScheduledActionsInput
SetMarker sets the Marker field's value.
func (s *DescribeScheduledActionsInput) SetMaxRecords(v int64) *DescribeScheduledActionsInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribeScheduledActionsInput) SetScheduledActionName(v string) *DescribeScheduledActionsInput
SetScheduledActionName sets the ScheduledActionName field's value.
func (s *DescribeScheduledActionsInput) SetStartTime(v time.Time) *DescribeScheduledActionsInput
SetStartTime sets the StartTime field's value.
func (s *DescribeScheduledActionsInput) SetTargetActionType(v string) *DescribeScheduledActionsInput
SetTargetActionType sets the TargetActionType field's value.
func (s DescribeScheduledActionsInput) String() string
String returns the string representation
func (s *DescribeScheduledActionsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeScheduledActionsOutput struct { // An optional parameter that specifies the starting point to return a set of // response records. When the results of a DescribeScheduledActions request // exceed the value specified in MaxRecords, AWS returns a value in the Marker // field of the response. You can retrieve the next set of response records // by providing the returned marker value in the Marker parameter and retrying // the request. Marker *string `type:"string"` // List of retrieved scheduled actions. ScheduledActions []*ScheduledAction `locationNameList:"ScheduledAction" type:"list"` // contains filtered or unexported fields }
func (s DescribeScheduledActionsOutput) GoString() string
GoString returns the string representation
func (s *DescribeScheduledActionsOutput) SetMarker(v string) *DescribeScheduledActionsOutput
SetMarker sets the Marker field's value.
func (s *DescribeScheduledActionsOutput) SetScheduledActions(v []*ScheduledAction) *DescribeScheduledActionsOutput
SetScheduledActions sets the ScheduledActions field's value.
func (s DescribeScheduledActionsOutput) String() string
String returns the string representation
type DescribeSnapshotCopyGrantsInput struct { // An optional parameter that specifies the starting point to return a set of // response records. When the results of a DescribeSnapshotCopyGrant request // exceed the value specified in MaxRecords, AWS returns a value in the Marker // field of the response. You can retrieve the next set of response records // by providing the returned marker value in the Marker parameter and retrying // the request. // // Constraints: You can specify either the SnapshotCopyGrantName parameter or // the Marker parameter, but not both. Marker *string `type:"string"` // The maximum number of response records to return in each call. If the number // of remaining response records exceeds the specified MaxRecords value, a value // is returned in a marker field of the response. You can retrieve the next // set of records by retrying the command with the returned marker value. // // Default: 100 // // Constraints: minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // The name of the snapshot copy grant. SnapshotCopyGrantName *string `type:"string"` // A tag key or keys for which you want to return all matching resources that // are associated with the specified key or keys. For example, suppose that // you have resources tagged with keys called owner and environment. If you // specify both of these tag keys in the request, Amazon Redshift returns a // response with all resources that have either or both of these tag keys associated // with them. TagKeys []*string `locationNameList:"TagKey" type:"list"` // A tag value or values for which you want to return all matching resources // that are associated with the specified value or values. For example, suppose // that you have resources tagged with values called admin and test. If you // specify both of these tag values in the request, Amazon Redshift returns // a response with all resources that have either or both of these tag values // associated with them. TagValues []*string `locationNameList:"TagValue" type:"list"` // contains filtered or unexported fields }
The result of the DescribeSnapshotCopyGrants action.
func (s DescribeSnapshotCopyGrantsInput) GoString() string
GoString returns the string representation
func (s *DescribeSnapshotCopyGrantsInput) SetMarker(v string) *DescribeSnapshotCopyGrantsInput
SetMarker sets the Marker field's value.
func (s *DescribeSnapshotCopyGrantsInput) SetMaxRecords(v int64) *DescribeSnapshotCopyGrantsInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribeSnapshotCopyGrantsInput) SetSnapshotCopyGrantName(v string) *DescribeSnapshotCopyGrantsInput
SetSnapshotCopyGrantName sets the SnapshotCopyGrantName field's value.
func (s *DescribeSnapshotCopyGrantsInput) SetTagKeys(v []*string) *DescribeSnapshotCopyGrantsInput
SetTagKeys sets the TagKeys field's value.
func (s *DescribeSnapshotCopyGrantsInput) SetTagValues(v []*string) *DescribeSnapshotCopyGrantsInput
SetTagValues sets the TagValues field's value.
func (s DescribeSnapshotCopyGrantsInput) String() string
String returns the string representation
type DescribeSnapshotCopyGrantsOutput struct { // An optional parameter that specifies the starting point to return a set of // response records. When the results of a DescribeSnapshotCopyGrant request // exceed the value specified in MaxRecords, AWS returns a value in the Marker // field of the response. You can retrieve the next set of response records // by providing the returned marker value in the Marker parameter and retrying // the request. // // Constraints: You can specify either the SnapshotCopyGrantName parameter or // the Marker parameter, but not both. Marker *string `type:"string"` // The list of SnapshotCopyGrant objects. SnapshotCopyGrants []*SnapshotCopyGrant `locationNameList:"SnapshotCopyGrant" type:"list"` // contains filtered or unexported fields }
func (s DescribeSnapshotCopyGrantsOutput) GoString() string
GoString returns the string representation
func (s *DescribeSnapshotCopyGrantsOutput) SetMarker(v string) *DescribeSnapshotCopyGrantsOutput
SetMarker sets the Marker field's value.
func (s *DescribeSnapshotCopyGrantsOutput) SetSnapshotCopyGrants(v []*SnapshotCopyGrant) *DescribeSnapshotCopyGrantsOutput
SetSnapshotCopyGrants sets the SnapshotCopyGrants field's value.
func (s DescribeSnapshotCopyGrantsOutput) String() string
String returns the string representation
type DescribeSnapshotSchedulesInput struct { // The unique identifier for the cluster whose snapshot schedules you want to // view. ClusterIdentifier *string `type:"string"` // A value that indicates the starting point for the next set of response records // in a subsequent request. If a value is returned in a response, you can retrieve // the next set of records by providing this returned marker value in the marker // parameter and retrying the command. If the marker field is empty, all response // records have been retrieved for the request. Marker *string `type:"string"` // The maximum number or response records to return in each call. If the number // of remaining response records exceeds the specified MaxRecords value, a value // is returned in a marker field of the response. You can retrieve the next // set of records by retrying the command with the returned marker value. MaxRecords *int64 `type:"integer"` // A unique identifier for a snapshot schedule. ScheduleIdentifier *string `type:"string"` // The key value for a snapshot schedule tag. TagKeys []*string `locationNameList:"TagKey" type:"list"` // The value corresponding to the key of the snapshot schedule tag. TagValues []*string `locationNameList:"TagValue" type:"list"` // contains filtered or unexported fields }
func (s DescribeSnapshotSchedulesInput) GoString() string
GoString returns the string representation
func (s *DescribeSnapshotSchedulesInput) SetClusterIdentifier(v string) *DescribeSnapshotSchedulesInput
SetClusterIdentifier sets the ClusterIdentifier field's value.
func (s *DescribeSnapshotSchedulesInput) SetMarker(v string) *DescribeSnapshotSchedulesInput
SetMarker sets the Marker field's value.
func (s *DescribeSnapshotSchedulesInput) SetMaxRecords(v int64) *DescribeSnapshotSchedulesInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribeSnapshotSchedulesInput) SetScheduleIdentifier(v string) *DescribeSnapshotSchedulesInput
SetScheduleIdentifier sets the ScheduleIdentifier field's value.
func (s *DescribeSnapshotSchedulesInput) SetTagKeys(v []*string) *DescribeSnapshotSchedulesInput
SetTagKeys sets the TagKeys field's value.
func (s *DescribeSnapshotSchedulesInput) SetTagValues(v []*string) *DescribeSnapshotSchedulesInput
SetTagValues sets the TagValues field's value.
func (s DescribeSnapshotSchedulesInput) String() string
String returns the string representation
type DescribeSnapshotSchedulesOutput struct { // A value that indicates the starting point for the next set of response records // in a subsequent request. If a value is returned in a response, you can retrieve // the next set of records by providing this returned marker value in the marker // parameter and retrying the command. If the marker field is empty, all response // records have been retrieved for the request. Marker *string `type:"string"` // A list of SnapshotSchedules. SnapshotSchedules []*SnapshotSchedule `locationNameList:"SnapshotSchedule" type:"list"` // contains filtered or unexported fields }
func (s DescribeSnapshotSchedulesOutput) GoString() string
GoString returns the string representation
func (s *DescribeSnapshotSchedulesOutput) SetMarker(v string) *DescribeSnapshotSchedulesOutput
SetMarker sets the Marker field's value.
func (s *DescribeSnapshotSchedulesOutput) SetSnapshotSchedules(v []*SnapshotSchedule) *DescribeSnapshotSchedulesOutput
SetSnapshotSchedules sets the SnapshotSchedules field's value.
func (s DescribeSnapshotSchedulesOutput) String() string
String returns the string representation
type DescribeStorageInput struct {
// contains filtered or unexported fields
}
func (s DescribeStorageInput) GoString() string
GoString returns the string representation
func (s DescribeStorageInput) String() string
String returns the string representation
type DescribeStorageOutput struct { // The total amount of storage currently used for snapshots. TotalBackupSizeInMegaBytes *float64 `type:"double"` // The total amount of storage currently provisioned. TotalProvisionedStorageInMegaBytes *float64 `type:"double"` // contains filtered or unexported fields }
func (s DescribeStorageOutput) GoString() string
GoString returns the string representation
func (s *DescribeStorageOutput) SetTotalBackupSizeInMegaBytes(v float64) *DescribeStorageOutput
SetTotalBackupSizeInMegaBytes sets the TotalBackupSizeInMegaBytes field's value.
func (s *DescribeStorageOutput) SetTotalProvisionedStorageInMegaBytes(v float64) *DescribeStorageOutput
SetTotalProvisionedStorageInMegaBytes sets the TotalProvisionedStorageInMegaBytes field's value.
func (s DescribeStorageOutput) String() string
String returns the string representation
type DescribeTableRestoreStatusInput struct { // The Amazon Redshift cluster that the table is being restored to. ClusterIdentifier *string `type:"string"` // An optional pagination token provided by a previous DescribeTableRestoreStatus // request. If this parameter is specified, the response includes only records // beyond the marker, up to the value specified by the MaxRecords parameter. Marker *string `type:"string"` // The maximum number of records to include in the response. If more records // exist than the specified MaxRecords value, a pagination token called a marker // is included in the response so that the remaining results can be retrieved. MaxRecords *int64 `type:"integer"` // The identifier of the table restore request to return status for. If you // don't specify a TableRestoreRequestId value, then DescribeTableRestoreStatus // returns the status of all in-progress table restore requests. TableRestoreRequestId *string `type:"string"` // contains filtered or unexported fields }
func (s DescribeTableRestoreStatusInput) GoString() string
GoString returns the string representation
func (s *DescribeTableRestoreStatusInput) SetClusterIdentifier(v string) *DescribeTableRestoreStatusInput
SetClusterIdentifier sets the ClusterIdentifier field's value.
func (s *DescribeTableRestoreStatusInput) SetMarker(v string) *DescribeTableRestoreStatusInput
SetMarker sets the Marker field's value.
func (s *DescribeTableRestoreStatusInput) SetMaxRecords(v int64) *DescribeTableRestoreStatusInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribeTableRestoreStatusInput) SetTableRestoreRequestId(v string) *DescribeTableRestoreStatusInput
SetTableRestoreRequestId sets the TableRestoreRequestId field's value.
func (s DescribeTableRestoreStatusInput) String() string
String returns the string representation
type DescribeTableRestoreStatusOutput struct { // A pagination token that can be used in a subsequent DescribeTableRestoreStatus // request. Marker *string `type:"string"` // A list of status details for one or more table restore requests. TableRestoreStatusDetails []*TableRestoreStatus `locationNameList:"TableRestoreStatus" type:"list"` // contains filtered or unexported fields }
func (s DescribeTableRestoreStatusOutput) GoString() string
GoString returns the string representation
func (s *DescribeTableRestoreStatusOutput) SetMarker(v string) *DescribeTableRestoreStatusOutput
SetMarker sets the Marker field's value.
func (s *DescribeTableRestoreStatusOutput) SetTableRestoreStatusDetails(v []*TableRestoreStatus) *DescribeTableRestoreStatusOutput
SetTableRestoreStatusDetails sets the TableRestoreStatusDetails field's value.
func (s DescribeTableRestoreStatusOutput) String() string
String returns the string representation
type DescribeTagsInput struct { // A value that indicates the starting point for the next set of response records // in a subsequent request. If a value is returned in a response, you can retrieve // the next set of records by providing this returned marker value in the marker // parameter and retrying the command. If the marker field is empty, all response // records have been retrieved for the request. Marker *string `type:"string"` // The maximum number or response records to return in each call. If the number // of remaining response records exceeds the specified MaxRecords value, a value // is returned in a marker field of the response. You can retrieve the next // set of records by retrying the command with the returned marker value. MaxRecords *int64 `type:"integer"` // The Amazon Resource Name (ARN) for which you want to describe the tag or // tags. For example, arn:aws:redshift:us-east-2:123456789:cluster:t1. ResourceName *string `type:"string"` // The type of resource with which you want to view tags. Valid resource types // are: // // * Cluster // // * CIDR/IP // // * EC2 security group // // * Snapshot // // * Cluster security group // // * Subnet group // // * HSM connection // // * HSM certificate // // * Parameter group // // * Snapshot copy grant // // For more information about Amazon Redshift resource types and constructing // ARNs, go to Specifying Policy Elements: Actions, Effects, Resources, and // Principals (https://docs.aws.amazon.com/redshift/latest/mgmt/redshift-iam-access-control-overview.html#redshift-iam-access-control-specify-actions) // in the Amazon Redshift Cluster Management Guide. ResourceType *string `type:"string"` // A tag key or keys for which you want to return all matching resources that // are associated with the specified key or keys. For example, suppose that // you have resources tagged with keys called owner and environment. If you // specify both of these tag keys in the request, Amazon Redshift returns a // response with all resources that have either or both of these tag keys associated // with them. TagKeys []*string `locationNameList:"TagKey" type:"list"` // A tag value or values for which you want to return all matching resources // that are associated with the specified value or values. For example, suppose // that you have resources tagged with values called admin and test. If you // specify both of these tag values in the request, Amazon Redshift returns // a response with all resources that have either or both of these tag values // associated with them. TagValues []*string `locationNameList:"TagValue" type:"list"` // contains filtered or unexported fields }
func (s DescribeTagsInput) GoString() string
GoString returns the string representation
func (s *DescribeTagsInput) SetMarker(v string) *DescribeTagsInput
SetMarker sets the Marker field's value.
func (s *DescribeTagsInput) SetMaxRecords(v int64) *DescribeTagsInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribeTagsInput) SetResourceName(v string) *DescribeTagsInput
SetResourceName sets the ResourceName field's value.
func (s *DescribeTagsInput) SetResourceType(v string) *DescribeTagsInput
SetResourceType sets the ResourceType field's value.
func (s *DescribeTagsInput) SetTagKeys(v []*string) *DescribeTagsInput
SetTagKeys sets the TagKeys field's value.
func (s *DescribeTagsInput) SetTagValues(v []*string) *DescribeTagsInput
SetTagValues sets the TagValues field's value.
func (s DescribeTagsInput) String() string
String returns the string representation
type DescribeTagsOutput struct { // A value that indicates the starting point for the next set of response records // in a subsequent request. If a value is returned in a response, you can retrieve // the next set of records by providing this returned marker value in the Marker // parameter and retrying the command. If the Marker field is empty, all response // records have been retrieved for the request. Marker *string `type:"string"` // A list of tags with their associated resources. TaggedResources []*TaggedResource `locationNameList:"TaggedResource" type:"list"` // contains filtered or unexported fields }
func (s DescribeTagsOutput) GoString() string
GoString returns the string representation
func (s *DescribeTagsOutput) SetMarker(v string) *DescribeTagsOutput
SetMarker sets the Marker field's value.
func (s *DescribeTagsOutput) SetTaggedResources(v []*TaggedResource) *DescribeTagsOutput
SetTaggedResources sets the TaggedResources field's value.
func (s DescribeTagsOutput) String() string
String returns the string representation
type DescribeUsageLimitsInput struct { // The identifier of the cluster for which you want to describe usage limits. ClusterIdentifier *string `type:"string"` // The feature type for which you want to describe usage limits. FeatureType *string `type:"string" enum:"UsageLimitFeatureType"` // An optional parameter that specifies the starting point to return a set of // response records. When the results of a DescribeUsageLimits request exceed // the value specified in MaxRecords, AWS returns a value in the Marker field // of the response. You can retrieve the next set of response records by providing // the returned marker value in the Marker parameter and retrying the request. Marker *string `type:"string"` // The maximum number of response records to return in each call. If the number // of remaining response records exceeds the specified MaxRecords value, a value // is returned in a marker field of the response. You can retrieve the next // set of records by retrying the command with the returned marker value. // // Default: 100 // // Constraints: minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // A tag key or keys for which you want to return all matching usage limit objects // that are associated with the specified key or keys. For example, suppose // that you have parameter groups that are tagged with keys called owner and // environment. If you specify both of these tag keys in the request, Amazon // Redshift returns a response with the usage limit objects have either or both // of these tag keys associated with them. TagKeys []*string `locationNameList:"TagKey" type:"list"` // A tag value or values for which you want to return all matching usage limit // objects that are associated with the specified tag value or values. For example, // suppose that you have parameter groups that are tagged with values called // admin and test. If you specify both of these tag values in the request, Amazon // Redshift returns a response with the usage limit objects that have either // or both of these tag values associated with them. TagValues []*string `locationNameList:"TagValue" type:"list"` // The identifier of the usage limit to describe. UsageLimitId *string `type:"string"` // contains filtered or unexported fields }
func (s DescribeUsageLimitsInput) GoString() string
GoString returns the string representation
func (s *DescribeUsageLimitsInput) SetClusterIdentifier(v string) *DescribeUsageLimitsInput
SetClusterIdentifier sets the ClusterIdentifier field's value.
func (s *DescribeUsageLimitsInput) SetFeatureType(v string) *DescribeUsageLimitsInput
SetFeatureType sets the FeatureType field's value.
func (s *DescribeUsageLimitsInput) SetMarker(v string) *DescribeUsageLimitsInput
SetMarker sets the Marker field's value.
func (s *DescribeUsageLimitsInput) SetMaxRecords(v int64) *DescribeUsageLimitsInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribeUsageLimitsInput) SetTagKeys(v []*string) *DescribeUsageLimitsInput
SetTagKeys sets the TagKeys field's value.
func (s *DescribeUsageLimitsInput) SetTagValues(v []*string) *DescribeUsageLimitsInput
SetTagValues sets the TagValues field's value.
func (s *DescribeUsageLimitsInput) SetUsageLimitId(v string) *DescribeUsageLimitsInput
SetUsageLimitId sets the UsageLimitId field's value.
func (s DescribeUsageLimitsInput) String() string
String returns the string representation
type DescribeUsageLimitsOutput struct { // A value that indicates the starting point for the next set of response records // in a subsequent request. If a value is returned in a response, you can retrieve // the next set of records by providing this returned marker value in the Marker // parameter and retrying the command. If the Marker field is empty, all response // records have been retrieved for the request. Marker *string `type:"string"` // Contains the output from the DescribeUsageLimits action. UsageLimits []*UsageLimit `type:"list"` // contains filtered or unexported fields }
func (s DescribeUsageLimitsOutput) GoString() string
GoString returns the string representation
func (s *DescribeUsageLimitsOutput) SetMarker(v string) *DescribeUsageLimitsOutput
SetMarker sets the Marker field's value.
func (s *DescribeUsageLimitsOutput) SetUsageLimits(v []*UsageLimit) *DescribeUsageLimitsOutput
SetUsageLimits sets the UsageLimits field's value.
func (s DescribeUsageLimitsOutput) String() string
String returns the string representation
type DisableLoggingInput struct { // The identifier of the cluster on which logging is to be stopped. // // Example: examplecluster // // ClusterIdentifier is a required field ClusterIdentifier *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s DisableLoggingInput) GoString() string
GoString returns the string representation
func (s *DisableLoggingInput) SetClusterIdentifier(v string) *DisableLoggingInput
SetClusterIdentifier sets the ClusterIdentifier field's value.
func (s DisableLoggingInput) String() string
String returns the string representation
func (s *DisableLoggingInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DisableSnapshotCopyInput struct { // The unique identifier of the source cluster that you want to disable copying // of snapshots to a destination region. // // Constraints: Must be the valid name of an existing cluster that has cross-region // snapshot copy enabled. // // ClusterIdentifier is a required field ClusterIdentifier *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s DisableSnapshotCopyInput) GoString() string
GoString returns the string representation
func (s *DisableSnapshotCopyInput) SetClusterIdentifier(v string) *DisableSnapshotCopyInput
SetClusterIdentifier sets the ClusterIdentifier field's value.
func (s DisableSnapshotCopyInput) String() string
String returns the string representation
func (s *DisableSnapshotCopyInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DisableSnapshotCopyOutput struct { // Describes a cluster. Cluster *Cluster `type:"structure"` // contains filtered or unexported fields }
func (s DisableSnapshotCopyOutput) GoString() string
GoString returns the string representation
func (s *DisableSnapshotCopyOutput) SetCluster(v *Cluster) *DisableSnapshotCopyOutput
SetCluster sets the Cluster field's value.
func (s DisableSnapshotCopyOutput) String() string
String returns the string representation
type EC2SecurityGroup struct { // The name of the EC2 Security Group. EC2SecurityGroupName *string `type:"string"` // The AWS ID of the owner of the EC2 security group specified in the EC2SecurityGroupName // field. EC2SecurityGroupOwnerId *string `type:"string"` // The status of the EC2 security group. Status *string `type:"string"` // The list of tags for the EC2 security group. Tags []*Tag `locationNameList:"Tag" type:"list"` // contains filtered or unexported fields }
Describes an Amazon EC2 security group.
func (s EC2SecurityGroup) GoString() string
GoString returns the string representation
func (s *EC2SecurityGroup) SetEC2SecurityGroupName(v string) *EC2SecurityGroup
SetEC2SecurityGroupName sets the EC2SecurityGroupName field's value.
func (s *EC2SecurityGroup) SetEC2SecurityGroupOwnerId(v string) *EC2SecurityGroup
SetEC2SecurityGroupOwnerId sets the EC2SecurityGroupOwnerId field's value.
func (s *EC2SecurityGroup) SetStatus(v string) *EC2SecurityGroup
SetStatus sets the Status field's value.
func (s *EC2SecurityGroup) SetTags(v []*Tag) *EC2SecurityGroup
SetTags sets the Tags field's value.
func (s EC2SecurityGroup) String() string
String returns the string representation
type ElasticIpStatus struct { // The elastic IP (EIP) address for the cluster. ElasticIp *string `type:"string"` // The status of the elastic IP (EIP) address. Status *string `type:"string"` // contains filtered or unexported fields }
Describes the status of the elastic IP (EIP) address.
func (s ElasticIpStatus) GoString() string
GoString returns the string representation
func (s *ElasticIpStatus) SetElasticIp(v string) *ElasticIpStatus
SetElasticIp sets the ElasticIp field's value.
func (s *ElasticIpStatus) SetStatus(v string) *ElasticIpStatus
SetStatus sets the Status field's value.
func (s ElasticIpStatus) String() string
String returns the string representation
type EnableLoggingInput struct { // The name of an existing S3 bucket where the log files are to be stored. // // Constraints: // // * Must be in the same region as the cluster // // * The cluster must have read bucket and put object permissions // // BucketName is a required field BucketName *string `type:"string" required:"true"` // The identifier of the cluster on which logging is to be started. // // Example: examplecluster // // ClusterIdentifier is a required field ClusterIdentifier *string `type:"string" required:"true"` // The prefix applied to the log file names. // // Constraints: // // * Cannot exceed 512 characters // // * Cannot contain spaces( ), double quotes ("), single quotes ('), a backslash // (\), or control characters. The hexadecimal codes for invalid characters // are: x00 to x20 x22 x27 x5c x7f or larger S3KeyPrefix *string `type:"string"` // contains filtered or unexported fields }
func (s EnableLoggingInput) GoString() string
GoString returns the string representation
func (s *EnableLoggingInput) SetBucketName(v string) *EnableLoggingInput
SetBucketName sets the BucketName field's value.
func (s *EnableLoggingInput) SetClusterIdentifier(v string) *EnableLoggingInput
SetClusterIdentifier sets the ClusterIdentifier field's value.
func (s *EnableLoggingInput) SetS3KeyPrefix(v string) *EnableLoggingInput
SetS3KeyPrefix sets the S3KeyPrefix field's value.
func (s EnableLoggingInput) String() string
String returns the string representation
func (s *EnableLoggingInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type EnableSnapshotCopyInput struct { // The unique identifier of the source cluster to copy snapshots from. // // Constraints: Must be the valid name of an existing cluster that does not // already have cross-region snapshot copy enabled. // // ClusterIdentifier is a required field ClusterIdentifier *string `type:"string" required:"true"` // The destination AWS Region that you want to copy snapshots to. // // Constraints: Must be the name of a valid AWS Region. For more information, // see Regions and Endpoints (https://docs.aws.amazon.com/general/latest/gr/rande.html#redshift_region) // in the Amazon Web Services General Reference. // // DestinationRegion is a required field DestinationRegion *string `type:"string" required:"true"` // The number of days to retain newly copied snapshots in the destination AWS // Region after they are copied from the source AWS Region. If the value is // -1, the manual snapshot is retained indefinitely. // // The value must be either -1 or an integer between 1 and 3,653. ManualSnapshotRetentionPeriod *int64 `type:"integer"` // The number of days to retain automated snapshots in the destination region // after they are copied from the source region. // // Default: 7. // // Constraints: Must be at least 1 and no more than 35. RetentionPeriod *int64 `type:"integer"` // The name of the snapshot copy grant to use when snapshots of an AWS KMS-encrypted // cluster are copied to the destination region. SnapshotCopyGrantName *string `type:"string"` // contains filtered or unexported fields }
func (s EnableSnapshotCopyInput) GoString() string
GoString returns the string representation
func (s *EnableSnapshotCopyInput) SetClusterIdentifier(v string) *EnableSnapshotCopyInput
SetClusterIdentifier sets the ClusterIdentifier field's value.
func (s *EnableSnapshotCopyInput) SetDestinationRegion(v string) *EnableSnapshotCopyInput
SetDestinationRegion sets the DestinationRegion field's value.
func (s *EnableSnapshotCopyInput) SetManualSnapshotRetentionPeriod(v int64) *EnableSnapshotCopyInput
SetManualSnapshotRetentionPeriod sets the ManualSnapshotRetentionPeriod field's value.
func (s *EnableSnapshotCopyInput) SetRetentionPeriod(v int64) *EnableSnapshotCopyInput
SetRetentionPeriod sets the RetentionPeriod field's value.
func (s *EnableSnapshotCopyInput) SetSnapshotCopyGrantName(v string) *EnableSnapshotCopyInput
SetSnapshotCopyGrantName sets the SnapshotCopyGrantName field's value.
func (s EnableSnapshotCopyInput) String() string
String returns the string representation
func (s *EnableSnapshotCopyInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type EnableSnapshotCopyOutput struct { // Describes a cluster. Cluster *Cluster `type:"structure"` // contains filtered or unexported fields }
func (s EnableSnapshotCopyOutput) GoString() string
GoString returns the string representation
func (s *EnableSnapshotCopyOutput) SetCluster(v *Cluster) *EnableSnapshotCopyOutput
SetCluster sets the Cluster field's value.
func (s EnableSnapshotCopyOutput) String() string
String returns the string representation
type Endpoint struct { // The DNS address of the Cluster. Address *string `type:"string"` // The port that the database engine is listening on. Port *int64 `type:"integer"` // Describes a connection endpoint. VpcEndpoints []*VpcEndpoint `locationNameList:"VpcEndpoint" type:"list"` // contains filtered or unexported fields }
Describes a connection endpoint.
func (s Endpoint) GoString() string
GoString returns the string representation
func (s *Endpoint) SetAddress(v string) *Endpoint
SetAddress sets the Address field's value.
func (s *Endpoint) SetPort(v int64) *Endpoint
SetPort sets the Port field's value.
func (s *Endpoint) SetVpcEndpoints(v []*VpcEndpoint) *Endpoint
SetVpcEndpoints sets the VpcEndpoints field's value.
func (s Endpoint) String() string
String returns the string representation
type Event struct { // The date and time of the event. Date *time.Time `type:"timestamp"` // A list of the event categories. // // Values: Configuration, Management, Monitoring, Security EventCategories []*string `locationNameList:"EventCategory" type:"list"` // The identifier of the event. EventId *string `type:"string"` // The text of this event. Message *string `type:"string"` // The severity of the event. // // Values: ERROR, INFO Severity *string `type:"string"` // The identifier for the source of the event. SourceIdentifier *string `type:"string"` // The source type for this event. SourceType *string `type:"string" enum:"SourceType"` // contains filtered or unexported fields }
Describes an event.
func (s Event) GoString() string
GoString returns the string representation
func (s *Event) SetDate(v time.Time) *Event
SetDate sets the Date field's value.
func (s *Event) SetEventCategories(v []*string) *Event
SetEventCategories sets the EventCategories field's value.
func (s *Event) SetEventId(v string) *Event
SetEventId sets the EventId field's value.
func (s *Event) SetMessage(v string) *Event
SetMessage sets the Message field's value.
func (s *Event) SetSeverity(v string) *Event
SetSeverity sets the Severity field's value.
func (s *Event) SetSourceIdentifier(v string) *Event
SetSourceIdentifier sets the SourceIdentifier field's value.
func (s *Event) SetSourceType(v string) *Event
SetSourceType sets the SourceType field's value.
func (s Event) String() string
String returns the string representation
type EventCategoriesMap struct { // The events in the event category. Events []*EventInfoMap `locationNameList:"EventInfoMap" type:"list"` // The source type, such as cluster or cluster-snapshot, that the returned categories // belong to. SourceType *string `type:"string"` // contains filtered or unexported fields }
Describes event categories.
func (s EventCategoriesMap) GoString() string
GoString returns the string representation
func (s *EventCategoriesMap) SetEvents(v []*EventInfoMap) *EventCategoriesMap
SetEvents sets the Events field's value.
func (s *EventCategoriesMap) SetSourceType(v string) *EventCategoriesMap
SetSourceType sets the SourceType field's value.
func (s EventCategoriesMap) String() string
String returns the string representation
type EventInfoMap struct { // The category of an Amazon Redshift event. EventCategories []*string `locationNameList:"EventCategory" type:"list"` // The description of an Amazon Redshift event. EventDescription *string `type:"string"` // The identifier of an Amazon Redshift event. EventId *string `type:"string"` // The severity of the event. // // Values: ERROR, INFO Severity *string `type:"string"` // contains filtered or unexported fields }
Describes event information.
func (s EventInfoMap) GoString() string
GoString returns the string representation
func (s *EventInfoMap) SetEventCategories(v []*string) *EventInfoMap
SetEventCategories sets the EventCategories field's value.
func (s *EventInfoMap) SetEventDescription(v string) *EventInfoMap
SetEventDescription sets the EventDescription field's value.
func (s *EventInfoMap) SetEventId(v string) *EventInfoMap
SetEventId sets the EventId field's value.
func (s *EventInfoMap) SetSeverity(v string) *EventInfoMap
SetSeverity sets the Severity field's value.
func (s EventInfoMap) String() string
String returns the string representation
type EventSubscription struct { // The name of the Amazon Redshift event notification subscription. CustSubscriptionId *string `type:"string"` // The AWS customer account associated with the Amazon Redshift event notification // subscription. CustomerAwsId *string `type:"string"` // A boolean value indicating whether the subscription is enabled; true indicates // that the subscription is enabled. Enabled *bool `type:"boolean"` // The list of Amazon Redshift event categories specified in the event notification // subscription. // // Values: Configuration, Management, Monitoring, Security EventCategoriesList []*string `locationNameList:"EventCategory" type:"list"` // The event severity specified in the Amazon Redshift event notification subscription. // // Values: ERROR, INFO Severity *string `type:"string"` // The Amazon Resource Name (ARN) of the Amazon SNS topic used by the event // notification subscription. SnsTopicArn *string `type:"string"` // A list of the sources that publish events to the Amazon Redshift event notification // subscription. SourceIdsList []*string `locationNameList:"SourceId" type:"list"` // The source type of the events returned by the Amazon Redshift event notification, // such as cluster, cluster-snapshot, cluster-parameter-group, cluster-security-group, // or scheduled-action. SourceType *string `type:"string"` // The status of the Amazon Redshift event notification subscription. // // Constraints: // // * Can be one of the following: active | no-permission | topic-not-exist // // * The status "no-permission" indicates that Amazon Redshift no longer // has permission to post to the Amazon SNS topic. The status "topic-not-exist" // indicates that the topic was deleted after the subscription was created. Status *string `type:"string"` // The date and time the Amazon Redshift event notification subscription was // created. SubscriptionCreationTime *time.Time `type:"timestamp"` // The list of tags for the event subscription. Tags []*Tag `locationNameList:"Tag" type:"list"` // contains filtered or unexported fields }
Describes event subscriptions.
func (s EventSubscription) GoString() string
GoString returns the string representation
func (s *EventSubscription) SetCustSubscriptionId(v string) *EventSubscription
SetCustSubscriptionId sets the CustSubscriptionId field's value.
func (s *EventSubscription) SetCustomerAwsId(v string) *EventSubscription
SetCustomerAwsId sets the CustomerAwsId field's value.
func (s *EventSubscription) SetEnabled(v bool) *EventSubscription
SetEnabled sets the Enabled field's value.
func (s *EventSubscription) SetEventCategoriesList(v []*string) *EventSubscription
SetEventCategoriesList sets the EventCategoriesList field's value.
func (s *EventSubscription) SetSeverity(v string) *EventSubscription
SetSeverity sets the Severity field's value.
func (s *EventSubscription) SetSnsTopicArn(v string) *EventSubscription
SetSnsTopicArn sets the SnsTopicArn field's value.
func (s *EventSubscription) SetSourceIdsList(v []*string) *EventSubscription
SetSourceIdsList sets the SourceIdsList field's value.
func (s *EventSubscription) SetSourceType(v string) *EventSubscription
SetSourceType sets the SourceType field's value.
func (s *EventSubscription) SetStatus(v string) *EventSubscription
SetStatus sets the Status field's value.
func (s *EventSubscription) SetSubscriptionCreationTime(v time.Time) *EventSubscription
SetSubscriptionCreationTime sets the SubscriptionCreationTime field's value.
func (s *EventSubscription) SetTags(v []*Tag) *EventSubscription
SetTags sets the Tags field's value.
func (s EventSubscription) String() string
String returns the string representation
type GetClusterCredentialsInput struct { // Create a database user with the name specified for the user named in DbUser // if one does not exist. AutoCreate *bool `type:"boolean"` // The unique identifier of the cluster that contains the database for which // your are requesting credentials. This parameter is case sensitive. // // ClusterIdentifier is a required field ClusterIdentifier *string `type:"string" required:"true"` // A list of the names of existing database groups that the user named in DbUser // will join for the current session, in addition to any group memberships for // an existing user. If not specified, a new user is added only to PUBLIC. // // Database group name constraints // // * Must be 1 to 64 alphanumeric characters or hyphens // // * Must contain only lowercase letters, numbers, underscore, plus sign, // period (dot), at symbol (@), or hyphen. // // * First character must be a letter. // // * Must not contain a colon ( : ) or slash ( / ). // // * Cannot be a reserved word. A list of reserved words can be found in // Reserved Words (http://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html) // in the Amazon Redshift Database Developer Guide. DbGroups []*string `locationNameList:"DbGroup" type:"list"` // The name of a database that DbUser is authorized to log on to. If DbName // is not specified, DbUser can log on to any existing database. // // Constraints: // // * Must be 1 to 64 alphanumeric characters or hyphens // // * Must contain only lowercase letters, numbers, underscore, plus sign, // period (dot), at symbol (@), or hyphen. // // * First character must be a letter. // // * Must not contain a colon ( : ) or slash ( / ). // // * Cannot be a reserved word. A list of reserved words can be found in // Reserved Words (http://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html) // in the Amazon Redshift Database Developer Guide. DbName *string `type:"string"` // The name of a database user. If a user name matching DbUser exists in the // database, the temporary user credentials have the same permissions as the // existing user. If DbUser doesn't exist in the database and Autocreate is // True, a new user is created using the value for DbUser with PUBLIC permissions. // If a database user matching the value for DbUser doesn't exist and Autocreate // is False, then the command succeeds but the connection attempt will fail // because the user doesn't exist in the database. // // For more information, see CREATE USER (https://docs.aws.amazon.com/redshift/latest/dg/r_CREATE_USER.html) // in the Amazon Redshift Database Developer Guide. // // Constraints: // // * Must be 1 to 64 alphanumeric characters or hyphens. The user name can't // be PUBLIC. // // * Must contain only lowercase letters, numbers, underscore, plus sign, // period (dot), at symbol (@), or hyphen. // // * First character must be a letter. // // * Must not contain a colon ( : ) or slash ( / ). // // * Cannot be a reserved word. A list of reserved words can be found in // Reserved Words (http://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html) // in the Amazon Redshift Database Developer Guide. // // DbUser is a required field DbUser *string `type:"string" required:"true"` // The number of seconds until the returned temporary password expires. // // Constraint: minimum 900, maximum 3600. // // Default: 900 DurationSeconds *int64 `type:"integer"` // contains filtered or unexported fields }
The request parameters to get cluster credentials.
func (s GetClusterCredentialsInput) GoString() string
GoString returns the string representation
func (s *GetClusterCredentialsInput) SetAutoCreate(v bool) *GetClusterCredentialsInput
SetAutoCreate sets the AutoCreate field's value.
func (s *GetClusterCredentialsInput) SetClusterIdentifier(v string) *GetClusterCredentialsInput
SetClusterIdentifier sets the ClusterIdentifier field's value.
func (s *GetClusterCredentialsInput) SetDbGroups(v []*string) *GetClusterCredentialsInput
SetDbGroups sets the DbGroups field's value.
func (s *GetClusterCredentialsInput) SetDbName(v string) *GetClusterCredentialsInput
SetDbName sets the DbName field's value.
func (s *GetClusterCredentialsInput) SetDbUser(v string) *GetClusterCredentialsInput
SetDbUser sets the DbUser field's value.
func (s *GetClusterCredentialsInput) SetDurationSeconds(v int64) *GetClusterCredentialsInput
SetDurationSeconds sets the DurationSeconds field's value.
func (s GetClusterCredentialsInput) String() string
String returns the string representation
func (s *GetClusterCredentialsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type GetClusterCredentialsOutput struct { // A temporary password that authorizes the user name returned by DbUser to // log on to the database DbName. DbPassword *string `type:"string" sensitive:"true"` // A database user name that is authorized to log on to the database DbName // using the password DbPassword. If the specified DbUser exists in the database, // the new user name has the same database privileges as the the user named // in DbUser. By default, the user is added to PUBLIC. If the DbGroups parameter // is specifed, DbUser is added to the listed groups for any sessions created // using these credentials. DbUser *string `type:"string"` // The date and time the password in DbPassword expires. Expiration *time.Time `type:"timestamp"` // contains filtered or unexported fields }
Temporary credentials with authorization to log on to an Amazon Redshift database.
func (s GetClusterCredentialsOutput) GoString() string
GoString returns the string representation
func (s *GetClusterCredentialsOutput) SetDbPassword(v string) *GetClusterCredentialsOutput
SetDbPassword sets the DbPassword field's value.
func (s *GetClusterCredentialsOutput) SetDbUser(v string) *GetClusterCredentialsOutput
SetDbUser sets the DbUser field's value.
func (s *GetClusterCredentialsOutput) SetExpiration(v time.Time) *GetClusterCredentialsOutput
SetExpiration sets the Expiration field's value.
func (s GetClusterCredentialsOutput) String() string
String returns the string representation
type GetReservedNodeExchangeOfferingsInput struct { // A value that indicates the starting point for the next set of ReservedNodeOfferings. Marker *string `type:"string"` // An integer setting the maximum number of ReservedNodeOfferings to retrieve. MaxRecords *int64 `type:"integer"` // A string representing the node identifier for the DC1 Reserved Node to be // exchanged. // // ReservedNodeId is a required field ReservedNodeId *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s GetReservedNodeExchangeOfferingsInput) GoString() string
GoString returns the string representation
func (s *GetReservedNodeExchangeOfferingsInput) SetMarker(v string) *GetReservedNodeExchangeOfferingsInput
SetMarker sets the Marker field's value.
func (s *GetReservedNodeExchangeOfferingsInput) SetMaxRecords(v int64) *GetReservedNodeExchangeOfferingsInput
SetMaxRecords sets the MaxRecords field's value.
func (s *GetReservedNodeExchangeOfferingsInput) SetReservedNodeId(v string) *GetReservedNodeExchangeOfferingsInput
SetReservedNodeId sets the ReservedNodeId field's value.
func (s GetReservedNodeExchangeOfferingsInput) String() string
String returns the string representation
func (s *GetReservedNodeExchangeOfferingsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type GetReservedNodeExchangeOfferingsOutput struct { // An optional parameter that specifies the starting point for returning a set // of response records. When the results of a GetReservedNodeExchangeOfferings // request exceed the value specified in MaxRecords, Amazon Redshift returns // a value in the marker field of the response. You can retrieve the next set // of response records by providing the returned marker value in the marker // parameter and retrying the request. Marker *string `type:"string"` // Returns an array of ReservedNodeOffering objects. ReservedNodeOfferings []*ReservedNodeOffering `locationNameList:"ReservedNodeOffering" type:"list"` // contains filtered or unexported fields }
func (s GetReservedNodeExchangeOfferingsOutput) GoString() string
GoString returns the string representation
func (s *GetReservedNodeExchangeOfferingsOutput) SetMarker(v string) *GetReservedNodeExchangeOfferingsOutput
SetMarker sets the Marker field's value.
func (s *GetReservedNodeExchangeOfferingsOutput) SetReservedNodeOfferings(v []*ReservedNodeOffering) *GetReservedNodeExchangeOfferingsOutput
SetReservedNodeOfferings sets the ReservedNodeOfferings field's value.
func (s GetReservedNodeExchangeOfferingsOutput) String() string
String returns the string representation
type HsmClientCertificate struct { // The identifier of the HSM client certificate. HsmClientCertificateIdentifier *string `type:"string"` // The public key that the Amazon Redshift cluster will use to connect to the // HSM. You must register the public key in the HSM. HsmClientCertificatePublicKey *string `type:"string"` // The list of tags for the HSM client certificate. Tags []*Tag `locationNameList:"Tag" type:"list"` // contains filtered or unexported fields }
Returns information about an HSM client certificate. The certificate is stored in a secure Hardware Storage Module (HSM), and used by the Amazon Redshift cluster to encrypt data files.
func (s HsmClientCertificate) GoString() string
GoString returns the string representation
func (s *HsmClientCertificate) SetHsmClientCertificateIdentifier(v string) *HsmClientCertificate
SetHsmClientCertificateIdentifier sets the HsmClientCertificateIdentifier field's value.
func (s *HsmClientCertificate) SetHsmClientCertificatePublicKey(v string) *HsmClientCertificate
SetHsmClientCertificatePublicKey sets the HsmClientCertificatePublicKey field's value.
func (s *HsmClientCertificate) SetTags(v []*Tag) *HsmClientCertificate
SetTags sets the Tags field's value.
func (s HsmClientCertificate) String() string
String returns the string representation
type HsmConfiguration struct { // A text description of the HSM configuration. Description *string `type:"string"` // The name of the Amazon Redshift HSM configuration. HsmConfigurationIdentifier *string `type:"string"` // The IP address that the Amazon Redshift cluster must use to access the HSM. HsmIpAddress *string `type:"string"` // The name of the partition in the HSM where the Amazon Redshift clusters will // store their database encryption keys. HsmPartitionName *string `type:"string"` // The list of tags for the HSM configuration. Tags []*Tag `locationNameList:"Tag" type:"list"` // contains filtered or unexported fields }
Returns information about an HSM configuration, which is an object that describes to Amazon Redshift clusters the information they require to connect to an HSM where they can store database encryption keys.
func (s HsmConfiguration) GoString() string
GoString returns the string representation
func (s *HsmConfiguration) SetDescription(v string) *HsmConfiguration
SetDescription sets the Description field's value.
func (s *HsmConfiguration) SetHsmConfigurationIdentifier(v string) *HsmConfiguration
SetHsmConfigurationIdentifier sets the HsmConfigurationIdentifier field's value.
func (s *HsmConfiguration) SetHsmIpAddress(v string) *HsmConfiguration
SetHsmIpAddress sets the HsmIpAddress field's value.
func (s *HsmConfiguration) SetHsmPartitionName(v string) *HsmConfiguration
SetHsmPartitionName sets the HsmPartitionName field's value.
func (s *HsmConfiguration) SetTags(v []*Tag) *HsmConfiguration
SetTags sets the Tags field's value.
func (s HsmConfiguration) String() string
String returns the string representation
type HsmStatus struct { // Specifies the name of the HSM client certificate the Amazon Redshift cluster // uses to retrieve the data encryption keys stored in an HSM. HsmClientCertificateIdentifier *string `type:"string"` // Specifies the name of the HSM configuration that contains the information // the Amazon Redshift cluster can use to retrieve and store keys in an HSM. HsmConfigurationIdentifier *string `type:"string"` // Reports whether the Amazon Redshift cluster has finished applying any HSM // settings changes specified in a modify cluster command. // // Values: active, applying Status *string `type:"string"` // contains filtered or unexported fields }
Describes the status of changes to HSM settings.
func (s HsmStatus) GoString() string
GoString returns the string representation
func (s *HsmStatus) SetHsmClientCertificateIdentifier(v string) *HsmStatus
SetHsmClientCertificateIdentifier sets the HsmClientCertificateIdentifier field's value.
func (s *HsmStatus) SetHsmConfigurationIdentifier(v string) *HsmStatus
SetHsmConfigurationIdentifier sets the HsmConfigurationIdentifier field's value.
func (s *HsmStatus) SetStatus(v string) *HsmStatus
SetStatus sets the Status field's value.
func (s HsmStatus) String() string
String returns the string representation
type IPRange struct { // The IP range in Classless Inter-Domain Routing (CIDR) notation. CIDRIP *string `type:"string"` // The status of the IP range, for example, "authorized". Status *string `type:"string"` // The list of tags for the IP range. Tags []*Tag `locationNameList:"Tag" type:"list"` // contains filtered or unexported fields }
Describes an IP range used in a security group.
func (s IPRange) GoString() string
GoString returns the string representation
func (s *IPRange) SetCIDRIP(v string) *IPRange
SetCIDRIP sets the CIDRIP field's value.
func (s *IPRange) SetStatus(v string) *IPRange
SetStatus sets the Status field's value.
func (s *IPRange) SetTags(v []*Tag) *IPRange
SetTags sets the Tags field's value.
func (s IPRange) String() string
String returns the string representation
type LoggingStatus struct { // The name of the S3 bucket where the log files are stored. BucketName *string `type:"string"` // The message indicating that logs failed to be delivered. LastFailureMessage *string `type:"string"` // The last time when logs failed to be delivered. LastFailureTime *time.Time `type:"timestamp"` // The last time that logs were delivered. LastSuccessfulDeliveryTime *time.Time `type:"timestamp"` // true if logging is on, false if logging is off. LoggingEnabled *bool `type:"boolean"` // The prefix applied to the log file names. S3KeyPrefix *string `type:"string"` // contains filtered or unexported fields }
Describes the status of logging for a cluster.
func (s LoggingStatus) GoString() string
GoString returns the string representation
func (s *LoggingStatus) SetBucketName(v string) *LoggingStatus
SetBucketName sets the BucketName field's value.
func (s *LoggingStatus) SetLastFailureMessage(v string) *LoggingStatus
SetLastFailureMessage sets the LastFailureMessage field's value.
func (s *LoggingStatus) SetLastFailureTime(v time.Time) *LoggingStatus
SetLastFailureTime sets the LastFailureTime field's value.
func (s *LoggingStatus) SetLastSuccessfulDeliveryTime(v time.Time) *LoggingStatus
SetLastSuccessfulDeliveryTime sets the LastSuccessfulDeliveryTime field's value.
func (s *LoggingStatus) SetLoggingEnabled(v bool) *LoggingStatus
SetLoggingEnabled sets the LoggingEnabled field's value.
func (s *LoggingStatus) SetS3KeyPrefix(v string) *LoggingStatus
SetS3KeyPrefix sets the S3KeyPrefix field's value.
func (s LoggingStatus) String() string
String returns the string representation
type MaintenanceTrack struct { // The version number for the cluster release. DatabaseVersion *string `type:"string"` // The name of the maintenance track. Possible values are current and trailing. MaintenanceTrackName *string `type:"string"` // An array of UpdateTarget objects to update with the maintenance track. UpdateTargets []*UpdateTarget `locationNameList:"UpdateTarget" type:"list"` // contains filtered or unexported fields }
Defines a maintenance track that determines which Amazon Redshift version to apply during a maintenance window. If the value for MaintenanceTrack is current, the cluster is updated to the most recently certified maintenance release. If the value is trailing, the cluster is updated to the previously certified maintenance release.
func (s MaintenanceTrack) GoString() string
GoString returns the string representation
func (s *MaintenanceTrack) SetDatabaseVersion(v string) *MaintenanceTrack
SetDatabaseVersion sets the DatabaseVersion field's value.
func (s *MaintenanceTrack) SetMaintenanceTrackName(v string) *MaintenanceTrack
SetMaintenanceTrackName sets the MaintenanceTrackName field's value.
func (s *MaintenanceTrack) SetUpdateTargets(v []*UpdateTarget) *MaintenanceTrack
SetUpdateTargets sets the UpdateTargets field's value.
func (s MaintenanceTrack) String() string
String returns the string representation
type ModifyClusterDbRevisionInput struct { // The unique identifier of a cluster whose database revision you want to modify. // // Example: examplecluster // // ClusterIdentifier is a required field ClusterIdentifier *string `type:"string" required:"true"` // The identifier of the database revision. You can retrieve this value from // the response to the DescribeClusterDbRevisions request. // // RevisionTarget is a required field RevisionTarget *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s ModifyClusterDbRevisionInput) GoString() string
GoString returns the string representation
func (s *ModifyClusterDbRevisionInput) SetClusterIdentifier(v string) *ModifyClusterDbRevisionInput
SetClusterIdentifier sets the ClusterIdentifier field's value.
func (s *ModifyClusterDbRevisionInput) SetRevisionTarget(v string) *ModifyClusterDbRevisionInput
SetRevisionTarget sets the RevisionTarget field's value.
func (s ModifyClusterDbRevisionInput) String() string
String returns the string representation
func (s *ModifyClusterDbRevisionInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ModifyClusterDbRevisionOutput struct { // Describes a cluster. Cluster *Cluster `type:"structure"` // contains filtered or unexported fields }
func (s ModifyClusterDbRevisionOutput) GoString() string
GoString returns the string representation
func (s *ModifyClusterDbRevisionOutput) SetCluster(v *Cluster) *ModifyClusterDbRevisionOutput
SetCluster sets the Cluster field's value.
func (s ModifyClusterDbRevisionOutput) String() string
String returns the string representation
type ModifyClusterIamRolesInput struct { // Zero or more IAM roles to associate with the cluster. The roles must be in // their Amazon Resource Name (ARN) format. You can associate up to 10 IAM roles // with a single cluster in a single request. AddIamRoles []*string `locationNameList:"IamRoleArn" type:"list"` // The unique identifier of the cluster for which you want to associate or disassociate // IAM roles. // // ClusterIdentifier is a required field ClusterIdentifier *string `type:"string" required:"true"` // Zero or more IAM roles in ARN format to disassociate from the cluster. You // can disassociate up to 10 IAM roles from a single cluster in a single request. RemoveIamRoles []*string `locationNameList:"IamRoleArn" type:"list"` // contains filtered or unexported fields }
func (s ModifyClusterIamRolesInput) GoString() string
GoString returns the string representation
func (s *ModifyClusterIamRolesInput) SetAddIamRoles(v []*string) *ModifyClusterIamRolesInput
SetAddIamRoles sets the AddIamRoles field's value.
func (s *ModifyClusterIamRolesInput) SetClusterIdentifier(v string) *ModifyClusterIamRolesInput
SetClusterIdentifier sets the ClusterIdentifier field's value.
func (s *ModifyClusterIamRolesInput) SetRemoveIamRoles(v []*string) *ModifyClusterIamRolesInput
SetRemoveIamRoles sets the RemoveIamRoles field's value.
func (s ModifyClusterIamRolesInput) String() string
String returns the string representation
func (s *ModifyClusterIamRolesInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ModifyClusterIamRolesOutput struct { // Describes a cluster. Cluster *Cluster `type:"structure"` // contains filtered or unexported fields }
func (s ModifyClusterIamRolesOutput) GoString() string
GoString returns the string representation
func (s *ModifyClusterIamRolesOutput) SetCluster(v *Cluster) *ModifyClusterIamRolesOutput
SetCluster sets the Cluster field's value.
func (s ModifyClusterIamRolesOutput) String() string
String returns the string representation
type ModifyClusterInput struct { // If true, major version upgrades will be applied automatically to the cluster // during the maintenance window. // // Default: false AllowVersionUpgrade *bool `type:"boolean"` // The number of days that automated snapshots are retained. If the value is // 0, automated snapshots are disabled. Even if automated snapshots are disabled, // you can still create manual snapshots when you want with CreateClusterSnapshot. // // If you decrease the automated snapshot retention period from its current // value, existing automated snapshots that fall outside of the new retention // period will be immediately deleted. // // Default: Uses existing setting. // // Constraints: Must be a value from 0 to 35. AutomatedSnapshotRetentionPeriod *int64 `type:"integer"` // The option to initiate relocation for an Amazon Redshift cluster to the target // Availability Zone. AvailabilityZone *string `type:"string"` // The option to enable relocation for an Amazon Redshift cluster between Availability // Zones after the cluster modification is complete. AvailabilityZoneRelocation *bool `type:"boolean"` // The unique identifier of the cluster to be modified. // // Example: examplecluster // // ClusterIdentifier is a required field ClusterIdentifier *string `type:"string" required:"true"` // The name of the cluster parameter group to apply to this cluster. This change // is applied only after the cluster is rebooted. To reboot a cluster use RebootCluster. // // Default: Uses existing setting. // // Constraints: The cluster parameter group must be in the same parameter group // family that matches the cluster version. ClusterParameterGroupName *string `type:"string"` // A list of cluster security groups to be authorized on this cluster. This // change is asynchronously applied as soon as possible. // // Security groups currently associated with the cluster, and not in the list // of groups to apply, will be revoked from the cluster. // // Constraints: // // * Must be 1 to 255 alphanumeric characters or hyphens // // * First character must be a letter // // * Cannot end with a hyphen or contain two consecutive hyphens ClusterSecurityGroups []*string `locationNameList:"ClusterSecurityGroupName" type:"list"` // The new cluster type. // // When you submit your cluster resize request, your existing cluster goes into // a read-only mode. After Amazon Redshift provisions a new cluster based on // your resize requirements, there will be outage for a period while the old // cluster is deleted and your connection is switched to the new cluster. You // can use DescribeResize to track the progress of the resize request. // // Valid Values: multi-node | single-node ClusterType *string `type:"string"` // The new version number of the Amazon Redshift engine to upgrade to. // // For major version upgrades, if a non-default cluster parameter group is currently // in use, a new cluster parameter group in the cluster parameter group family // for the new version must be specified. The new cluster parameter group can // be the default for that cluster parameter group family. For more information // about parameters and parameter groups, go to Amazon Redshift Parameter Groups // (https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html) // in the Amazon Redshift Cluster Management Guide. // // Example: 1.0 ClusterVersion *string `type:"string"` // The Elastic IP (EIP) address for the cluster. // // Constraints: The cluster must be provisioned in EC2-VPC and publicly-accessible // through an Internet gateway. For more information about provisioning clusters // in EC2-VPC, go to Supported Platforms to Launch Your Cluster (https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#cluster-platforms) // in the Amazon Redshift Cluster Management Guide. ElasticIp *string `type:"string"` // Indicates whether the cluster is encrypted. If the value is encrypted (true) // and you provide a value for the KmsKeyId parameter, we encrypt the cluster // with the provided KmsKeyId. If you don't provide a KmsKeyId, we encrypt with // the default key. // // If the value is not encrypted (false), then the cluster is decrypted. Encrypted *bool `type:"boolean"` // An option that specifies whether to create the cluster with enhanced VPC // routing enabled. To create a cluster that uses enhanced VPC routing, the // cluster must be in a VPC. For more information, see Enhanced VPC Routing // (https://docs.aws.amazon.com/redshift/latest/mgmt/enhanced-vpc-routing.html) // in the Amazon Redshift Cluster Management Guide. // // If this option is true, enhanced VPC routing is enabled. // // Default: false EnhancedVpcRouting *bool `type:"boolean"` // Specifies the name of the HSM client certificate the Amazon Redshift cluster // uses to retrieve the data encryption keys stored in an HSM. HsmClientCertificateIdentifier *string `type:"string"` // Specifies the name of the HSM configuration that contains the information // the Amazon Redshift cluster can use to retrieve and store keys in an HSM. HsmConfigurationIdentifier *string `type:"string"` // The AWS Key Management Service (KMS) key ID of the encryption key that you // want to use to encrypt data in the cluster. KmsKeyId *string `type:"string"` // The name for the maintenance track that you want to assign for the cluster. // This name change is asynchronous. The new track name stays in the PendingModifiedValues // for the cluster until the next maintenance window. When the maintenance track // changes, the cluster is switched to the latest cluster release available // for the maintenance track. At this point, the maintenance track name is applied. MaintenanceTrackName *string `type:"string"` // The default for number of days that a newly created manual snapshot is retained. // If the value is -1, the manual snapshot is retained indefinitely. This value // doesn't retroactively change the retention periods of existing manual snapshots. // // The value must be either -1 or an integer between 1 and 3,653. // // The default value is -1. ManualSnapshotRetentionPeriod *int64 `type:"integer"` // The new password for the cluster master user. This change is asynchronously // applied as soon as possible. Between the time of the request and the completion // of the request, the MasterUserPassword element exists in the PendingModifiedValues // element of the operation response. // // Operations never return the password, so this operation provides a way to // regain access to the master user account for a cluster if the password is // lost. // // Default: Uses existing setting. // // Constraints: // // * Must be between 8 and 64 characters in length. // // * Must contain at least one uppercase letter. // // * Must contain at least one lowercase letter. // // * Must contain one number. // // * Can be any printable ASCII character (ASCII code 33 to 126) except ' // (single quote), " (double quote), \, /, @, or space. MasterUserPassword *string `type:"string"` // The new identifier for the cluster. // // Constraints: // // * Must contain from 1 to 63 alphanumeric characters or hyphens. // // * Alphabetic characters must be lowercase. // // * First character must be a letter. // // * Cannot end with a hyphen or contain two consecutive hyphens. // // * Must be unique for all clusters within an AWS account. // // Example: examplecluster NewClusterIdentifier *string `type:"string"` // The new node type of the cluster. If you specify a new node type, you must // also specify the number of nodes parameter. // // For more information about resizing clusters, go to Resizing Clusters in // Amazon Redshift (https://docs.aws.amazon.com/redshift/latest/mgmt/rs-resize-tutorial.html) // in the Amazon Redshift Cluster Management Guide. // // Valid Values: ds2.xlarge | ds2.8xlarge | dc1.large | dc1.8xlarge | dc2.large // | dc2.8xlarge | ra3.xlplus | ra3.4xlarge | ra3.16xlarge NodeType *string `type:"string"` // The new number of nodes of the cluster. If you specify a new number of nodes, // you must also specify the node type parameter. // // For more information about resizing clusters, go to Resizing Clusters in // Amazon Redshift (https://docs.aws.amazon.com/redshift/latest/mgmt/rs-resize-tutorial.html) // in the Amazon Redshift Cluster Management Guide. // // Valid Values: Integer greater than 0. NumberOfNodes *int64 `type:"integer"` // The option to change the port of an Amazon Redshift cluster. Port *int64 `type:"integer"` // The weekly time range (in UTC) during which system maintenance can occur, // if necessary. If system maintenance is necessary during the window, it may // result in an outage. // // This maintenance window change is made immediately. If the new maintenance // window indicates the current time, there must be at least 120 minutes between // the current time and end of the window in order to ensure that pending changes // are applied. // // Default: Uses existing setting. // // Format: ddd:hh24:mi-ddd:hh24:mi, for example wed:07:30-wed:08:00. // // Valid Days: Mon | Tue | Wed | Thu | Fri | Sat | Sun // // Constraints: Must be at least 30 minutes. PreferredMaintenanceWindow *string `type:"string"` // If true, the cluster can be accessed from a public network. Only clusters // in VPCs can be set to be publicly available. PubliclyAccessible *bool `type:"boolean"` // A list of virtual private cloud (VPC) security groups to be associated with // the cluster. This change is asynchronously applied as soon as possible. VpcSecurityGroupIds []*string `locationNameList:"VpcSecurityGroupId" type:"list"` // contains filtered or unexported fields }
func (s ModifyClusterInput) GoString() string
GoString returns the string representation
func (s *ModifyClusterInput) SetAllowVersionUpgrade(v bool) *ModifyClusterInput
SetAllowVersionUpgrade sets the AllowVersionUpgrade field's value.
func (s *ModifyClusterInput) SetAutomatedSnapshotRetentionPeriod(v int64) *ModifyClusterInput
SetAutomatedSnapshotRetentionPeriod sets the AutomatedSnapshotRetentionPeriod field's value.
func (s *ModifyClusterInput) SetAvailabilityZone(v string) *ModifyClusterInput
SetAvailabilityZone sets the AvailabilityZone field's value.
func (s *ModifyClusterInput) SetAvailabilityZoneRelocation(v bool) *ModifyClusterInput
SetAvailabilityZoneRelocation sets the AvailabilityZoneRelocation field's value.
func (s *ModifyClusterInput) SetClusterIdentifier(v string) *ModifyClusterInput
SetClusterIdentifier sets the ClusterIdentifier field's value.
func (s *ModifyClusterInput) SetClusterParameterGroupName(v string) *ModifyClusterInput
SetClusterParameterGroupName sets the ClusterParameterGroupName field's value.
func (s *ModifyClusterInput) SetClusterSecurityGroups(v []*string) *ModifyClusterInput
SetClusterSecurityGroups sets the ClusterSecurityGroups field's value.
func (s *ModifyClusterInput) SetClusterType(v string) *ModifyClusterInput
SetClusterType sets the ClusterType field's value.
func (s *ModifyClusterInput) SetClusterVersion(v string) *ModifyClusterInput
SetClusterVersion sets the ClusterVersion field's value.
func (s *ModifyClusterInput) SetElasticIp(v string) *ModifyClusterInput
SetElasticIp sets the ElasticIp field's value.
func (s *ModifyClusterInput) SetEncrypted(v bool) *ModifyClusterInput
SetEncrypted sets the Encrypted field's value.
func (s *ModifyClusterInput) SetEnhancedVpcRouting(v bool) *ModifyClusterInput
SetEnhancedVpcRouting sets the EnhancedVpcRouting field's value.
func (s *ModifyClusterInput) SetHsmClientCertificateIdentifier(v string) *ModifyClusterInput
SetHsmClientCertificateIdentifier sets the HsmClientCertificateIdentifier field's value.
func (s *ModifyClusterInput) SetHsmConfigurationIdentifier(v string) *ModifyClusterInput
SetHsmConfigurationIdentifier sets the HsmConfigurationIdentifier field's value.
func (s *ModifyClusterInput) SetKmsKeyId(v string) *ModifyClusterInput
SetKmsKeyId sets the KmsKeyId field's value.
func (s *ModifyClusterInput) SetMaintenanceTrackName(v string) *ModifyClusterInput
SetMaintenanceTrackName sets the MaintenanceTrackName field's value.
func (s *ModifyClusterInput) SetManualSnapshotRetentionPeriod(v int64) *ModifyClusterInput
SetManualSnapshotRetentionPeriod sets the ManualSnapshotRetentionPeriod field's value.
func (s *ModifyClusterInput) SetMasterUserPassword(v string) *ModifyClusterInput
SetMasterUserPassword sets the MasterUserPassword field's value.
func (s *ModifyClusterInput) SetNewClusterIdentifier(v string) *ModifyClusterInput
SetNewClusterIdentifier sets the NewClusterIdentifier field's value.
func (s *ModifyClusterInput) SetNodeType(v string) *ModifyClusterInput
SetNodeType sets the NodeType field's value.
func (s *ModifyClusterInput) SetNumberOfNodes(v int64) *ModifyClusterInput
SetNumberOfNodes sets the NumberOfNodes field's value.
func (s *ModifyClusterInput) SetPort(v int64) *ModifyClusterInput
SetPort sets the Port field's value.
func (s *ModifyClusterInput) SetPreferredMaintenanceWindow(v string) *ModifyClusterInput
SetPreferredMaintenanceWindow sets the PreferredMaintenanceWindow field's value.
func (s *ModifyClusterInput) SetPubliclyAccessible(v bool) *ModifyClusterInput
SetPubliclyAccessible sets the PubliclyAccessible field's value.
func (s *ModifyClusterInput) SetVpcSecurityGroupIds(v []*string) *ModifyClusterInput
SetVpcSecurityGroupIds sets the VpcSecurityGroupIds field's value.
func (s ModifyClusterInput) String() string
String returns the string representation
func (s *ModifyClusterInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ModifyClusterMaintenanceInput struct { // A unique identifier for the cluster. // // ClusterIdentifier is a required field ClusterIdentifier *string `type:"string" required:"true"` // A boolean indicating whether to enable the deferred maintenance window. DeferMaintenance *bool `type:"boolean"` // An integer indicating the duration of the maintenance window in days. If // you specify a duration, you can't specify an end time. The duration must // be 45 days or less. DeferMaintenanceDuration *int64 `type:"integer"` // A timestamp indicating end time for the deferred maintenance window. If you // specify an end time, you can't specify a duration. DeferMaintenanceEndTime *time.Time `type:"timestamp"` // A unique identifier for the deferred maintenance window. DeferMaintenanceIdentifier *string `type:"string"` // A timestamp indicating the start time for the deferred maintenance window. DeferMaintenanceStartTime *time.Time `type:"timestamp"` // contains filtered or unexported fields }
func (s ModifyClusterMaintenanceInput) GoString() string
GoString returns the string representation
func (s *ModifyClusterMaintenanceInput) SetClusterIdentifier(v string) *ModifyClusterMaintenanceInput
SetClusterIdentifier sets the ClusterIdentifier field's value.
func (s *ModifyClusterMaintenanceInput) SetDeferMaintenance(v bool) *ModifyClusterMaintenanceInput
SetDeferMaintenance sets the DeferMaintenance field's value.
func (s *ModifyClusterMaintenanceInput) SetDeferMaintenanceDuration(v int64) *ModifyClusterMaintenanceInput
SetDeferMaintenanceDuration sets the DeferMaintenanceDuration field's value.
func (s *ModifyClusterMaintenanceInput) SetDeferMaintenanceEndTime(v time.Time) *ModifyClusterMaintenanceInput
SetDeferMaintenanceEndTime sets the DeferMaintenanceEndTime field's value.
func (s *ModifyClusterMaintenanceInput) SetDeferMaintenanceIdentifier(v string) *ModifyClusterMaintenanceInput
SetDeferMaintenanceIdentifier sets the DeferMaintenanceIdentifier field's value.
func (s *ModifyClusterMaintenanceInput) SetDeferMaintenanceStartTime(v time.Time) *ModifyClusterMaintenanceInput
SetDeferMaintenanceStartTime sets the DeferMaintenanceStartTime field's value.
func (s ModifyClusterMaintenanceInput) String() string
String returns the string representation
func (s *ModifyClusterMaintenanceInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ModifyClusterMaintenanceOutput struct { // Describes a cluster. Cluster *Cluster `type:"structure"` // contains filtered or unexported fields }
func (s ModifyClusterMaintenanceOutput) GoString() string
GoString returns the string representation
func (s *ModifyClusterMaintenanceOutput) SetCluster(v *Cluster) *ModifyClusterMaintenanceOutput
SetCluster sets the Cluster field's value.
func (s ModifyClusterMaintenanceOutput) String() string
String returns the string representation
type ModifyClusterOutput struct { // Describes a cluster. Cluster *Cluster `type:"structure"` // contains filtered or unexported fields }
func (s ModifyClusterOutput) GoString() string
GoString returns the string representation
func (s *ModifyClusterOutput) SetCluster(v *Cluster) *ModifyClusterOutput
SetCluster sets the Cluster field's value.
func (s ModifyClusterOutput) String() string
String returns the string representation
type ModifyClusterParameterGroupInput struct { // The name of the parameter group to be modified. // // ParameterGroupName is a required field ParameterGroupName *string `type:"string" required:"true"` // An array of parameters to be modified. A maximum of 20 parameters can be // modified in a single request. // // For each parameter to be modified, you must supply at least the parameter // name and parameter value; other name-value pairs of the parameter are optional. // // For the workload management (WLM) configuration, you must supply all the // name-value pairs in the wlm_json_configuration parameter. // // Parameters is a required field Parameters []*Parameter `locationNameList:"Parameter" type:"list" required:"true"` // contains filtered or unexported fields }
Describes a modify cluster parameter group operation.
func (s ModifyClusterParameterGroupInput) GoString() string
GoString returns the string representation
func (s *ModifyClusterParameterGroupInput) SetParameterGroupName(v string) *ModifyClusterParameterGroupInput
SetParameterGroupName sets the ParameterGroupName field's value.
func (s *ModifyClusterParameterGroupInput) SetParameters(v []*Parameter) *ModifyClusterParameterGroupInput
SetParameters sets the Parameters field's value.
func (s ModifyClusterParameterGroupInput) String() string
String returns the string representation
func (s *ModifyClusterParameterGroupInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ModifyClusterSnapshotInput struct { // A Boolean option to override an exception if the retention period has already // passed. Force *bool `type:"boolean"` // The number of days that a manual snapshot is retained. If the value is -1, // the manual snapshot is retained indefinitely. // // If the manual snapshot falls outside of the new retention period, you can // specify the force option to immediately delete the snapshot. // // The value must be either -1 or an integer between 1 and 3,653. ManualSnapshotRetentionPeriod *int64 `type:"integer"` // The identifier of the snapshot whose setting you want to modify. // // SnapshotIdentifier is a required field SnapshotIdentifier *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s ModifyClusterSnapshotInput) GoString() string
GoString returns the string representation
func (s *ModifyClusterSnapshotInput) SetForce(v bool) *ModifyClusterSnapshotInput
SetForce sets the Force field's value.
func (s *ModifyClusterSnapshotInput) SetManualSnapshotRetentionPeriod(v int64) *ModifyClusterSnapshotInput
SetManualSnapshotRetentionPeriod sets the ManualSnapshotRetentionPeriod field's value.
func (s *ModifyClusterSnapshotInput) SetSnapshotIdentifier(v string) *ModifyClusterSnapshotInput
SetSnapshotIdentifier sets the SnapshotIdentifier field's value.
func (s ModifyClusterSnapshotInput) String() string
String returns the string representation
func (s *ModifyClusterSnapshotInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ModifyClusterSnapshotOutput struct { // Describes a snapshot. Snapshot *Snapshot `type:"structure"` // contains filtered or unexported fields }
func (s ModifyClusterSnapshotOutput) GoString() string
GoString returns the string representation
func (s *ModifyClusterSnapshotOutput) SetSnapshot(v *Snapshot) *ModifyClusterSnapshotOutput
SetSnapshot sets the Snapshot field's value.
func (s ModifyClusterSnapshotOutput) String() string
String returns the string representation
type ModifyClusterSnapshotScheduleInput struct { // A unique identifier for the cluster whose snapshot schedule you want to modify. // // ClusterIdentifier is a required field ClusterIdentifier *string `type:"string" required:"true"` // A boolean to indicate whether to remove the assoiciation between the cluster // and the schedule. DisassociateSchedule *bool `type:"boolean"` // A unique alphanumeric identifier for the schedule that you want to associate // with the cluster. ScheduleIdentifier *string `type:"string"` // contains filtered or unexported fields }
func (s ModifyClusterSnapshotScheduleInput) GoString() string
GoString returns the string representation
func (s *ModifyClusterSnapshotScheduleInput) SetClusterIdentifier(v string) *ModifyClusterSnapshotScheduleInput
SetClusterIdentifier sets the ClusterIdentifier field's value.
func (s *ModifyClusterSnapshotScheduleInput) SetDisassociateSchedule(v bool) *ModifyClusterSnapshotScheduleInput
SetDisassociateSchedule sets the DisassociateSchedule field's value.
func (s *ModifyClusterSnapshotScheduleInput) SetScheduleIdentifier(v string) *ModifyClusterSnapshotScheduleInput
SetScheduleIdentifier sets the ScheduleIdentifier field's value.
func (s ModifyClusterSnapshotScheduleInput) String() string
String returns the string representation
func (s *ModifyClusterSnapshotScheduleInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ModifyClusterSnapshotScheduleOutput struct {
// contains filtered or unexported fields
}
func (s ModifyClusterSnapshotScheduleOutput) GoString() string
GoString returns the string representation
func (s ModifyClusterSnapshotScheduleOutput) String() string
String returns the string representation
type ModifyClusterSubnetGroupInput struct { // The name of the subnet group to be modified. // // ClusterSubnetGroupName is a required field ClusterSubnetGroupName *string `type:"string" required:"true"` // A text description of the subnet group to be modified. Description *string `type:"string"` // An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a // single request. // // SubnetIds is a required field SubnetIds []*string `locationNameList:"SubnetIdentifier" type:"list" required:"true"` // contains filtered or unexported fields }
func (s ModifyClusterSubnetGroupInput) GoString() string
GoString returns the string representation
func (s *ModifyClusterSubnetGroupInput) SetClusterSubnetGroupName(v string) *ModifyClusterSubnetGroupInput
SetClusterSubnetGroupName sets the ClusterSubnetGroupName field's value.
func (s *ModifyClusterSubnetGroupInput) SetDescription(v string) *ModifyClusterSubnetGroupInput
SetDescription sets the Description field's value.
func (s *ModifyClusterSubnetGroupInput) SetSubnetIds(v []*string) *ModifyClusterSubnetGroupInput
SetSubnetIds sets the SubnetIds field's value.
func (s ModifyClusterSubnetGroupInput) String() string
String returns the string representation
func (s *ModifyClusterSubnetGroupInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ModifyClusterSubnetGroupOutput struct { // Describes a subnet group. ClusterSubnetGroup *ClusterSubnetGroup `type:"structure"` // contains filtered or unexported fields }
func (s ModifyClusterSubnetGroupOutput) GoString() string
GoString returns the string representation
func (s *ModifyClusterSubnetGroupOutput) SetClusterSubnetGroup(v *ClusterSubnetGroup) *ModifyClusterSubnetGroupOutput
SetClusterSubnetGroup sets the ClusterSubnetGroup field's value.
func (s ModifyClusterSubnetGroupOutput) String() string
String returns the string representation
type ModifyEventSubscriptionInput struct { // A Boolean value indicating if the subscription is enabled. true indicates // the subscription is enabled Enabled *bool `type:"boolean"` // Specifies the Amazon Redshift event categories to be published by the event // notification subscription. // // Values: configuration, management, monitoring, security EventCategories []*string `locationNameList:"EventCategory" type:"list"` // Specifies the Amazon Redshift event severity to be published by the event // notification subscription. // // Values: ERROR, INFO Severity *string `type:"string"` // The Amazon Resource Name (ARN) of the SNS topic to be used by the event notification // subscription. SnsTopicArn *string `type:"string"` // A list of one or more identifiers of Amazon Redshift source objects. All // of the objects must be of the same type as was specified in the source type // parameter. The event subscription will return only events generated by the // specified objects. If not specified, then events are returned for all objects // within the source type specified. // // Example: my-cluster-1, my-cluster-2 // // Example: my-snapshot-20131010 SourceIds []*string `locationNameList:"SourceId" type:"list"` // The type of source that will be generating the events. For example, if you // want to be notified of events generated by a cluster, you would set this // parameter to cluster. If this value is not specified, events are returned // for all Amazon Redshift objects in your AWS account. You must specify a source // type in order to specify source IDs. // // Valid values: cluster, cluster-parameter-group, cluster-security-group, cluster-snapshot, // and scheduled-action. SourceType *string `type:"string"` // The name of the modified Amazon Redshift event notification subscription. // // SubscriptionName is a required field SubscriptionName *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s ModifyEventSubscriptionInput) GoString() string
GoString returns the string representation
func (s *ModifyEventSubscriptionInput) SetEnabled(v bool) *ModifyEventSubscriptionInput
SetEnabled sets the Enabled field's value.
func (s *ModifyEventSubscriptionInput) SetEventCategories(v []*string) *ModifyEventSubscriptionInput
SetEventCategories sets the EventCategories field's value.
func (s *ModifyEventSubscriptionInput) SetSeverity(v string) *ModifyEventSubscriptionInput
SetSeverity sets the Severity field's value.
func (s *ModifyEventSubscriptionInput) SetSnsTopicArn(v string) *ModifyEventSubscriptionInput
SetSnsTopicArn sets the SnsTopicArn field's value.
func (s *ModifyEventSubscriptionInput) SetSourceIds(v []*string) *ModifyEventSubscriptionInput
SetSourceIds sets the SourceIds field's value.
func (s *ModifyEventSubscriptionInput) SetSourceType(v string) *ModifyEventSubscriptionInput
SetSourceType sets the SourceType field's value.
func (s *ModifyEventSubscriptionInput) SetSubscriptionName(v string) *ModifyEventSubscriptionInput
SetSubscriptionName sets the SubscriptionName field's value.
func (s ModifyEventSubscriptionInput) String() string
String returns the string representation
func (s *ModifyEventSubscriptionInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ModifyEventSubscriptionOutput struct { // Describes event subscriptions. EventSubscription *EventSubscription `type:"structure"` // contains filtered or unexported fields }
func (s ModifyEventSubscriptionOutput) GoString() string
GoString returns the string representation