...
AWS SDK for Go API Reference
We announced the upcoming end-of-support for AWS SDK for Go (v1). We recommend that you migrate to AWS SDK for Go v2. For dates, additional details, and information on how to migrate, please refer to the linked announcement.
import "github.com/aws/aws-sdk-go/service/rds"
Overview
Examples
Constants

Overview ▾

Package rds provides the client and types for making API requests to Amazon Relational Database Service.

Amazon Relational Database Service (Amazon RDS) is a web service that makes it easier to set up, operate, and scale a relational database in the cloud. It provides cost-efficient, resizeable capacity for an industry-standard relational database and manages common database administration tasks, freeing up developers to focus on what makes their applications and businesses unique.

Amazon RDS gives you access to the capabilities of a MySQL, MariaDB, PostgreSQL, Microsoft SQL Server, Oracle, Db2, or Amazon Aurora database server. These capabilities mean that the code, applications, and tools you already use today with your existing databases work with Amazon RDS without modification. Amazon RDS automatically backs up your database and maintains the database software that powers your DB instance. Amazon RDS is flexible: you can scale your DB instance's compute resources and storage capacity to meet your application's demand. As with all Amazon Web Services, there are no up-front investments, and you pay only for the resources you use.

This interface reference for Amazon RDS contains documentation for a programming or command line interface you can use to manage Amazon RDS. Amazon RDS is asynchronous, which means that some interfaces might require techniques such as polling or callback functions to determine when a command has been applied. In this reference, the parameter descriptions indicate whether a command is applied immediately, on the next instance reboot, or during the maintenance window. The reference structure is as follows, and we list following some related topics from the user guide.

Amazon RDS API Reference

Amazon RDS User Guide

See https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31 for more information on this service.

See rds package documentation for more information. https://docs.aws.amazon.com/sdk-for-go/api/service/rds/

Using the Client

To contact Amazon Relational Database Service with the SDK use the New function to create a new service client. With that client you can make API requests to the service. These clients are safe to use concurrently.

See the SDK's documentation for more information on how to use the SDK. https://docs.aws.amazon.com/sdk-for-go/api/

See aws.Config documentation for more information on configuring SDK clients. https://docs.aws.amazon.com/sdk-for-go/api/aws/#Config

See the Amazon Relational Database Service client RDS for more information on creating client for this service. https://docs.aws.amazon.com/sdk-for-go/api/service/rds/#New

IAM User or Role Database Authentication

The rdsutil package's BuildAuthToken function provides a connection authentication token builder. Given an endpoint of the RDS database, AWS region, DB user, and AWS credentials the function will create an presigned URL to use as the authentication token for the database's connection.

The following example shows how to use BuildAuthToken to create an authentication token for connecting to a MySQL database in RDS.

authToken, err := rdsutils.BuildAuthToken(dbEndpoint, awsRegion, dbUser, awsCreds)

// Create the MySQL DNS string for the DB connection
// user:password@protocol(endpoint)/dbname?<params>
dnsStr = fmt.Sprintf("%s:%s@tcp(%s)/%s?tls=true",
   dbUser, authToken, dbEndpoint, dbName,
)

// Use db to perform SQL operations on database
db, err := sql.Open("mysql", dnsStr)

See rdsutil package for more information. http://docs.aws.amazon.com/sdk-for-go/api/service/rds/rdsutils/

The stub package, rdsiface, can be used to provide alternative implementations of service clients, such as mocking the client for testing.

Operations ▾

AddRoleToDBCluster
AddRoleToDBInstance
AddSourceIdentifierToSubscription
AddTagsToResource
ApplyPendingMaintenanceAction
AuthorizeDBSecurityGroupIngress
BacktrackDBCluster
CancelExportTask
CopyDBClusterParameterGroup
CopyDBClusterSnapshot
CopyDBParameterGroup
CopyDBSnapshot
CopyOptionGroup
CreateBlueGreenDeployment
CreateCustomDBEngineVersion
CreateDBCluster
CreateDBClusterEndpoint
CreateDBClusterParameterGroup
CreateDBClusterSnapshot
CreateDBInstance
CreateDBInstanceReadReplica
CreateDBParameterGroup
CreateDBProxy
CreateDBProxyEndpoint
CreateDBSecurityGroup
CreateDBShardGroup
CreateDBSnapshot
CreateDBSubnetGroup
CreateEventSubscription
CreateGlobalCluster
CreateIntegration
CreateOptionGroup
CreateTenantDatabase
DeleteBlueGreenDeployment
DeleteCustomDBEngineVersion
DeleteDBCluster
DeleteDBClusterAutomatedBackup
DeleteDBClusterEndpoint
DeleteDBClusterParameterGroup
DeleteDBClusterSnapshot
DeleteDBInstance
DeleteDBInstanceAutomatedBackup
DeleteDBParameterGroup
DeleteDBProxy
DeleteDBProxyEndpoint
DeleteDBSecurityGroup
DeleteDBShardGroup
DeleteDBSnapshot
DeleteDBSubnetGroup
DeleteEventSubscription
DeleteGlobalCluster
DeleteIntegration
DeleteOptionGroup
DeleteTenantDatabase
DeregisterDBProxyTargets
DescribeAccountAttributes
DescribeBlueGreenDeployments ( Paginator )
DescribeCertificates ( Paginator )
DescribeDBClusterAutomatedBackups ( Paginator )
DescribeDBClusterBacktracks ( Paginator )
DescribeDBClusterEndpoints ( Paginator )
DescribeDBClusterParameterGroups ( Paginator )
DescribeDBClusterParameters ( Paginator )
DescribeDBClusterSnapshotAttributes
DescribeDBClusterSnapshots ( Paginator )
DescribeDBClusters ( Paginator )
DescribeDBEngineVersions ( Paginator )
DescribeDBInstanceAutomatedBackups ( Paginator )
DescribeDBInstances ( Paginator )
DescribeDBLogFiles ( Paginator )
DescribeDBParameterGroups ( Paginator )
DescribeDBParameters ( Paginator )
DescribeDBProxies ( Paginator )
DescribeDBProxyEndpoints ( Paginator )
DescribeDBProxyTargetGroups ( Paginator )
DescribeDBProxyTargets ( Paginator )
DescribeDBRecommendations ( Paginator )
DescribeDBSecurityGroups ( Paginator )
DescribeDBShardGroups
DescribeDBSnapshotAttributes
DescribeDBSnapshotTenantDatabases ( Paginator )
DescribeDBSnapshots ( Paginator )
DescribeDBSubnetGroups ( Paginator )
DescribeEngineDefaultClusterParameters
DescribeEngineDefaultParameters ( Paginator )
DescribeEventCategories
DescribeEventSubscriptions ( Paginator )
DescribeEvents ( Paginator )
DescribeExportTasks ( Paginator )
DescribeGlobalClusters ( Paginator )
DescribeIntegrations ( Paginator )
DescribeOptionGroupOptions ( Paginator )
DescribeOptionGroups ( Paginator )
DescribeOrderableDBInstanceOptions ( Paginator )
DescribePendingMaintenanceActions ( Paginator )
DescribeReservedDBInstances ( Paginator )
DescribeReservedDBInstancesOfferings ( Paginator )
DescribeSourceRegions ( Paginator )
DescribeTenantDatabases ( Paginator )
DescribeValidDBInstanceModifications
DisableHttpEndpoint
DownloadDBLogFilePortion ( Paginator )
EnableHttpEndpoint
FailoverDBCluster
FailoverGlobalCluster
ListTagsForResource
ModifyActivityStream
ModifyCertificates
ModifyCurrentDBClusterCapacity
ModifyCustomDBEngineVersion
ModifyDBCluster
ModifyDBClusterEndpoint
ModifyDBClusterParameterGroup
ModifyDBClusterSnapshotAttribute
ModifyDBInstance
ModifyDBParameterGroup
ModifyDBProxy
ModifyDBProxyEndpoint
ModifyDBProxyTargetGroup
ModifyDBRecommendation
ModifyDBShardGroup
ModifyDBSnapshot
ModifyDBSnapshotAttribute
ModifyDBSubnetGroup
ModifyEventSubscription
ModifyGlobalCluster
ModifyIntegration
ModifyOptionGroup
ModifyTenantDatabase
PromoteReadReplica
PromoteReadReplicaDBCluster
PurchaseReservedDBInstancesOffering
RebootDBCluster
RebootDBInstance
RebootDBShardGroup
RegisterDBProxyTargets
RemoveFromGlobalCluster
RemoveRoleFromDBCluster
RemoveRoleFromDBInstance
RemoveSourceIdentifierFromSubscription
RemoveTagsFromResource
ResetDBClusterParameterGroup
ResetDBParameterGroup
RestoreDBClusterFromS3
RestoreDBClusterFromSnapshot
RestoreDBClusterToPointInTime
RestoreDBInstanceFromDBSnapshot
RestoreDBInstanceFromS3
RestoreDBInstanceToPointInTime
RevokeDBSecurityGroupIngress
StartActivityStream
StartDBCluster
StartDBInstance
StartDBInstanceAutomatedBackupsReplication
StartExportTask
StopActivityStream
StopDBCluster
StopDBInstance
StopDBInstanceAutomatedBackupsReplication
SwitchoverBlueGreenDeployment
SwitchoverGlobalCluster
SwitchoverReadReplica

Types ▾

type RDS
func New(p client.ConfigProvider, cfgs ...*aws.Config) *RDS
func (c *RDS) AddRoleToDBCluster(input *AddRoleToDBClusterInput) (*AddRoleToDBClusterOutput, error)
func (c *RDS) AddRoleToDBClusterRequest(input *AddRoleToDBClusterInput) (req *request.Request, output *AddRoleToDBClusterOutput)
func (c *RDS) AddRoleToDBClusterWithContext(ctx aws.Context, input *AddRoleToDBClusterInput, opts ...request.Option) (*AddRoleToDBClusterOutput, error)
func (c *RDS) AddRoleToDBInstance(input *AddRoleToDBInstanceInput) (*AddRoleToDBInstanceOutput, error)
func (c *RDS) AddRoleToDBInstanceRequest(input *AddRoleToDBInstanceInput) (req *request.Request, output *AddRoleToDBInstanceOutput)
func (c *RDS) AddRoleToDBInstanceWithContext(ctx aws.Context, input *AddRoleToDBInstanceInput, opts ...request.Option) (*AddRoleToDBInstanceOutput, error)
func (c *RDS) AddSourceIdentifierToSubscription(input *AddSourceIdentifierToSubscriptionInput) (*AddSourceIdentifierToSubscriptionOutput, error)
func (c *RDS) AddSourceIdentifierToSubscriptionRequest(input *AddSourceIdentifierToSubscriptionInput) (req *request.Request, output *AddSourceIdentifierToSubscriptionOutput)
func (c *RDS) AddSourceIdentifierToSubscriptionWithContext(ctx aws.Context, input *AddSourceIdentifierToSubscriptionInput, opts ...request.Option) (*AddSourceIdentifierToSubscriptionOutput, error)
func (c *RDS) AddTagsToResource(input *AddTagsToResourceInput) (*AddTagsToResourceOutput, error)
func (c *RDS) AddTagsToResourceRequest(input *AddTagsToResourceInput) (req *request.Request, output *AddTagsToResourceOutput)
func (c *RDS) AddTagsToResourceWithContext(ctx aws.Context, input *AddTagsToResourceInput, opts ...request.Option) (*AddTagsToResourceOutput, error)
func (c *RDS) ApplyPendingMaintenanceAction(input *ApplyPendingMaintenanceActionInput) (*ApplyPendingMaintenanceActionOutput, error)
func (c *RDS) ApplyPendingMaintenanceActionRequest(input *ApplyPendingMaintenanceActionInput) (req *request.Request, output *ApplyPendingMaintenanceActionOutput)
func (c *RDS) ApplyPendingMaintenanceActionWithContext(ctx aws.Context, input *ApplyPendingMaintenanceActionInput, opts ...request.Option) (*ApplyPendingMaintenanceActionOutput, error)
func (c *RDS) AuthorizeDBSecurityGroupIngress(input *AuthorizeDBSecurityGroupIngressInput) (*AuthorizeDBSecurityGroupIngressOutput, error)
func (c *RDS) AuthorizeDBSecurityGroupIngressRequest(input *AuthorizeDBSecurityGroupIngressInput) (req *request.Request, output *AuthorizeDBSecurityGroupIngressOutput)
func (c *RDS) AuthorizeDBSecurityGroupIngressWithContext(ctx aws.Context, input *AuthorizeDBSecurityGroupIngressInput, opts ...request.Option) (*AuthorizeDBSecurityGroupIngressOutput, error)
func (c *RDS) BacktrackDBCluster(input *BacktrackDBClusterInput) (*BacktrackDBClusterOutput, error)
func (c *RDS) BacktrackDBClusterRequest(input *BacktrackDBClusterInput) (req *request.Request, output *BacktrackDBClusterOutput)
func (c *RDS) BacktrackDBClusterWithContext(ctx aws.Context, input *BacktrackDBClusterInput, opts ...request.Option) (*BacktrackDBClusterOutput, error)
func (c *RDS) CancelExportTask(input *CancelExportTaskInput) (*CancelExportTaskOutput, error)
func (c *RDS) CancelExportTaskRequest(input *CancelExportTaskInput) (req *request.Request, output *CancelExportTaskOutput)
func (c *RDS) CancelExportTaskWithContext(ctx aws.Context, input *CancelExportTaskInput, opts ...request.Option) (*CancelExportTaskOutput, error)
func (c *RDS) CopyDBClusterParameterGroup(input *CopyDBClusterParameterGroupInput) (*CopyDBClusterParameterGroupOutput, error)
func (c *RDS) CopyDBClusterParameterGroupRequest(input *CopyDBClusterParameterGroupInput) (req *request.Request, output *CopyDBClusterParameterGroupOutput)
func (c *RDS) CopyDBClusterParameterGroupWithContext(ctx aws.Context, input *CopyDBClusterParameterGroupInput, opts ...request.Option) (*CopyDBClusterParameterGroupOutput, error)
func (c *RDS) CopyDBClusterSnapshot(input *CopyDBClusterSnapshotInput) (*CopyDBClusterSnapshotOutput, error)
func (c *RDS) CopyDBClusterSnapshotRequest(input *CopyDBClusterSnapshotInput) (req *request.Request, output *CopyDBClusterSnapshotOutput)
func (c *RDS) CopyDBClusterSnapshotWithContext(ctx aws.Context, input *CopyDBClusterSnapshotInput, opts ...request.Option) (*CopyDBClusterSnapshotOutput, error)
func (c *RDS) CopyDBParameterGroup(input *CopyDBParameterGroupInput) (*CopyDBParameterGroupOutput, error)
func (c *RDS) CopyDBParameterGroupRequest(input *CopyDBParameterGroupInput) (req *request.Request, output *CopyDBParameterGroupOutput)
func (c *RDS) CopyDBParameterGroupWithContext(ctx aws.Context, input *CopyDBParameterGroupInput, opts ...request.Option) (*CopyDBParameterGroupOutput, error)
func (c *RDS) CopyDBSnapshot(input *CopyDBSnapshotInput) (*CopyDBSnapshotOutput, error)
func (c *RDS) CopyDBSnapshotRequest(input *CopyDBSnapshotInput) (req *request.Request, output *CopyDBSnapshotOutput)
func (c *RDS) CopyDBSnapshotWithContext(ctx aws.Context, input *CopyDBSnapshotInput, opts ...request.Option) (*CopyDBSnapshotOutput, error)
func (c *RDS) CopyOptionGroup(input *CopyOptionGroupInput) (*CopyOptionGroupOutput, error)
func (c *RDS) CopyOptionGroupRequest(input *CopyOptionGroupInput) (req *request.Request, output *CopyOptionGroupOutput)
func (c *RDS) CopyOptionGroupWithContext(ctx aws.Context, input *CopyOptionGroupInput, opts ...request.Option) (*CopyOptionGroupOutput, error)
func (c *RDS) CreateBlueGreenDeployment(input *CreateBlueGreenDeploymentInput) (*CreateBlueGreenDeploymentOutput, error)
func (c *RDS) CreateBlueGreenDeploymentRequest(input *CreateBlueGreenDeploymentInput) (req *request.Request, output *CreateBlueGreenDeploymentOutput)
func (c *RDS) CreateBlueGreenDeploymentWithContext(ctx aws.Context, input *CreateBlueGreenDeploymentInput, opts ...request.Option) (*CreateBlueGreenDeploymentOutput, error)
func (c *RDS) CreateCustomDBEngineVersion(input *CreateCustomDBEngineVersionInput) (*CreateCustomDBEngineVersionOutput, error)
func (c *RDS) CreateCustomDBEngineVersionRequest(input *CreateCustomDBEngineVersionInput) (req *request.Request, output *CreateCustomDBEngineVersionOutput)
func (c *RDS) CreateCustomDBEngineVersionWithContext(ctx aws.Context, input *CreateCustomDBEngineVersionInput, opts ...request.Option) (*CreateCustomDBEngineVersionOutput, error)
func (c *RDS) CreateDBCluster(input *CreateDBClusterInput) (*CreateDBClusterOutput, error)
func (c *RDS) CreateDBClusterEndpoint(input *CreateDBClusterEndpointInput) (*CreateDBClusterEndpointOutput, error)
func (c *RDS) CreateDBClusterEndpointRequest(input *CreateDBClusterEndpointInput) (req *request.Request, output *CreateDBClusterEndpointOutput)
func (c *RDS) CreateDBClusterEndpointWithContext(ctx aws.Context, input *CreateDBClusterEndpointInput, opts ...request.Option) (*CreateDBClusterEndpointOutput, error)
func (c *RDS) CreateDBClusterParameterGroup(input *CreateDBClusterParameterGroupInput) (*CreateDBClusterParameterGroupOutput, error)
func (c *RDS) CreateDBClusterParameterGroupRequest(input *CreateDBClusterParameterGroupInput) (req *request.Request, output *CreateDBClusterParameterGroupOutput)
func (c *RDS) CreateDBClusterParameterGroupWithContext(ctx aws.Context, input *CreateDBClusterParameterGroupInput, opts ...request.Option) (*CreateDBClusterParameterGroupOutput, error)
func (c *RDS) CreateDBClusterRequest(input *CreateDBClusterInput) (req *request.Request, output *CreateDBClusterOutput)
func (c *RDS) CreateDBClusterSnapshot(input *CreateDBClusterSnapshotInput) (*CreateDBClusterSnapshotOutput, error)
func (c *RDS) CreateDBClusterSnapshotRequest(input *CreateDBClusterSnapshotInput) (req *request.Request, output *CreateDBClusterSnapshotOutput)
func (c *RDS) CreateDBClusterSnapshotWithContext(ctx aws.Context, input *CreateDBClusterSnapshotInput, opts ...request.Option) (*CreateDBClusterSnapshotOutput, error)
func (c *RDS) CreateDBClusterWithContext(ctx aws.Context, input *CreateDBClusterInput, opts ...request.Option) (*CreateDBClusterOutput, error)
func (c *RDS) CreateDBInstance(input *CreateDBInstanceInput) (*CreateDBInstanceOutput, error)
func (c *RDS) CreateDBInstanceReadReplica(input *CreateDBInstanceReadReplicaInput) (*CreateDBInstanceReadReplicaOutput, error)
func (c *RDS) CreateDBInstanceReadReplicaRequest(input *CreateDBInstanceReadReplicaInput) (req *request.Request, output *CreateDBInstanceReadReplicaOutput)
func (c *RDS) CreateDBInstanceReadReplicaWithContext(ctx aws.Context, input *CreateDBInstanceReadReplicaInput, opts ...request.Option) (*CreateDBInstanceReadReplicaOutput, error)
func (c *RDS) CreateDBInstanceRequest(input *CreateDBInstanceInput) (req *request.Request, output *CreateDBInstanceOutput)
func (c *RDS) CreateDBInstanceWithContext(ctx aws.Context, input *CreateDBInstanceInput, opts ...request.Option) (*CreateDBInstanceOutput, error)
func (c *RDS) CreateDBParameterGroup(input *CreateDBParameterGroupInput) (*CreateDBParameterGroupOutput, error)
func (c *RDS) CreateDBParameterGroupRequest(input *CreateDBParameterGroupInput) (req *request.Request, output *CreateDBParameterGroupOutput)
func (c *RDS) CreateDBParameterGroupWithContext(ctx aws.Context, input *CreateDBParameterGroupInput, opts ...request.Option) (*CreateDBParameterGroupOutput, error)
func (c *RDS) CreateDBProxy(input *CreateDBProxyInput) (*CreateDBProxyOutput, error)
func (c *RDS) CreateDBProxyEndpoint(input *CreateDBProxyEndpointInput) (*CreateDBProxyEndpointOutput, error)
func (c *RDS) CreateDBProxyEndpointRequest(input *CreateDBProxyEndpointInput) (req *request.Request, output *CreateDBProxyEndpointOutput)
func (c *RDS) CreateDBProxyEndpointWithContext(ctx aws.Context, input *CreateDBProxyEndpointInput, opts ...request.Option) (*CreateDBProxyEndpointOutput, error)
func (c *RDS) CreateDBProxyRequest(input *CreateDBProxyInput) (req *request.Request, output *CreateDBProxyOutput)
func (c *RDS) CreateDBProxyWithContext(ctx aws.Context, input *CreateDBProxyInput, opts ...request.Option) (*CreateDBProxyOutput, error)
func (c *RDS) CreateDBSecurityGroup(input *CreateDBSecurityGroupInput) (*CreateDBSecurityGroupOutput, error)
func (c *RDS) CreateDBSecurityGroupRequest(input *CreateDBSecurityGroupInput) (req *request.Request, output *CreateDBSecurityGroupOutput)
func (c *RDS) CreateDBSecurityGroupWithContext(ctx aws.Context, input *CreateDBSecurityGroupInput, opts ...request.Option) (*CreateDBSecurityGroupOutput, error)
func (c *RDS) CreateDBShardGroup(input *CreateDBShardGroupInput) (*CreateDBShardGroupOutput, error)
func (c *RDS) CreateDBShardGroupRequest(input *CreateDBShardGroupInput) (req *request.Request, output *CreateDBShardGroupOutput)
func (c *RDS) CreateDBShardGroupWithContext(ctx aws.Context, input *CreateDBShardGroupInput, opts ...request.Option) (*CreateDBShardGroupOutput, error)
func (c *RDS) CreateDBSnapshot(input *CreateDBSnapshotInput) (*CreateDBSnapshotOutput, error)
func (c *RDS) CreateDBSnapshotRequest(input *CreateDBSnapshotInput) (req *request.Request, output *CreateDBSnapshotOutput)
func (c *RDS) CreateDBSnapshotWithContext(ctx aws.Context, input *CreateDBSnapshotInput, opts ...request.Option) (*CreateDBSnapshotOutput, error)
func (c *RDS) CreateDBSubnetGroup(input *CreateDBSubnetGroupInput) (*CreateDBSubnetGroupOutput, error)
func (c *RDS) CreateDBSubnetGroupRequest(input *CreateDBSubnetGroupInput) (req *request.Request, output *CreateDBSubnetGroupOutput)
func (c *RDS) CreateDBSubnetGroupWithContext(ctx aws.Context, input *CreateDBSubnetGroupInput, opts ...request.Option) (*CreateDBSubnetGroupOutput, error)
func (c *RDS) CreateEventSubscription(input *CreateEventSubscriptionInput) (*CreateEventSubscriptionOutput, error)
func (c *RDS) CreateEventSubscriptionRequest(input *CreateEventSubscriptionInput) (req *request.Request, output *CreateEventSubscriptionOutput)
func (c *RDS) CreateEventSubscriptionWithContext(ctx aws.Context, input *CreateEventSubscriptionInput, opts ...request.Option) (*CreateEventSubscriptionOutput, error)
func (c *RDS) CreateGlobalCluster(input *CreateGlobalClusterInput) (*CreateGlobalClusterOutput, error)
func (c *RDS) CreateGlobalClusterRequest(input *CreateGlobalClusterInput) (req *request.Request, output *CreateGlobalClusterOutput)
func (c *RDS) CreateGlobalClusterWithContext(ctx aws.Context, input *CreateGlobalClusterInput, opts ...request.Option) (*CreateGlobalClusterOutput, error)
func (c *RDS) CreateIntegration(input *CreateIntegrationInput) (*CreateIntegrationOutput, error)
func (c *RDS) CreateIntegrationRequest(input *CreateIntegrationInput) (req *request.Request, output *CreateIntegrationOutput)
func (c *RDS) CreateIntegrationWithContext(ctx aws.Context, input *CreateIntegrationInput, opts ...request.Option) (*CreateIntegrationOutput, error)
func (c *RDS) CreateOptionGroup(input *CreateOptionGroupInput) (*CreateOptionGroupOutput, error)
func (c *RDS) CreateOptionGroupRequest(input *CreateOptionGroupInput) (req *request.Request, output *CreateOptionGroupOutput)
func (c *RDS) CreateOptionGroupWithContext(ctx aws.Context, input *CreateOptionGroupInput, opts ...request.Option) (*CreateOptionGroupOutput, error)
func (c *RDS) CreateTenantDatabase(input *CreateTenantDatabaseInput) (*CreateTenantDatabaseOutput, error)
func (c *RDS) CreateTenantDatabaseRequest(input *CreateTenantDatabaseInput) (req *request.Request, output *CreateTenantDatabaseOutput)
func (c *RDS) CreateTenantDatabaseWithContext(ctx aws.Context, input *CreateTenantDatabaseInput, opts ...request.Option) (*CreateTenantDatabaseOutput, error)
func (c *RDS) DeleteBlueGreenDeployment(input *DeleteBlueGreenDeploymentInput) (*DeleteBlueGreenDeploymentOutput, error)
func (c *RDS) DeleteBlueGreenDeploymentRequest(input *DeleteBlueGreenDeploymentInput) (req *request.Request, output *DeleteBlueGreenDeploymentOutput)
func (c *RDS) DeleteBlueGreenDeploymentWithContext(ctx aws.Context, input *DeleteBlueGreenDeploymentInput, opts ...request.Option) (*DeleteBlueGreenDeploymentOutput, error)
func (c *RDS) DeleteCustomDBEngineVersion(input *DeleteCustomDBEngineVersionInput) (*DeleteCustomDBEngineVersionOutput, error)
func (c *RDS) DeleteCustomDBEngineVersionRequest(input *DeleteCustomDBEngineVersionInput) (req *request.Request, output *DeleteCustomDBEngineVersionOutput)
func (c *RDS) DeleteCustomDBEngineVersionWithContext(ctx aws.Context, input *DeleteCustomDBEngineVersionInput, opts ...request.Option) (*DeleteCustomDBEngineVersionOutput, error)
func (c *RDS) DeleteDBCluster(input *DeleteDBClusterInput) (*DeleteDBClusterOutput, error)
func (c *RDS) DeleteDBClusterAutomatedBackup(input *DeleteDBClusterAutomatedBackupInput) (*DeleteDBClusterAutomatedBackupOutput, error)
func (c *RDS) DeleteDBClusterAutomatedBackupRequest(input *DeleteDBClusterAutomatedBackupInput) (req *request.Request, output *DeleteDBClusterAutomatedBackupOutput)
func (c *RDS) DeleteDBClusterAutomatedBackupWithContext(ctx aws.Context, input *DeleteDBClusterAutomatedBackupInput, opts ...request.Option) (*DeleteDBClusterAutomatedBackupOutput, error)
func (c *RDS) DeleteDBClusterEndpoint(input *DeleteDBClusterEndpointInput) (*DeleteDBClusterEndpointOutput, error)
func (c *RDS) DeleteDBClusterEndpointRequest(input *DeleteDBClusterEndpointInput) (req *request.Request, output *DeleteDBClusterEndpointOutput)
func (c *RDS) DeleteDBClusterEndpointWithContext(ctx aws.Context, input *DeleteDBClusterEndpointInput, opts ...request.Option) (*DeleteDBClusterEndpointOutput, error)
func (c *RDS) DeleteDBClusterParameterGroup(input *DeleteDBClusterParameterGroupInput) (*DeleteDBClusterParameterGroupOutput, error)
func (c *RDS) DeleteDBClusterParameterGroupRequest(input *DeleteDBClusterParameterGroupInput) (req *request.Request, output *DeleteDBClusterParameterGroupOutput)
func (c *RDS) DeleteDBClusterParameterGroupWithContext(ctx aws.Context, input *DeleteDBClusterParameterGroupInput, opts ...request.Option) (*DeleteDBClusterParameterGroupOutput, error)
func (c *RDS) DeleteDBClusterRequest(input *DeleteDBClusterInput) (req *request.Request, output *DeleteDBClusterOutput)
func (c *RDS) DeleteDBClusterSnapshot(input *DeleteDBClusterSnapshotInput) (*DeleteDBClusterSnapshotOutput, error)
func (c *RDS) DeleteDBClusterSnapshotRequest(input *DeleteDBClusterSnapshotInput) (req *request.Request, output *DeleteDBClusterSnapshotOutput)
func (c *RDS) DeleteDBClusterSnapshotWithContext(ctx aws.Context, input *DeleteDBClusterSnapshotInput, opts ...request.Option) (*DeleteDBClusterSnapshotOutput, error)
func (c *RDS) DeleteDBClusterWithContext(ctx aws.Context, input *DeleteDBClusterInput, opts ...request.Option) (*DeleteDBClusterOutput, error)
func (c *RDS) DeleteDBInstance(input *DeleteDBInstanceInput) (*DeleteDBInstanceOutput, error)
func (c *RDS) DeleteDBInstanceAutomatedBackup(input *DeleteDBInstanceAutomatedBackupInput) (*DeleteDBInstanceAutomatedBackupOutput, error)
func (c *RDS) DeleteDBInstanceAutomatedBackupRequest(input *DeleteDBInstanceAutomatedBackupInput) (req *request.Request, output *DeleteDBInstanceAutomatedBackupOutput)
func (c *RDS) DeleteDBInstanceAutomatedBackupWithContext(ctx aws.Context, input *DeleteDBInstanceAutomatedBackupInput, opts ...request.Option) (*DeleteDBInstanceAutomatedBackupOutput, error)
func (c *RDS) DeleteDBInstanceRequest(input *DeleteDBInstanceInput) (req *request.Request, output *DeleteDBInstanceOutput)
func (c *RDS) DeleteDBInstanceWithContext(ctx aws.Context, input *DeleteDBInstanceInput, opts ...request.Option) (*DeleteDBInstanceOutput, error)
func (c *RDS) DeleteDBParameterGroup(input *DeleteDBParameterGroupInput) (*DeleteDBParameterGroupOutput, error)
func (c *RDS) DeleteDBParameterGroupRequest(input *DeleteDBParameterGroupInput) (req *request.Request, output *DeleteDBParameterGroupOutput)
func (c *RDS) DeleteDBParameterGroupWithContext(ctx aws.Context, input *DeleteDBParameterGroupInput, opts ...request.Option) (*DeleteDBParameterGroupOutput, error)
func (c *RDS) DeleteDBProxy(input *DeleteDBProxyInput) (*DeleteDBProxyOutput, error)
func (c *RDS) DeleteDBProxyEndpoint(input *DeleteDBProxyEndpointInput) (*DeleteDBProxyEndpointOutput, error)
func (c *RDS) DeleteDBProxyEndpointRequest(input *DeleteDBProxyEndpointInput) (req *request.Request, output *DeleteDBProxyEndpointOutput)
func (c *RDS) DeleteDBProxyEndpointWithContext(ctx aws.Context, input *DeleteDBProxyEndpointInput, opts ...request.Option) (*DeleteDBProxyEndpointOutput, error)
func (c *RDS) DeleteDBProxyRequest(input *DeleteDBProxyInput) (req *request.Request, output *DeleteDBProxyOutput)
func (c *RDS) DeleteDBProxyWithContext(ctx aws.Context, input *DeleteDBProxyInput, opts ...request.Option) (*DeleteDBProxyOutput, error)
func (c *RDS) DeleteDBSecurityGroup(input *DeleteDBSecurityGroupInput) (*DeleteDBSecurityGroupOutput, error)
func (c *RDS) DeleteDBSecurityGroupRequest(input *DeleteDBSecurityGroupInput) (req *request.Request, output *DeleteDBSecurityGroupOutput)
func (c *RDS) DeleteDBSecurityGroupWithContext(ctx aws.Context, input *DeleteDBSecurityGroupInput, opts ...request.Option) (*DeleteDBSecurityGroupOutput, error)
func (c *RDS) DeleteDBShardGroup(input *DeleteDBShardGroupInput) (*DeleteDBShardGroupOutput, error)
func (c *RDS) DeleteDBShardGroupRequest(input *DeleteDBShardGroupInput) (req *request.Request, output *DeleteDBShardGroupOutput)
func (c *RDS) DeleteDBShardGroupWithContext(ctx aws.Context, input *DeleteDBShardGroupInput, opts ...request.Option) (*DeleteDBShardGroupOutput, error)
func (c *RDS) DeleteDBSnapshot(input *DeleteDBSnapshotInput) (*DeleteDBSnapshotOutput, error)
func (c *RDS) DeleteDBSnapshotRequest(input *DeleteDBSnapshotInput) (req *request.Request, output *DeleteDBSnapshotOutput)
func (c *RDS) DeleteDBSnapshotWithContext(ctx aws.Context, input *DeleteDBSnapshotInput, opts ...request.Option) (*DeleteDBSnapshotOutput, error)
func (c *RDS) DeleteDBSubnetGroup(input *DeleteDBSubnetGroupInput) (*DeleteDBSubnetGroupOutput, error)
func (c *RDS) DeleteDBSubnetGroupRequest(input *DeleteDBSubnetGroupInput) (req *request.Request, output *DeleteDBSubnetGroupOutput)
func (c *RDS) DeleteDBSubnetGroupWithContext(ctx aws.Context, input *DeleteDBSubnetGroupInput, opts ...request.Option) (*DeleteDBSubnetGroupOutput, error)
func (c *RDS) DeleteEventSubscription(input *DeleteEventSubscriptionInput) (*DeleteEventSubscriptionOutput, error)
func (c *RDS) DeleteEventSubscriptionRequest(input *DeleteEventSubscriptionInput) (req *request.Request, output *DeleteEventSubscriptionOutput)
func (c *RDS) DeleteEventSubscriptionWithContext(ctx aws.Context, input *DeleteEventSubscriptionInput, opts ...request.Option) (*DeleteEventSubscriptionOutput, error)
func (c *RDS) DeleteGlobalCluster(input *DeleteGlobalClusterInput) (*DeleteGlobalClusterOutput, error)
func (c *RDS) DeleteGlobalClusterRequest(input *DeleteGlobalClusterInput) (req *request.Request, output *DeleteGlobalClusterOutput)
func (c *RDS) DeleteGlobalClusterWithContext(ctx aws.Context, input *DeleteGlobalClusterInput, opts ...request.Option) (*DeleteGlobalClusterOutput, error)
func (c *RDS) DeleteIntegration(input *DeleteIntegrationInput) (*DeleteIntegrationOutput, error)
func (c *RDS) DeleteIntegrationRequest(input *DeleteIntegrationInput) (req *request.Request, output *DeleteIntegrationOutput)
func (c *RDS) DeleteIntegrationWithContext(ctx aws.Context, input *DeleteIntegrationInput, opts ...request.Option) (*DeleteIntegrationOutput, error)
func (c *RDS) DeleteOptionGroup(input *DeleteOptionGroupInput) (*DeleteOptionGroupOutput, error)
func (c *RDS) DeleteOptionGroupRequest(input *DeleteOptionGroupInput) (req *request.Request, output *DeleteOptionGroupOutput)
func (c *RDS) DeleteOptionGroupWithContext(ctx aws.Context, input *DeleteOptionGroupInput, opts ...request.Option) (*DeleteOptionGroupOutput, error)
func (c *RDS) DeleteTenantDatabase(input *DeleteTenantDatabaseInput) (*DeleteTenantDatabaseOutput, error)
func (c *RDS) DeleteTenantDatabaseRequest(input *DeleteTenantDatabaseInput) (req *request.Request, output *DeleteTenantDatabaseOutput)
func (c *RDS) DeleteTenantDatabaseWithContext(ctx aws.Context, input *DeleteTenantDatabaseInput, opts ...request.Option) (*DeleteTenantDatabaseOutput, error)
func (c *RDS) DeregisterDBProxyTargets(input *DeregisterDBProxyTargetsInput) (*DeregisterDBProxyTargetsOutput, error)
func (c *RDS) DeregisterDBProxyTargetsRequest(input *DeregisterDBProxyTargetsInput) (req *request.Request, output *DeregisterDBProxyTargetsOutput)
func (c *RDS) DeregisterDBProxyTargetsWithContext(ctx aws.Context, input *DeregisterDBProxyTargetsInput, opts ...request.Option) (*DeregisterDBProxyTargetsOutput, error)
func (c *RDS) DescribeAccountAttributes(input *DescribeAccountAttributesInput) (*DescribeAccountAttributesOutput, error)
func (c *RDS) DescribeAccountAttributesRequest(input *DescribeAccountAttributesInput) (req *request.Request, output *DescribeAccountAttributesOutput)
func (c *RDS) DescribeAccountAttributesWithContext(ctx aws.Context, input *DescribeAccountAttributesInput, opts ...request.Option) (*DescribeAccountAttributesOutput, error)
func (c *RDS) DescribeBlueGreenDeployments(input *DescribeBlueGreenDeploymentsInput) (*DescribeBlueGreenDeploymentsOutput, error)
func (c *RDS) DescribeBlueGreenDeploymentsPages(input *DescribeBlueGreenDeploymentsInput, fn func(*DescribeBlueGreenDeploymentsOutput, bool) bool) error
func (c *RDS) DescribeBlueGreenDeploymentsPagesWithContext(ctx aws.Context, input *DescribeBlueGreenDeploymentsInput, fn func(*DescribeBlueGreenDeploymentsOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeBlueGreenDeploymentsRequest(input *DescribeBlueGreenDeploymentsInput) (req *request.Request, output *DescribeBlueGreenDeploymentsOutput)
func (c *RDS) DescribeBlueGreenDeploymentsWithContext(ctx aws.Context, input *DescribeBlueGreenDeploymentsInput, opts ...request.Option) (*DescribeBlueGreenDeploymentsOutput, error)
func (c *RDS) DescribeCertificates(input *DescribeCertificatesInput) (*DescribeCertificatesOutput, error)
func (c *RDS) DescribeCertificatesPages(input *DescribeCertificatesInput, fn func(*DescribeCertificatesOutput, bool) bool) error
func (c *RDS) DescribeCertificatesPagesWithContext(ctx aws.Context, input *DescribeCertificatesInput, fn func(*DescribeCertificatesOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeCertificatesRequest(input *DescribeCertificatesInput) (req *request.Request, output *DescribeCertificatesOutput)
func (c *RDS) DescribeCertificatesWithContext(ctx aws.Context, input *DescribeCertificatesInput, opts ...request.Option) (*DescribeCertificatesOutput, error)
func (c *RDS) DescribeDBClusterAutomatedBackups(input *DescribeDBClusterAutomatedBackupsInput) (*DescribeDBClusterAutomatedBackupsOutput, error)
func (c *RDS) DescribeDBClusterAutomatedBackupsPages(input *DescribeDBClusterAutomatedBackupsInput, fn func(*DescribeDBClusterAutomatedBackupsOutput, bool) bool) error
func (c *RDS) DescribeDBClusterAutomatedBackupsPagesWithContext(ctx aws.Context, input *DescribeDBClusterAutomatedBackupsInput, fn func(*DescribeDBClusterAutomatedBackupsOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeDBClusterAutomatedBackupsRequest(input *DescribeDBClusterAutomatedBackupsInput) (req *request.Request, output *DescribeDBClusterAutomatedBackupsOutput)
func (c *RDS) DescribeDBClusterAutomatedBackupsWithContext(ctx aws.Context, input *DescribeDBClusterAutomatedBackupsInput, opts ...request.Option) (*DescribeDBClusterAutomatedBackupsOutput, error)
func (c *RDS) DescribeDBClusterBacktracks(input *DescribeDBClusterBacktracksInput) (*DescribeDBClusterBacktracksOutput, error)
func (c *RDS) DescribeDBClusterBacktracksPages(input *DescribeDBClusterBacktracksInput, fn func(*DescribeDBClusterBacktracksOutput, bool) bool) error
func (c *RDS) DescribeDBClusterBacktracksPagesWithContext(ctx aws.Context, input *DescribeDBClusterBacktracksInput, fn func(*DescribeDBClusterBacktracksOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeDBClusterBacktracksRequest(input *DescribeDBClusterBacktracksInput) (req *request.Request, output *DescribeDBClusterBacktracksOutput)
func (c *RDS) DescribeDBClusterBacktracksWithContext(ctx aws.Context, input *DescribeDBClusterBacktracksInput, opts ...request.Option) (*DescribeDBClusterBacktracksOutput, error)
func (c *RDS) DescribeDBClusterEndpoints(input *DescribeDBClusterEndpointsInput) (*DescribeDBClusterEndpointsOutput, error)
func (c *RDS) DescribeDBClusterEndpointsPages(input *DescribeDBClusterEndpointsInput, fn func(*DescribeDBClusterEndpointsOutput, bool) bool) error
func (c *RDS) DescribeDBClusterEndpointsPagesWithContext(ctx aws.Context, input *DescribeDBClusterEndpointsInput, fn func(*DescribeDBClusterEndpointsOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeDBClusterEndpointsRequest(input *DescribeDBClusterEndpointsInput) (req *request.Request, output *DescribeDBClusterEndpointsOutput)
func (c *RDS) DescribeDBClusterEndpointsWithContext(ctx aws.Context, input *DescribeDBClusterEndpointsInput, opts ...request.Option) (*DescribeDBClusterEndpointsOutput, error)
func (c *RDS) DescribeDBClusterParameterGroups(input *DescribeDBClusterParameterGroupsInput) (*DescribeDBClusterParameterGroupsOutput, error)
func (c *RDS) DescribeDBClusterParameterGroupsPages(input *DescribeDBClusterParameterGroupsInput, fn func(*DescribeDBClusterParameterGroupsOutput, bool) bool) error
func (c *RDS) DescribeDBClusterParameterGroupsPagesWithContext(ctx aws.Context, input *DescribeDBClusterParameterGroupsInput, fn func(*DescribeDBClusterParameterGroupsOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeDBClusterParameterGroupsRequest(input *DescribeDBClusterParameterGroupsInput) (req *request.Request, output *DescribeDBClusterParameterGroupsOutput)
func (c *RDS) DescribeDBClusterParameterGroupsWithContext(ctx aws.Context, input *DescribeDBClusterParameterGroupsInput, opts ...request.Option) (*DescribeDBClusterParameterGroupsOutput, error)
func (c *RDS) DescribeDBClusterParameters(input *DescribeDBClusterParametersInput) (*DescribeDBClusterParametersOutput, error)
func (c *RDS) DescribeDBClusterParametersPages(input *DescribeDBClusterParametersInput, fn func(*DescribeDBClusterParametersOutput, bool) bool) error
func (c *RDS) DescribeDBClusterParametersPagesWithContext(ctx aws.Context, input *DescribeDBClusterParametersInput, fn func(*DescribeDBClusterParametersOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeDBClusterParametersRequest(input *DescribeDBClusterParametersInput) (req *request.Request, output *DescribeDBClusterParametersOutput)
func (c *RDS) DescribeDBClusterParametersWithContext(ctx aws.Context, input *DescribeDBClusterParametersInput, opts ...request.Option) (*DescribeDBClusterParametersOutput, error)
func (c *RDS) DescribeDBClusterSnapshotAttributes(input *DescribeDBClusterSnapshotAttributesInput) (*DescribeDBClusterSnapshotAttributesOutput, error)
func (c *RDS) DescribeDBClusterSnapshotAttributesRequest(input *DescribeDBClusterSnapshotAttributesInput) (req *request.Request, output *DescribeDBClusterSnapshotAttributesOutput)
func (c *RDS) DescribeDBClusterSnapshotAttributesWithContext(ctx aws.Context, input *DescribeDBClusterSnapshotAttributesInput, opts ...request.Option) (*DescribeDBClusterSnapshotAttributesOutput, error)
func (c *RDS) DescribeDBClusterSnapshots(input *DescribeDBClusterSnapshotsInput) (*DescribeDBClusterSnapshotsOutput, error)
func (c *RDS) DescribeDBClusterSnapshotsPages(input *DescribeDBClusterSnapshotsInput, fn func(*DescribeDBClusterSnapshotsOutput, bool) bool) error
func (c *RDS) DescribeDBClusterSnapshotsPagesWithContext(ctx aws.Context, input *DescribeDBClusterSnapshotsInput, fn func(*DescribeDBClusterSnapshotsOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeDBClusterSnapshotsRequest(input *DescribeDBClusterSnapshotsInput) (req *request.Request, output *DescribeDBClusterSnapshotsOutput)
func (c *RDS) DescribeDBClusterSnapshotsWithContext(ctx aws.Context, input *DescribeDBClusterSnapshotsInput, opts ...request.Option) (*DescribeDBClusterSnapshotsOutput, error)
func (c *RDS) DescribeDBClusters(input *DescribeDBClustersInput) (*DescribeDBClustersOutput, error)
func (c *RDS) DescribeDBClustersPages(input *DescribeDBClustersInput, fn func(*DescribeDBClustersOutput, bool) bool) error
func (c *RDS) DescribeDBClustersPagesWithContext(ctx aws.Context, input *DescribeDBClustersInput, fn func(*DescribeDBClustersOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeDBClustersRequest(input *DescribeDBClustersInput) (req *request.Request, output *DescribeDBClustersOutput)
func (c *RDS) DescribeDBClustersWithContext(ctx aws.Context, input *DescribeDBClustersInput, opts ...request.Option) (*DescribeDBClustersOutput, error)
func (c *RDS) DescribeDBEngineVersions(input *DescribeDBEngineVersionsInput) (*DescribeDBEngineVersionsOutput, error)
func (c *RDS) DescribeDBEngineVersionsPages(input *DescribeDBEngineVersionsInput, fn func(*DescribeDBEngineVersionsOutput, bool) bool) error
func (c *RDS) DescribeDBEngineVersionsPagesWithContext(ctx aws.Context, input *DescribeDBEngineVersionsInput, fn func(*DescribeDBEngineVersionsOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeDBEngineVersionsRequest(input *DescribeDBEngineVersionsInput) (req *request.Request, output *DescribeDBEngineVersionsOutput)
func (c *RDS) DescribeDBEngineVersionsWithContext(ctx aws.Context, input *DescribeDBEngineVersionsInput, opts ...request.Option) (*DescribeDBEngineVersionsOutput, error)
func (c *RDS) DescribeDBInstanceAutomatedBackups(input *DescribeDBInstanceAutomatedBackupsInput) (*DescribeDBInstanceAutomatedBackupsOutput, error)
func (c *RDS) DescribeDBInstanceAutomatedBackupsPages(input *DescribeDBInstanceAutomatedBackupsInput, fn func(*DescribeDBInstanceAutomatedBackupsOutput, bool) bool) error
func (c *RDS) DescribeDBInstanceAutomatedBackupsPagesWithContext(ctx aws.Context, input *DescribeDBInstanceAutomatedBackupsInput, fn func(*DescribeDBInstanceAutomatedBackupsOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeDBInstanceAutomatedBackupsRequest(input *DescribeDBInstanceAutomatedBackupsInput) (req *request.Request, output *DescribeDBInstanceAutomatedBackupsOutput)
func (c *RDS) DescribeDBInstanceAutomatedBackupsWithContext(ctx aws.Context, input *DescribeDBInstanceAutomatedBackupsInput, opts ...request.Option) (*DescribeDBInstanceAutomatedBackupsOutput, error)
func (c *RDS) DescribeDBInstances(input *DescribeDBInstancesInput) (*DescribeDBInstancesOutput, error)
func (c *RDS) DescribeDBInstancesPages(input *DescribeDBInstancesInput, fn func(*DescribeDBInstancesOutput, bool) bool) error
func (c *RDS) DescribeDBInstancesPagesWithContext(ctx aws.Context, input *DescribeDBInstancesInput, fn func(*DescribeDBInstancesOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeDBInstancesRequest(input *DescribeDBInstancesInput) (req *request.Request, output *DescribeDBInstancesOutput)
func (c *RDS) DescribeDBInstancesWithContext(ctx aws.Context, input *DescribeDBInstancesInput, opts ...request.Option) (*DescribeDBInstancesOutput, error)
func (c *RDS) DescribeDBLogFiles(input *DescribeDBLogFilesInput) (*DescribeDBLogFilesOutput, error)
func (c *RDS) DescribeDBLogFilesPages(input *DescribeDBLogFilesInput, fn func(*DescribeDBLogFilesOutput, bool) bool) error
func (c *RDS) DescribeDBLogFilesPagesWithContext(ctx aws.Context, input *DescribeDBLogFilesInput, fn func(*DescribeDBLogFilesOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeDBLogFilesRequest(input *DescribeDBLogFilesInput) (req *request.Request, output *DescribeDBLogFilesOutput)
func (c *RDS) DescribeDBLogFilesWithContext(ctx aws.Context, input *DescribeDBLogFilesInput, opts ...request.Option) (*DescribeDBLogFilesOutput, error)
func (c *RDS) DescribeDBParameterGroups(input *DescribeDBParameterGroupsInput) (*DescribeDBParameterGroupsOutput, error)
func (c *RDS) DescribeDBParameterGroupsPages(input *DescribeDBParameterGroupsInput, fn func(*DescribeDBParameterGroupsOutput, bool) bool) error
func (c *RDS) DescribeDBParameterGroupsPagesWithContext(ctx aws.Context, input *DescribeDBParameterGroupsInput, fn func(*DescribeDBParameterGroupsOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeDBParameterGroupsRequest(input *DescribeDBParameterGroupsInput) (req *request.Request, output *DescribeDBParameterGroupsOutput)
func (c *RDS) DescribeDBParameterGroupsWithContext(ctx aws.Context, input *DescribeDBParameterGroupsInput, opts ...request.Option) (*DescribeDBParameterGroupsOutput, error)
func (c *RDS) DescribeDBParameters(input *DescribeDBParametersInput) (*DescribeDBParametersOutput, error)
func (c *RDS) DescribeDBParametersPages(input *DescribeDBParametersInput, fn func(*DescribeDBParametersOutput, bool) bool) error
func (c *RDS) DescribeDBParametersPagesWithContext(ctx aws.Context, input *DescribeDBParametersInput, fn func(*DescribeDBParametersOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeDBParametersRequest(input *DescribeDBParametersInput) (req *request.Request, output *DescribeDBParametersOutput)
func (c *RDS) DescribeDBParametersWithContext(ctx aws.Context, input *DescribeDBParametersInput, opts ...request.Option) (*DescribeDBParametersOutput, error)
func (c *RDS) DescribeDBProxies(input *DescribeDBProxiesInput) (*DescribeDBProxiesOutput, error)
func (c *RDS) DescribeDBProxiesPages(input *DescribeDBProxiesInput, fn func(*DescribeDBProxiesOutput, bool) bool) error
func (c *RDS) DescribeDBProxiesPagesWithContext(ctx aws.Context, input *DescribeDBProxiesInput, fn func(*DescribeDBProxiesOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeDBProxiesRequest(input *DescribeDBProxiesInput) (req *request.Request, output *DescribeDBProxiesOutput)
func (c *RDS) DescribeDBProxiesWithContext(ctx aws.Context, input *DescribeDBProxiesInput, opts ...request.Option) (*DescribeDBProxiesOutput, error)
func (c *RDS) DescribeDBProxyEndpoints(input *DescribeDBProxyEndpointsInput) (*DescribeDBProxyEndpointsOutput, error)
func (c *RDS) DescribeDBProxyEndpointsPages(input *DescribeDBProxyEndpointsInput, fn func(*DescribeDBProxyEndpointsOutput, bool) bool) error
func (c *RDS) DescribeDBProxyEndpointsPagesWithContext(ctx aws.Context, input *DescribeDBProxyEndpointsInput, fn func(*DescribeDBProxyEndpointsOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeDBProxyEndpointsRequest(input *DescribeDBProxyEndpointsInput) (req *request.Request, output *DescribeDBProxyEndpointsOutput)
func (c *RDS) DescribeDBProxyEndpointsWithContext(ctx aws.Context, input *DescribeDBProxyEndpointsInput, opts ...request.Option) (*DescribeDBProxyEndpointsOutput, error)
func (c *RDS) DescribeDBProxyTargetGroups(input *DescribeDBProxyTargetGroupsInput) (*DescribeDBProxyTargetGroupsOutput, error)
func (c *RDS) DescribeDBProxyTargetGroupsPages(input *DescribeDBProxyTargetGroupsInput, fn func(*DescribeDBProxyTargetGroupsOutput, bool) bool) error
func (c *RDS) DescribeDBProxyTargetGroupsPagesWithContext(ctx aws.Context, input *DescribeDBProxyTargetGroupsInput, fn func(*DescribeDBProxyTargetGroupsOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeDBProxyTargetGroupsRequest(input *DescribeDBProxyTargetGroupsInput) (req *request.Request, output *DescribeDBProxyTargetGroupsOutput)
func (c *RDS) DescribeDBProxyTargetGroupsWithContext(ctx aws.Context, input *DescribeDBProxyTargetGroupsInput, opts ...request.Option) (*DescribeDBProxyTargetGroupsOutput, error)
func (c *RDS) DescribeDBProxyTargets(input *DescribeDBProxyTargetsInput) (*DescribeDBProxyTargetsOutput, error)
func (c *RDS) DescribeDBProxyTargetsPages(input *DescribeDBProxyTargetsInput, fn func(*DescribeDBProxyTargetsOutput, bool) bool) error
func (c *RDS) DescribeDBProxyTargetsPagesWithContext(ctx aws.Context, input *DescribeDBProxyTargetsInput, fn func(*DescribeDBProxyTargetsOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeDBProxyTargetsRequest(input *DescribeDBProxyTargetsInput) (req *request.Request, output *DescribeDBProxyTargetsOutput)
func (c *RDS) DescribeDBProxyTargetsWithContext(ctx aws.Context, input *DescribeDBProxyTargetsInput, opts ...request.Option) (*DescribeDBProxyTargetsOutput, error)
func (c *RDS) DescribeDBRecommendations(input *DescribeDBRecommendationsInput) (*DescribeDBRecommendationsOutput, error)
func (c *RDS) DescribeDBRecommendationsPages(input *DescribeDBRecommendationsInput, fn func(*DescribeDBRecommendationsOutput, bool) bool) error
func (c *RDS) DescribeDBRecommendationsPagesWithContext(ctx aws.Context, input *DescribeDBRecommendationsInput, fn func(*DescribeDBRecommendationsOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeDBRecommendationsRequest(input *DescribeDBRecommendationsInput) (req *request.Request, output *DescribeDBRecommendationsOutput)
func (c *RDS) DescribeDBRecommendationsWithContext(ctx aws.Context, input *DescribeDBRecommendationsInput, opts ...request.Option) (*DescribeDBRecommendationsOutput, error)
func (c *RDS) DescribeDBSecurityGroups(input *DescribeDBSecurityGroupsInput) (*DescribeDBSecurityGroupsOutput, error)
func (c *RDS) DescribeDBSecurityGroupsPages(input *DescribeDBSecurityGroupsInput, fn func(*DescribeDBSecurityGroupsOutput, bool) bool) error
func (c *RDS) DescribeDBSecurityGroupsPagesWithContext(ctx aws.Context, input *DescribeDBSecurityGroupsInput, fn func(*DescribeDBSecurityGroupsOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeDBSecurityGroupsRequest(input *DescribeDBSecurityGroupsInput) (req *request.Request, output *DescribeDBSecurityGroupsOutput)
func (c *RDS) DescribeDBSecurityGroupsWithContext(ctx aws.Context, input *DescribeDBSecurityGroupsInput, opts ...request.Option) (*DescribeDBSecurityGroupsOutput, error)
func (c *RDS) DescribeDBShardGroups(input *DescribeDBShardGroupsInput) (*DescribeDBShardGroupsOutput, error)
func (c *RDS) DescribeDBShardGroupsRequest(input *DescribeDBShardGroupsInput) (req *request.Request, output *DescribeDBShardGroupsOutput)
func (c *RDS) DescribeDBShardGroupsWithContext(ctx aws.Context, input *DescribeDBShardGroupsInput, opts ...request.Option) (*DescribeDBShardGroupsOutput, error)
func (c *RDS) DescribeDBSnapshotAttributes(input *DescribeDBSnapshotAttributesInput) (*DescribeDBSnapshotAttributesOutput, error)
func (c *RDS) DescribeDBSnapshotAttributesRequest(input *DescribeDBSnapshotAttributesInput) (req *request.Request, output *DescribeDBSnapshotAttributesOutput)
func (c *RDS) DescribeDBSnapshotAttributesWithContext(ctx aws.Context, input *DescribeDBSnapshotAttributesInput, opts ...request.Option) (*DescribeDBSnapshotAttributesOutput, error)
func (c *RDS) DescribeDBSnapshotTenantDatabases(input *DescribeDBSnapshotTenantDatabasesInput) (*DescribeDBSnapshotTenantDatabasesOutput, error)
func (c *RDS) DescribeDBSnapshotTenantDatabasesPages(input *DescribeDBSnapshotTenantDatabasesInput, fn func(*DescribeDBSnapshotTenantDatabasesOutput, bool) bool) error
func (c *RDS) DescribeDBSnapshotTenantDatabasesPagesWithContext(ctx aws.Context, input *DescribeDBSnapshotTenantDatabasesInput, fn func(*DescribeDBSnapshotTenantDatabasesOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeDBSnapshotTenantDatabasesRequest(input *DescribeDBSnapshotTenantDatabasesInput) (req *request.Request, output *DescribeDBSnapshotTenantDatabasesOutput)
func (c *RDS) DescribeDBSnapshotTenantDatabasesWithContext(ctx aws.Context, input *DescribeDBSnapshotTenantDatabasesInput, opts ...request.Option) (*DescribeDBSnapshotTenantDatabasesOutput, error)
func (c *RDS) DescribeDBSnapshots(input *DescribeDBSnapshotsInput) (*DescribeDBSnapshotsOutput, error)
func (c *RDS) DescribeDBSnapshotsPages(input *DescribeDBSnapshotsInput, fn func(*DescribeDBSnapshotsOutput, bool) bool) error
func (c *RDS) DescribeDBSnapshotsPagesWithContext(ctx aws.Context, input *DescribeDBSnapshotsInput, fn func(*DescribeDBSnapshotsOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeDBSnapshotsRequest(input *DescribeDBSnapshotsInput) (req *request.Request, output *DescribeDBSnapshotsOutput)
func (c *RDS) DescribeDBSnapshotsWithContext(ctx aws.Context, input *DescribeDBSnapshotsInput, opts ...request.Option) (*DescribeDBSnapshotsOutput, error)
func (c *RDS) DescribeDBSubnetGroups(input *DescribeDBSubnetGroupsInput) (*DescribeDBSubnetGroupsOutput, error)
func (c *RDS) DescribeDBSubnetGroupsPages(input *DescribeDBSubnetGroupsInput, fn func(*DescribeDBSubnetGroupsOutput, bool) bool) error
func (c *RDS) DescribeDBSubnetGroupsPagesWithContext(ctx aws.Context, input *DescribeDBSubnetGroupsInput, fn func(*DescribeDBSubnetGroupsOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeDBSubnetGroupsRequest(input *DescribeDBSubnetGroupsInput) (req *request.Request, output *DescribeDBSubnetGroupsOutput)
func (c *RDS) DescribeDBSubnetGroupsWithContext(ctx aws.Context, input *DescribeDBSubnetGroupsInput, opts ...request.Option) (*DescribeDBSubnetGroupsOutput, error)
func (c *RDS) DescribeEngineDefaultClusterParameters(input *DescribeEngineDefaultClusterParametersInput) (*DescribeEngineDefaultClusterParametersOutput, error)
func (c *RDS) DescribeEngineDefaultClusterParametersRequest(input *DescribeEngineDefaultClusterParametersInput) (req *request.Request, output *DescribeEngineDefaultClusterParametersOutput)
func (c *RDS) DescribeEngineDefaultClusterParametersWithContext(ctx aws.Context, input *DescribeEngineDefaultClusterParametersInput, opts ...request.Option) (*DescribeEngineDefaultClusterParametersOutput, error)
func (c *RDS) DescribeEngineDefaultParameters(input *DescribeEngineDefaultParametersInput) (*DescribeEngineDefaultParametersOutput, error)
func (c *RDS) DescribeEngineDefaultParametersPages(input *DescribeEngineDefaultParametersInput, fn func(*DescribeEngineDefaultParametersOutput, bool) bool) error
func (c *RDS) DescribeEngineDefaultParametersPagesWithContext(ctx aws.Context, input *DescribeEngineDefaultParametersInput, fn func(*DescribeEngineDefaultParametersOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeEngineDefaultParametersRequest(input *DescribeEngineDefaultParametersInput) (req *request.Request, output *DescribeEngineDefaultParametersOutput)
func (c *RDS) DescribeEngineDefaultParametersWithContext(ctx aws.Context, input *DescribeEngineDefaultParametersInput, opts ...request.Option) (*DescribeEngineDefaultParametersOutput, error)
func (c *RDS) DescribeEventCategories(input *DescribeEventCategoriesInput) (*DescribeEventCategoriesOutput, error)
func (c *RDS) DescribeEventCategoriesRequest(input *DescribeEventCategoriesInput) (req *request.Request, output *DescribeEventCategoriesOutput)
func (c *RDS) DescribeEventCategoriesWithContext(ctx aws.Context, input *DescribeEventCategoriesInput, opts ...request.Option) (*DescribeEventCategoriesOutput, error)
func (c *RDS) DescribeEventSubscriptions(input *DescribeEventSubscriptionsInput) (*DescribeEventSubscriptionsOutput, error)
func (c *RDS) DescribeEventSubscriptionsPages(input *DescribeEventSubscriptionsInput, fn func(*DescribeEventSubscriptionsOutput, bool) bool) error
func (c *RDS) DescribeEventSubscriptionsPagesWithContext(ctx aws.Context, input *DescribeEventSubscriptionsInput, fn func(*DescribeEventSubscriptionsOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeEventSubscriptionsRequest(input *DescribeEventSubscriptionsInput) (req *request.Request, output *DescribeEventSubscriptionsOutput)
func (c *RDS) DescribeEventSubscriptionsWithContext(ctx aws.Context, input *DescribeEventSubscriptionsInput, opts ...request.Option) (*DescribeEventSubscriptionsOutput, error)
func (c *RDS) DescribeEvents(input *DescribeEventsInput) (*DescribeEventsOutput, error)
func (c *RDS) DescribeEventsPages(input *DescribeEventsInput, fn func(*DescribeEventsOutput, bool) bool) error
func (c *RDS) DescribeEventsPagesWithContext(ctx aws.Context, input *DescribeEventsInput, fn func(*DescribeEventsOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeEventsRequest(input *DescribeEventsInput) (req *request.Request, output *DescribeEventsOutput)
func (c *RDS) DescribeEventsWithContext(ctx aws.Context, input *DescribeEventsInput, opts ...request.Option) (*DescribeEventsOutput, error)
func (c *RDS) DescribeExportTasks(input *DescribeExportTasksInput) (*DescribeExportTasksOutput, error)
func (c *RDS) DescribeExportTasksPages(input *DescribeExportTasksInput, fn func(*DescribeExportTasksOutput, bool) bool) error
func (c *RDS) DescribeExportTasksPagesWithContext(ctx aws.Context, input *DescribeExportTasksInput, fn func(*DescribeExportTasksOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeExportTasksRequest(input *DescribeExportTasksInput) (req *request.Request, output *DescribeExportTasksOutput)
func (c *RDS) DescribeExportTasksWithContext(ctx aws.Context, input *DescribeExportTasksInput, opts ...request.Option) (*DescribeExportTasksOutput, error)
func (c *RDS) DescribeGlobalClusters(input *DescribeGlobalClustersInput) (*DescribeGlobalClustersOutput, error)
func (c *RDS) DescribeGlobalClustersPages(input *DescribeGlobalClustersInput, fn func(*DescribeGlobalClustersOutput, bool) bool) error
func (c *RDS) DescribeGlobalClustersPagesWithContext(ctx aws.Context, input *DescribeGlobalClustersInput, fn func(*DescribeGlobalClustersOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeGlobalClustersRequest(input *DescribeGlobalClustersInput) (req *request.Request, output *DescribeGlobalClustersOutput)
func (c *RDS) DescribeGlobalClustersWithContext(ctx aws.Context, input *DescribeGlobalClustersInput, opts ...request.Option) (*DescribeGlobalClustersOutput, error)
func (c *RDS) DescribeIntegrations(input *DescribeIntegrationsInput) (*DescribeIntegrationsOutput, error)
func (c *RDS) DescribeIntegrationsPages(input *DescribeIntegrationsInput, fn func(*DescribeIntegrationsOutput, bool) bool) error
func (c *RDS) DescribeIntegrationsPagesWithContext(ctx aws.Context, input *DescribeIntegrationsInput, fn func(*DescribeIntegrationsOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeIntegrationsRequest(input *DescribeIntegrationsInput) (req *request.Request, output *DescribeIntegrationsOutput)
func (c *RDS) DescribeIntegrationsWithContext(ctx aws.Context, input *DescribeIntegrationsInput, opts ...request.Option) (*DescribeIntegrationsOutput, error)
func (c *RDS) DescribeOptionGroupOptions(input *DescribeOptionGroupOptionsInput) (*DescribeOptionGroupOptionsOutput, error)
func (c *RDS) DescribeOptionGroupOptionsPages(input *DescribeOptionGroupOptionsInput, fn func(*DescribeOptionGroupOptionsOutput, bool) bool) error
func (c *RDS) DescribeOptionGroupOptionsPagesWithContext(ctx aws.Context, input *DescribeOptionGroupOptionsInput, fn func(*DescribeOptionGroupOptionsOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeOptionGroupOptionsRequest(input *DescribeOptionGroupOptionsInput) (req *request.Request, output *DescribeOptionGroupOptionsOutput)
func (c *RDS) DescribeOptionGroupOptionsWithContext(ctx aws.Context, input *DescribeOptionGroupOptionsInput, opts ...request.Option) (*DescribeOptionGroupOptionsOutput, error)
func (c *RDS) DescribeOptionGroups(input *DescribeOptionGroupsInput) (*DescribeOptionGroupsOutput, error)
func (c *RDS) DescribeOptionGroupsPages(input *DescribeOptionGroupsInput, fn func(*DescribeOptionGroupsOutput, bool) bool) error
func (c *RDS) DescribeOptionGroupsPagesWithContext(ctx aws.Context, input *DescribeOptionGroupsInput, fn func(*DescribeOptionGroupsOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeOptionGroupsRequest(input *DescribeOptionGroupsInput) (req *request.Request, output *DescribeOptionGroupsOutput)
func (c *RDS) DescribeOptionGroupsWithContext(ctx aws.Context, input *DescribeOptionGroupsInput, opts ...request.Option) (*DescribeOptionGroupsOutput, error)
func (c *RDS) DescribeOrderableDBInstanceOptions(input *DescribeOrderableDBInstanceOptionsInput) (*DescribeOrderableDBInstanceOptionsOutput, error)
func (c *RDS) DescribeOrderableDBInstanceOptionsPages(input *DescribeOrderableDBInstanceOptionsInput, fn func(*DescribeOrderableDBInstanceOptionsOutput, bool) bool) error
func (c *RDS) DescribeOrderableDBInstanceOptionsPagesWithContext(ctx aws.Context, input *DescribeOrderableDBInstanceOptionsInput, fn func(*DescribeOrderableDBInstanceOptionsOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeOrderableDBInstanceOptionsRequest(input *DescribeOrderableDBInstanceOptionsInput) (req *request.Request, output *DescribeOrderableDBInstanceOptionsOutput)
func (c *RDS) DescribeOrderableDBInstanceOptionsWithContext(ctx aws.Context, input *DescribeOrderableDBInstanceOptionsInput, opts ...request.Option) (*DescribeOrderableDBInstanceOptionsOutput, error)
func (c *RDS) DescribePendingMaintenanceActions(input *DescribePendingMaintenanceActionsInput) (*DescribePendingMaintenanceActionsOutput, error)
func (c *RDS) DescribePendingMaintenanceActionsPages(input *DescribePendingMaintenanceActionsInput, fn func(*DescribePendingMaintenanceActionsOutput, bool) bool) error
func (c *RDS) DescribePendingMaintenanceActionsPagesWithContext(ctx aws.Context, input *DescribePendingMaintenanceActionsInput, fn func(*DescribePendingMaintenanceActionsOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribePendingMaintenanceActionsRequest(input *DescribePendingMaintenanceActionsInput) (req *request.Request, output *DescribePendingMaintenanceActionsOutput)
func (c *RDS) DescribePendingMaintenanceActionsWithContext(ctx aws.Context, input *DescribePendingMaintenanceActionsInput, opts ...request.Option) (*DescribePendingMaintenanceActionsOutput, error)
func (c *RDS) DescribeReservedDBInstances(input *DescribeReservedDBInstancesInput) (*DescribeReservedDBInstancesOutput, error)
func (c *RDS) DescribeReservedDBInstancesOfferings(input *DescribeReservedDBInstancesOfferingsInput) (*DescribeReservedDBInstancesOfferingsOutput, error)
func (c *RDS) DescribeReservedDBInstancesOfferingsPages(input *DescribeReservedDBInstancesOfferingsInput, fn func(*DescribeReservedDBInstancesOfferingsOutput, bool) bool) error
func (c *RDS) DescribeReservedDBInstancesOfferingsPagesWithContext(ctx aws.Context, input *DescribeReservedDBInstancesOfferingsInput, fn func(*DescribeReservedDBInstancesOfferingsOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeReservedDBInstancesOfferingsRequest(input *DescribeReservedDBInstancesOfferingsInput) (req *request.Request, output *DescribeReservedDBInstancesOfferingsOutput)
func (c *RDS) DescribeReservedDBInstancesOfferingsWithContext(ctx aws.Context, input *DescribeReservedDBInstancesOfferingsInput, opts ...request.Option) (*DescribeReservedDBInstancesOfferingsOutput, error)
func (c *RDS) DescribeReservedDBInstancesPages(input *DescribeReservedDBInstancesInput, fn func(*DescribeReservedDBInstancesOutput, bool) bool) error
func (c *RDS) DescribeReservedDBInstancesPagesWithContext(ctx aws.Context, input *DescribeReservedDBInstancesInput, fn func(*DescribeReservedDBInstancesOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeReservedDBInstancesRequest(input *DescribeReservedDBInstancesInput) (req *request.Request, output *DescribeReservedDBInstancesOutput)
func (c *RDS) DescribeReservedDBInstancesWithContext(ctx aws.Context, input *DescribeReservedDBInstancesInput, opts ...request.Option) (*DescribeReservedDBInstancesOutput, error)
func (c *RDS) DescribeSourceRegions(input *DescribeSourceRegionsInput) (*DescribeSourceRegionsOutput, error)
func (c *RDS) DescribeSourceRegionsPages(input *DescribeSourceRegionsInput, fn func(*DescribeSourceRegionsOutput, bool) bool) error
func (c *RDS) DescribeSourceRegionsPagesWithContext(ctx aws.Context, input *DescribeSourceRegionsInput, fn func(*DescribeSourceRegionsOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeSourceRegionsRequest(input *DescribeSourceRegionsInput) (req *request.Request, output *DescribeSourceRegionsOutput)
func (c *RDS) DescribeSourceRegionsWithContext(ctx aws.Context, input *DescribeSourceRegionsInput, opts ...request.Option) (*DescribeSourceRegionsOutput, error)
func (c *RDS) DescribeTenantDatabases(input *DescribeTenantDatabasesInput) (*DescribeTenantDatabasesOutput, error)
func (c *RDS) DescribeTenantDatabasesPages(input *DescribeTenantDatabasesInput, fn func(*DescribeTenantDatabasesOutput, bool) bool) error
func (c *RDS) DescribeTenantDatabasesPagesWithContext(ctx aws.Context, input *DescribeTenantDatabasesInput, fn func(*DescribeTenantDatabasesOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DescribeTenantDatabasesRequest(input *DescribeTenantDatabasesInput) (req *request.Request, output *DescribeTenantDatabasesOutput)
func (c *RDS) DescribeTenantDatabasesWithContext(ctx aws.Context, input *DescribeTenantDatabasesInput, opts ...request.Option) (*DescribeTenantDatabasesOutput, error)
func (c *RDS) DescribeValidDBInstanceModifications(input *DescribeValidDBInstanceModificationsInput) (*DescribeValidDBInstanceModificationsOutput, error)
func (c *RDS) DescribeValidDBInstanceModificationsRequest(input *DescribeValidDBInstanceModificationsInput) (req *request.Request, output *DescribeValidDBInstanceModificationsOutput)
func (c *RDS) DescribeValidDBInstanceModificationsWithContext(ctx aws.Context, input *DescribeValidDBInstanceModificationsInput, opts ...request.Option) (*DescribeValidDBInstanceModificationsOutput, error)
func (c *RDS) DisableHttpEndpoint(input *DisableHttpEndpointInput) (*DisableHttpEndpointOutput, error)
func (c *RDS) DisableHttpEndpointRequest(input *DisableHttpEndpointInput) (req *request.Request, output *DisableHttpEndpointOutput)
func (c *RDS) DisableHttpEndpointWithContext(ctx aws.Context, input *DisableHttpEndpointInput, opts ...request.Option) (*DisableHttpEndpointOutput, error)
func (c *RDS) DownloadDBLogFilePortion(input *DownloadDBLogFilePortionInput) (*DownloadDBLogFilePortionOutput, error)
func (c *RDS) DownloadDBLogFilePortionPages(input *DownloadDBLogFilePortionInput, fn func(*DownloadDBLogFilePortionOutput, bool) bool) error
func (c *RDS) DownloadDBLogFilePortionPagesWithContext(ctx aws.Context, input *DownloadDBLogFilePortionInput, fn func(*DownloadDBLogFilePortionOutput, bool) bool, opts ...request.Option) error
func (c *RDS) DownloadDBLogFilePortionRequest(input *DownloadDBLogFilePortionInput) (req *request.Request, output *DownloadDBLogFilePortionOutput)
func (c *RDS) DownloadDBLogFilePortionWithContext(ctx aws.Context, input *DownloadDBLogFilePortionInput, opts ...request.Option) (*DownloadDBLogFilePortionOutput, error)
func (c *RDS) EnableHttpEndpoint(input *EnableHttpEndpointInput) (*EnableHttpEndpointOutput, error)
func (c *RDS) EnableHttpEndpointRequest(input *EnableHttpEndpointInput) (req *request.Request, output *EnableHttpEndpointOutput)
func (c *RDS) EnableHttpEndpointWithContext(ctx aws.Context, input *EnableHttpEndpointInput, opts ...request.Option) (*EnableHttpEndpointOutput, error)
func (c *RDS) FailoverDBCluster(input *FailoverDBClusterInput) (*FailoverDBClusterOutput, error)
func (c *RDS) FailoverDBClusterRequest(input *FailoverDBClusterInput) (req *request.Request, output *FailoverDBClusterOutput)
func (c *RDS) FailoverDBClusterWithContext(ctx aws.Context, input *FailoverDBClusterInput, opts ...request.Option) (*FailoverDBClusterOutput, error)
func (c *RDS) FailoverGlobalCluster(input *FailoverGlobalClusterInput) (*FailoverGlobalClusterOutput, error)
func (c *RDS) FailoverGlobalClusterRequest(input *FailoverGlobalClusterInput) (req *request.Request, output *FailoverGlobalClusterOutput)
func (c *RDS) FailoverGlobalClusterWithContext(ctx aws.Context, input *FailoverGlobalClusterInput, opts ...request.Option) (*FailoverGlobalClusterOutput, error)
func (c *RDS) ListTagsForResource(input *ListTagsForResourceInput) (*ListTagsForResourceOutput, error)
func (c *RDS) ListTagsForResourceRequest(input *ListTagsForResourceInput) (req *request.Request, output *ListTagsForResourceOutput)
func (c *RDS) ListTagsForResourceWithContext(ctx aws.Context, input *ListTagsForResourceInput, opts ...request.Option) (*ListTagsForResourceOutput, error)
func (c *RDS) ModifyActivityStream(input *ModifyActivityStreamInput) (*ModifyActivityStreamOutput, error)
func (c *RDS) ModifyActivityStreamRequest(input *ModifyActivityStreamInput) (req *request.Request, output *ModifyActivityStreamOutput)
func (c *RDS) ModifyActivityStreamWithContext(ctx aws.Context, input *ModifyActivityStreamInput, opts ...request.Option) (*ModifyActivityStreamOutput, error)
func (c *RDS) ModifyCertificates(input *ModifyCertificatesInput) (*ModifyCertificatesOutput, error)
func (c *RDS) ModifyCertificatesRequest(input *ModifyCertificatesInput) (req *request.Request, output *ModifyCertificatesOutput)
func (c *RDS) ModifyCertificatesWithContext(ctx aws.Context, input *ModifyCertificatesInput, opts ...request.Option) (*ModifyCertificatesOutput, error)
func (c *RDS) ModifyCurrentDBClusterCapacity(input *ModifyCurrentDBClusterCapacityInput) (*ModifyCurrentDBClusterCapacityOutput, error)
func (c *RDS) ModifyCurrentDBClusterCapacityRequest(input *ModifyCurrentDBClusterCapacityInput) (req *request.Request, output *ModifyCurrentDBClusterCapacityOutput)
func (c *RDS) ModifyCurrentDBClusterCapacityWithContext(ctx aws.Context, input *ModifyCurrentDBClusterCapacityInput, opts ...request.Option) (*ModifyCurrentDBClusterCapacityOutput, error)
func (c *RDS) ModifyCustomDBEngineVersion(input *ModifyCustomDBEngineVersionInput) (*ModifyCustomDBEngineVersionOutput, error)
func (c *RDS) ModifyCustomDBEngineVersionRequest(input *ModifyCustomDBEngineVersionInput) (req *request.Request, output *ModifyCustomDBEngineVersionOutput)
func (c *RDS) ModifyCustomDBEngineVersionWithContext(ctx aws.Context, input *ModifyCustomDBEngineVersionInput, opts ...request.Option) (*ModifyCustomDBEngineVersionOutput, error)
func (c *RDS) ModifyDBCluster(input *ModifyDBClusterInput) (*ModifyDBClusterOutput, error)
func (c *RDS) ModifyDBClusterEndpoint(input *ModifyDBClusterEndpointInput) (*ModifyDBClusterEndpointOutput, error)
func (c *RDS) ModifyDBClusterEndpointRequest(input *ModifyDBClusterEndpointInput) (req *request.Request, output *ModifyDBClusterEndpointOutput)
func (c *RDS) ModifyDBClusterEndpointWithContext(ctx aws.Context, input *ModifyDBClusterEndpointInput, opts ...request.Option) (*ModifyDBClusterEndpointOutput, error)
func (c *RDS) ModifyDBClusterParameterGroup(input *ModifyDBClusterParameterGroupInput) (*DBClusterParameterGroupNameMessage, error)
func (c *RDS) ModifyDBClusterParameterGroupRequest(input *ModifyDBClusterParameterGroupInput) (req *request.Request, output *DBClusterParameterGroupNameMessage)
func (c *RDS) ModifyDBClusterParameterGroupWithContext(ctx aws.Context, input *ModifyDBClusterParameterGroupInput, opts ...request.Option) (*DBClusterParameterGroupNameMessage, error)
func (c *RDS) ModifyDBClusterRequest(input *ModifyDBClusterInput) (req *request.Request, output *ModifyDBClusterOutput)
func (c *RDS) ModifyDBClusterSnapshotAttribute(input *ModifyDBClusterSnapshotAttributeInput) (*ModifyDBClusterSnapshotAttributeOutput, error)
func (c *RDS) ModifyDBClusterSnapshotAttributeRequest(input *ModifyDBClusterSnapshotAttributeInput) (req *request.Request, output *ModifyDBClusterSnapshotAttributeOutput)
func (c *RDS) ModifyDBClusterSnapshotAttributeWithContext(ctx aws.Context, input *ModifyDBClusterSnapshotAttributeInput, opts ...request.Option) (*ModifyDBClusterSnapshotAttributeOutput, error)
func (c *RDS) ModifyDBClusterWithContext(ctx aws.Context, input *ModifyDBClusterInput, opts ...request.Option) (*ModifyDBClusterOutput, error)
func (c *RDS) ModifyDBInstance(input *ModifyDBInstanceInput) (*ModifyDBInstanceOutput, error)
func (c *RDS) ModifyDBInstanceRequest(input *ModifyDBInstanceInput) (req *request.Request, output *ModifyDBInstanceOutput)
func (c *RDS) ModifyDBInstanceWithContext(ctx aws.Context, input *ModifyDBInstanceInput, opts ...request.Option) (*ModifyDBInstanceOutput, error)
func (c *RDS) ModifyDBParameterGroup(input *ModifyDBParameterGroupInput) (*DBParameterGroupNameMessage, error)
func (c *RDS) ModifyDBParameterGroupRequest(input *ModifyDBParameterGroupInput) (req *request.Request, output *DBParameterGroupNameMessage)
func (c *RDS) ModifyDBParameterGroupWithContext(ctx aws.Context, input *ModifyDBParameterGroupInput, opts ...request.Option) (*DBParameterGroupNameMessage, error)
func (c *RDS) ModifyDBProxy(input *ModifyDBProxyInput) (*ModifyDBProxyOutput, error)
func (c *RDS) ModifyDBProxyEndpoint(input *ModifyDBProxyEndpointInput) (*ModifyDBProxyEndpointOutput, error)
func (c *RDS) ModifyDBProxyEndpointRequest(input *ModifyDBProxyEndpointInput) (req *request.Request, output *ModifyDBProxyEndpointOutput)
func (c *RDS) ModifyDBProxyEndpointWithContext(ctx aws.Context, input *ModifyDBProxyEndpointInput, opts ...request.Option) (*ModifyDBProxyEndpointOutput, error)
func (c *RDS) ModifyDBProxyRequest(input *ModifyDBProxyInput) (req *request.Request, output *ModifyDBProxyOutput)
func (c *RDS) ModifyDBProxyTargetGroup(input *ModifyDBProxyTargetGroupInput) (*ModifyDBProxyTargetGroupOutput, error)
func (c *RDS) ModifyDBProxyTargetGroupRequest(input *ModifyDBProxyTargetGroupInput) (req *request.Request, output *ModifyDBProxyTargetGroupOutput)
func (c *RDS) ModifyDBProxyTargetGroupWithContext(ctx aws.Context, input *ModifyDBProxyTargetGroupInput, opts ...request.Option) (*ModifyDBProxyTargetGroupOutput, error)
func (c *RDS) ModifyDBProxyWithContext(ctx aws.Context, input *ModifyDBProxyInput, opts ...request.Option) (*ModifyDBProxyOutput, error)
func (c *RDS) ModifyDBRecommendation(input *ModifyDBRecommendationInput) (*ModifyDBRecommendationOutput, error)
func (c *RDS) ModifyDBRecommendationRequest(input *ModifyDBRecommendationInput) (req *request.Request, output *ModifyDBRecommendationOutput)
func (c *RDS) ModifyDBRecommendationWithContext(ctx aws.Context, input *ModifyDBRecommendationInput, opts ...request.Option) (*ModifyDBRecommendationOutput, error)
func (c *RDS) ModifyDBShardGroup(input *ModifyDBShardGroupInput) (*ModifyDBShardGroupOutput, error)
func (c *RDS) ModifyDBShardGroupRequest(input *ModifyDBShardGroupInput) (req *request.Request, output *ModifyDBShardGroupOutput)
func (c *RDS) ModifyDBShardGroupWithContext(ctx aws.Context, input *ModifyDBShardGroupInput, opts ...request.Option) (*ModifyDBShardGroupOutput, error)
func (c *RDS) ModifyDBSnapshot(input *ModifyDBSnapshotInput) (*ModifyDBSnapshotOutput, error)
func (c *RDS) ModifyDBSnapshotAttribute(input *ModifyDBSnapshotAttributeInput) (*ModifyDBSnapshotAttributeOutput, error)
func (c *RDS) ModifyDBSnapshotAttributeRequest(input *ModifyDBSnapshotAttributeInput) (req *request.Request, output *ModifyDBSnapshotAttributeOutput)
func (c *RDS) ModifyDBSnapshotAttributeWithContext(ctx aws.Context, input *ModifyDBSnapshotAttributeInput, opts ...request.Option) (*ModifyDBSnapshotAttributeOutput, error)
func (c *RDS) ModifyDBSnapshotRequest(input *ModifyDBSnapshotInput) (req *request.Request, output *ModifyDBSnapshotOutput)
func (c *RDS) ModifyDBSnapshotWithContext(ctx aws.Context, input *ModifyDBSnapshotInput, opts ...request.Option) (*ModifyDBSnapshotOutput, error)
func (c *RDS) ModifyDBSubnetGroup(input *ModifyDBSubnetGroupInput) (*ModifyDBSubnetGroupOutput, error)
func (c *RDS) ModifyDBSubnetGroupRequest(input *ModifyDBSubnetGroupInput) (req *request.Request, output *ModifyDBSubnetGroupOutput)
func (c *RDS) ModifyDBSubnetGroupWithContext(ctx aws.Context, input *ModifyDBSubnetGroupInput, opts ...request.Option) (*ModifyDBSubnetGroupOutput, error)
func (c *RDS) ModifyEventSubscription(input *ModifyEventSubscriptionInput) (*ModifyEventSubscriptionOutput, error)
func (c *RDS) ModifyEventSubscriptionRequest(input *ModifyEventSubscriptionInput) (req *request.Request, output *ModifyEventSubscriptionOutput)
func (c *RDS) ModifyEventSubscriptionWithContext(ctx aws.Context, input *ModifyEventSubscriptionInput, opts ...request.Option) (*ModifyEventSubscriptionOutput, error)
func (c *RDS) ModifyGlobalCluster(input *ModifyGlobalClusterInput) (*ModifyGlobalClusterOutput, error)
func (c *RDS) ModifyGlobalClusterRequest(input *ModifyGlobalClusterInput) (req *request.Request, output *ModifyGlobalClusterOutput)
func (c *RDS) ModifyGlobalClusterWithContext(ctx aws.Context, input *ModifyGlobalClusterInput, opts ...request.Option) (*ModifyGlobalClusterOutput, error)
func (c *RDS) ModifyIntegration(input *ModifyIntegrationInput) (*ModifyIntegrationOutput, error)
func (c *RDS) ModifyIntegrationRequest(input *ModifyIntegrationInput) (req *request.Request, output *ModifyIntegrationOutput)
func (c *RDS) ModifyIntegrationWithContext(ctx aws.Context, input *ModifyIntegrationInput, opts ...request.Option) (*ModifyIntegrationOutput, error)
func (c *RDS) ModifyOptionGroup(input *ModifyOptionGroupInput) (*ModifyOptionGroupOutput, error)
func (c *RDS) ModifyOptionGroupRequest(input *ModifyOptionGroupInput) (req *request.Request, output *ModifyOptionGroupOutput)
func (c *RDS) ModifyOptionGroupWithContext(ctx aws.Context, input *ModifyOptionGroupInput, opts ...request.Option) (*ModifyOptionGroupOutput, error)
func (c *RDS) ModifyTenantDatabase(input *ModifyTenantDatabaseInput) (*ModifyTenantDatabaseOutput, error)
func (c *RDS) ModifyTenantDatabaseRequest(input *ModifyTenantDatabaseInput) (req *request.Request, output *ModifyTenantDatabaseOutput)
func (c *RDS) ModifyTenantDatabaseWithContext(ctx aws.Context, input *ModifyTenantDatabaseInput, opts ...request.Option) (*ModifyTenantDatabaseOutput, error)
func (c *RDS) PromoteReadReplica(input *PromoteReadReplicaInput) (*PromoteReadReplicaOutput, error)
func (c *RDS) PromoteReadReplicaDBCluster(input *PromoteReadReplicaDBClusterInput) (*PromoteReadReplicaDBClusterOutput, error)
func (c *RDS) PromoteReadReplicaDBClusterRequest(input *PromoteReadReplicaDBClusterInput) (req *request.Request, output *PromoteReadReplicaDBClusterOutput)
func (c *RDS) PromoteReadReplicaDBClusterWithContext(ctx aws.Context, input *PromoteReadReplicaDBClusterInput, opts ...request.Option) (*PromoteReadReplicaDBClusterOutput, error)
func (c *RDS) PromoteReadReplicaRequest(input *PromoteReadReplicaInput) (req *request.Request, output *PromoteReadReplicaOutput)
func (c *RDS) PromoteReadReplicaWithContext(ctx aws.Context, input *PromoteReadReplicaInput, opts ...request.Option) (*PromoteReadReplicaOutput, error)
func (c *RDS) PurchaseReservedDBInstancesOffering(input *PurchaseReservedDBInstancesOfferingInput) (*PurchaseReservedDBInstancesOfferingOutput, error)
func (c *RDS) PurchaseReservedDBInstancesOfferingRequest(input *PurchaseReservedDBInstancesOfferingInput) (req *request.Request, output *PurchaseReservedDBInstancesOfferingOutput)
func (c *RDS) PurchaseReservedDBInstancesOfferingWithContext(ctx aws.Context, input *PurchaseReservedDBInstancesOfferingInput, opts ...request.Option) (*PurchaseReservedDBInstancesOfferingOutput, error)
func (c *RDS) RebootDBCluster(input *RebootDBClusterInput) (*RebootDBClusterOutput, error)
func (c *RDS) RebootDBClusterRequest(input *RebootDBClusterInput) (req *request.Request, output *RebootDBClusterOutput)
func (c *RDS) RebootDBClusterWithContext(ctx aws.Context, input *RebootDBClusterInput, opts ...request.Option) (*RebootDBClusterOutput, error)
func (c *RDS) RebootDBInstance(input *RebootDBInstanceInput) (*RebootDBInstanceOutput, error)
func (c *RDS) RebootDBInstanceRequest(input *RebootDBInstanceInput) (req *request.Request, output *RebootDBInstanceOutput)
func (c *RDS) RebootDBInstanceWithContext(ctx aws.Context, input *RebootDBInstanceInput, opts ...request.Option) (*RebootDBInstanceOutput, error)
func (c *RDS) RebootDBShardGroup(input *RebootDBShardGroupInput) (*RebootDBShardGroupOutput, error)
func (c *RDS) RebootDBShardGroupRequest(input *RebootDBShardGroupInput) (req *request.Request, output *RebootDBShardGroupOutput)
func (c *RDS) RebootDBShardGroupWithContext(ctx aws.Context, input *RebootDBShardGroupInput, opts ...request.Option) (*RebootDBShardGroupOutput, error)
func (c *RDS) RegisterDBProxyTargets(input *RegisterDBProxyTargetsInput) (*RegisterDBProxyTargetsOutput, error)
func (c *RDS) RegisterDBProxyTargetsRequest(input *RegisterDBProxyTargetsInput) (req *request.Request, output *RegisterDBProxyTargetsOutput)
func (c *RDS) RegisterDBProxyTargetsWithContext(ctx aws.Context, input *RegisterDBProxyTargetsInput, opts ...request.Option) (*RegisterDBProxyTargetsOutput, error)
func (c *RDS) RemoveFromGlobalCluster(input *RemoveFromGlobalClusterInput) (*RemoveFromGlobalClusterOutput, error)
func (c *RDS) RemoveFromGlobalClusterRequest(input *RemoveFromGlobalClusterInput) (req *request.Request, output *RemoveFromGlobalClusterOutput)
func (c *RDS) RemoveFromGlobalClusterWithContext(ctx aws.Context, input *RemoveFromGlobalClusterInput, opts ...request.Option) (*RemoveFromGlobalClusterOutput, error)
func (c *RDS) RemoveRoleFromDBCluster(input *RemoveRoleFromDBClusterInput) (*RemoveRoleFromDBClusterOutput, error)
func (c *RDS) RemoveRoleFromDBClusterRequest(input *RemoveRoleFromDBClusterInput) (req *request.Request, output *RemoveRoleFromDBClusterOutput)
func (c *RDS) RemoveRoleFromDBClusterWithContext(ctx aws.Context, input *RemoveRoleFromDBClusterInput, opts ...request.Option) (*RemoveRoleFromDBClusterOutput, error)
func (c *RDS) RemoveRoleFromDBInstance(input *RemoveRoleFromDBInstanceInput) (*RemoveRoleFromDBInstanceOutput, error)
func (c *RDS) RemoveRoleFromDBInstanceRequest(input *RemoveRoleFromDBInstanceInput) (req *request.Request, output *RemoveRoleFromDBInstanceOutput)
func (c *RDS) RemoveRoleFromDBInstanceWithContext(ctx aws.Context, input *RemoveRoleFromDBInstanceInput, opts ...request.Option) (*RemoveRoleFromDBInstanceOutput, error)
func (c *RDS) RemoveSourceIdentifierFromSubscription(input *RemoveSourceIdentifierFromSubscriptionInput) (*RemoveSourceIdentifierFromSubscriptionOutput, error)
func (c *RDS) RemoveSourceIdentifierFromSubscriptionRequest(input *RemoveSourceIdentifierFromSubscriptionInput) (req *request.Request, output *RemoveSourceIdentifierFromSubscriptionOutput)
func (c *RDS) RemoveSourceIdentifierFromSubscriptionWithContext(ctx aws.Context, input *RemoveSourceIdentifierFromSubscriptionInput, opts ...request.Option) (*RemoveSourceIdentifierFromSubscriptionOutput, error)
func (c *RDS) RemoveTagsFromResource(input *RemoveTagsFromResourceInput) (*RemoveTagsFromResourceOutput, error)
func (c *RDS) RemoveTagsFromResourceRequest(input *RemoveTagsFromResourceInput) (req *request.Request, output *RemoveTagsFromResourceOutput)
func (c *RDS) RemoveTagsFromResourceWithContext(ctx aws.Context, input *RemoveTagsFromResourceInput, opts ...request.Option) (*RemoveTagsFromResourceOutput, error)
func (c *RDS) ResetDBClusterParameterGroup(input *ResetDBClusterParameterGroupInput) (*DBClusterParameterGroupNameMessage, error)
func (c *RDS) ResetDBClusterParameterGroupRequest(input *ResetDBClusterParameterGroupInput) (req *request.Request, output *DBClusterParameterGroupNameMessage)
func (c *RDS) ResetDBClusterParameterGroupWithContext(ctx aws.Context, input *ResetDBClusterParameterGroupInput, opts ...request.Option) (*DBClusterParameterGroupNameMessage, error)
func (c *RDS) ResetDBParameterGroup(input *ResetDBParameterGroupInput) (*DBParameterGroupNameMessage, error)
func (c *RDS) ResetDBParameterGroupRequest(input *ResetDBParameterGroupInput) (req *request.Request, output *DBParameterGroupNameMessage)
func (c *RDS) ResetDBParameterGroupWithContext(ctx aws.Context, input *ResetDBParameterGroupInput, opts ...request.Option) (*DBParameterGroupNameMessage, error)
func (c *RDS) RestoreDBClusterFromS3(input *RestoreDBClusterFromS3Input) (*RestoreDBClusterFromS3Output, error)
func (c *RDS) RestoreDBClusterFromS3Request(input *RestoreDBClusterFromS3Input) (req *request.Request, output *RestoreDBClusterFromS3Output)
func (c *RDS) RestoreDBClusterFromS3WithContext(ctx aws.Context, input *RestoreDBClusterFromS3Input, opts ...request.Option) (*RestoreDBClusterFromS3Output, error)
func (c *RDS) RestoreDBClusterFromSnapshot(input *RestoreDBClusterFromSnapshotInput) (*RestoreDBClusterFromSnapshotOutput, error)
func (c *RDS) RestoreDBClusterFromSnapshotRequest(input *RestoreDBClusterFromSnapshotInput) (req *request.Request, output *RestoreDBClusterFromSnapshotOutput)
func (c *RDS) RestoreDBClusterFromSnapshotWithContext(ctx aws.Context, input *RestoreDBClusterFromSnapshotInput, opts ...request.Option) (*RestoreDBClusterFromSnapshotOutput, error)
func (c *RDS) RestoreDBClusterToPointInTime(input *RestoreDBClusterToPointInTimeInput) (*RestoreDBClusterToPointInTimeOutput, error)
func (c *RDS) RestoreDBClusterToPointInTimeRequest(input *RestoreDBClusterToPointInTimeInput) (req *request.Request, output *RestoreDBClusterToPointInTimeOutput)
func (c *RDS) RestoreDBClusterToPointInTimeWithContext(ctx aws.Context, input *RestoreDBClusterToPointInTimeInput, opts ...request.Option) (*RestoreDBClusterToPointInTimeOutput, error)
func (c *RDS) RestoreDBInstanceFromDBSnapshot(input *RestoreDBInstanceFromDBSnapshotInput) (*RestoreDBInstanceFromDBSnapshotOutput, error)
func (c *RDS) RestoreDBInstanceFromDBSnapshotRequest(input *RestoreDBInstanceFromDBSnapshotInput) (req *request.Request, output *RestoreDBInstanceFromDBSnapshotOutput)
func (c *RDS) RestoreDBInstanceFromDBSnapshotWithContext(ctx aws.Context, input *RestoreDBInstanceFromDBSnapshotInput, opts ...request.Option) (*RestoreDBInstanceFromDBSnapshotOutput, error)
func (c *RDS) RestoreDBInstanceFromS3(input *RestoreDBInstanceFromS3Input) (*RestoreDBInstanceFromS3Output, error)
func (c *RDS) RestoreDBInstanceFromS3Request(input *RestoreDBInstanceFromS3Input) (req *request.Request, output *RestoreDBInstanceFromS3Output)
func (c *RDS) RestoreDBInstanceFromS3WithContext(ctx aws.Context, input *RestoreDBInstanceFromS3Input, opts ...request.Option) (*RestoreDBInstanceFromS3Output, error)
func (c *RDS) RestoreDBInstanceToPointInTime(input *RestoreDBInstanceToPointInTimeInput) (*RestoreDBInstanceToPointInTimeOutput, error)
func (c *RDS) RestoreDBInstanceToPointInTimeRequest(input *RestoreDBInstanceToPointInTimeInput) (req *request.Request, output *RestoreDBInstanceToPointInTimeOutput)
func (c *RDS) RestoreDBInstanceToPointInTimeWithContext(ctx aws.Context, input *RestoreDBInstanceToPointInTimeInput, opts ...request.Option) (*RestoreDBInstanceToPointInTimeOutput, error)
func (c *RDS) RevokeDBSecurityGroupIngress(input *RevokeDBSecurityGroupIngressInput) (*RevokeDBSecurityGroupIngressOutput, error)
func (c *RDS) RevokeDBSecurityGroupIngressRequest(input *RevokeDBSecurityGroupIngressInput) (req *request.Request, output *RevokeDBSecurityGroupIngressOutput)
func (c *RDS) RevokeDBSecurityGroupIngressWithContext(ctx aws.Context, input *RevokeDBSecurityGroupIngressInput, opts ...request.Option) (*RevokeDBSecurityGroupIngressOutput, error)
func (c *RDS) StartActivityStream(input *StartActivityStreamInput) (*StartActivityStreamOutput, error)
func (c *RDS) StartActivityStreamRequest(input *StartActivityStreamInput) (req *request.Request, output *StartActivityStreamOutput)
func (c *RDS) StartActivityStreamWithContext(ctx aws.Context, input *StartActivityStreamInput, opts ...request.Option) (*StartActivityStreamOutput, error)
func (c *RDS) StartDBCluster(input *StartDBClusterInput) (*StartDBClusterOutput, error)
func (c *RDS) StartDBClusterRequest(input *StartDBClusterInput) (req *request.Request, output *StartDBClusterOutput)
func (c *RDS) StartDBClusterWithContext(ctx aws.Context, input *StartDBClusterInput, opts ...request.Option) (*StartDBClusterOutput, error)
func (c *RDS) StartDBInstance(input *StartDBInstanceInput) (*StartDBInstanceOutput, error)
func (c *RDS) StartDBInstanceAutomatedBackupsReplication(input *StartDBInstanceAutomatedBackupsReplicationInput) (*StartDBInstanceAutomatedBackupsReplicationOutput, error)
func (c *RDS) StartDBInstanceAutomatedBackupsReplicationRequest(input *StartDBInstanceAutomatedBackupsReplicationInput) (req *request.Request, output *StartDBInstanceAutomatedBackupsReplicationOutput)
func (c *RDS) StartDBInstanceAutomatedBackupsReplicationWithContext(ctx aws.Context, input *StartDBInstanceAutomatedBackupsReplicationInput, opts ...request.Option) (*StartDBInstanceAutomatedBackupsReplicationOutput, error)
func (c *RDS) StartDBInstanceRequest(input *StartDBInstanceInput) (req *request.Request, output *StartDBInstanceOutput)
func (c *RDS) StartDBInstanceWithContext(ctx aws.Context, input *StartDBInstanceInput, opts ...request.Option) (*StartDBInstanceOutput, error)
func (c *RDS) StartExportTask(input *StartExportTaskInput) (*StartExportTaskOutput, error)
func (c *RDS) StartExportTaskRequest(input *StartExportTaskInput) (req *request.Request, output *StartExportTaskOutput)
func (c *RDS) StartExportTaskWithContext(ctx aws.Context, input *StartExportTaskInput, opts ...request.Option) (*StartExportTaskOutput, error)
func (c *RDS) StopActivityStream(input *StopActivityStreamInput) (*StopActivityStreamOutput, error)
func (c *RDS) StopActivityStreamRequest(input *StopActivityStreamInput) (req *request.Request, output *StopActivityStreamOutput)
func (c *RDS) StopActivityStreamWithContext(ctx aws.Context, input *StopActivityStreamInput, opts ...request.Option) (*StopActivityStreamOutput, error)
func (c *RDS) StopDBCluster(input *StopDBClusterInput) (*StopDBClusterOutput, error)
func (c *RDS) StopDBClusterRequest(input *StopDBClusterInput) (req *request.Request, output *StopDBClusterOutput)
func (c *RDS) StopDBClusterWithContext(ctx aws.Context, input *StopDBClusterInput, opts ...request.Option) (*StopDBClusterOutput, error)
func (c *RDS) StopDBInstance(input *StopDBInstanceInput) (*StopDBInstanceOutput, error)
func (c *RDS) StopDBInstanceAutomatedBackupsReplication(input *StopDBInstanceAutomatedBackupsReplicationInput) (*StopDBInstanceAutomatedBackupsReplicationOutput, error)
func (c *RDS) StopDBInstanceAutomatedBackupsReplicationRequest(input *StopDBInstanceAutomatedBackupsReplicationInput) (req *request.Request, output *StopDBInstanceAutomatedBackupsReplicationOutput)
func (c *RDS) StopDBInstanceAutomatedBackupsReplicationWithContext(ctx aws.Context, input *StopDBInstanceAutomatedBackupsReplicationInput, opts ...request.Option) (*StopDBInstanceAutomatedBackupsReplicationOutput, error)
func (c *RDS) StopDBInstanceRequest(input *StopDBInstanceInput) (req *request.Request, output *StopDBInstanceOutput)
func (c *RDS) StopDBInstanceWithContext(ctx aws.Context, input *StopDBInstanceInput, opts ...request.Option) (*StopDBInstanceOutput, error)
func (c *RDS) SwitchoverBlueGreenDeployment(input *SwitchoverBlueGreenDeploymentInput) (*SwitchoverBlueGreenDeploymentOutput, error)
func (c *RDS) SwitchoverBlueGreenDeploymentRequest(input *SwitchoverBlueGreenDeploymentInput) (req *request.Request, output *SwitchoverBlueGreenDeploymentOutput)
func (c *RDS) SwitchoverBlueGreenDeploymentWithContext(ctx aws.Context, input *SwitchoverBlueGreenDeploymentInput, opts ...request.Option) (*SwitchoverBlueGreenDeploymentOutput, error)
func (c *RDS) SwitchoverGlobalCluster(input *SwitchoverGlobalClusterInput) (*SwitchoverGlobalClusterOutput, error)
func (c *RDS) SwitchoverGlobalClusterRequest(input *SwitchoverGlobalClusterInput) (req *request.Request, output *SwitchoverGlobalClusterOutput)
func (c *RDS) SwitchoverGlobalClusterWithContext(ctx aws.Context, input *SwitchoverGlobalClusterInput, opts ...request.Option) (*SwitchoverGlobalClusterOutput, error)
func (c *RDS) SwitchoverReadReplica(input *SwitchoverReadReplicaInput) (*SwitchoverReadReplicaOutput, error)
func (c *RDS) SwitchoverReadReplicaRequest(input *SwitchoverReadReplicaInput) (req *request.Request, output *SwitchoverReadReplicaOutput)
func (c *RDS) SwitchoverReadReplicaWithContext(ctx aws.Context, input *SwitchoverReadReplicaInput, opts ...request.Option) (*SwitchoverReadReplicaOutput, error)
func (c *RDS) WaitUntilDBClusterAvailable(input *DescribeDBClustersInput) error
func (c *RDS) WaitUntilDBClusterAvailableWithContext(ctx aws.Context, input *DescribeDBClustersInput, opts ...request.WaiterOption) error
func (c *RDS) WaitUntilDBClusterDeleted(input *DescribeDBClustersInput) error
func (c *RDS) WaitUntilDBClusterDeletedWithContext(ctx aws.Context, input *DescribeDBClustersInput, opts ...request.WaiterOption) error
func (c *RDS) WaitUntilDBClusterSnapshotAvailable(input *DescribeDBClusterSnapshotsInput) error
func (c *RDS) WaitUntilDBClusterSnapshotAvailableWithContext(ctx aws.Context, input *DescribeDBClusterSnapshotsInput, opts ...request.WaiterOption) error
func (c *RDS) WaitUntilDBClusterSnapshotDeleted(input *DescribeDBClusterSnapshotsInput) error
func (c *RDS) WaitUntilDBClusterSnapshotDeletedWithContext(ctx aws.Context, input *DescribeDBClusterSnapshotsInput, opts ...request.WaiterOption) error
func (c *RDS) WaitUntilDBInstanceAvailable(input *DescribeDBInstancesInput) error
func (c *RDS) WaitUntilDBInstanceAvailableWithContext(ctx aws.Context, input *DescribeDBInstancesInput, opts ...request.WaiterOption) error
func (c *RDS) WaitUntilDBInstanceDeleted(input *DescribeDBInstancesInput) error
func (c *RDS) WaitUntilDBInstanceDeletedWithContext(ctx aws.Context, input *DescribeDBInstancesInput, opts ...request.WaiterOption) error
func (c *RDS) WaitUntilDBSnapshotAvailable(input *DescribeDBSnapshotsInput) error
func (c *RDS) WaitUntilDBSnapshotAvailableWithContext(ctx aws.Context, input *DescribeDBSnapshotsInput, opts ...request.WaiterOption) error
func (c *RDS) WaitUntilDBSnapshotDeleted(input *DescribeDBSnapshotsInput) error
func (c *RDS) WaitUntilDBSnapshotDeletedWithContext(ctx aws.Context, input *DescribeDBSnapshotsInput, opts ...request.WaiterOption) error
func (c *RDS) WaitUntilTenantDatabaseAvailable(input *DescribeTenantDatabasesInput) error
func (c *RDS) WaitUntilTenantDatabaseAvailableWithContext(ctx aws.Context, input *DescribeTenantDatabasesInput, opts ...request.WaiterOption) error
func (c *RDS) WaitUntilTenantDatabaseDeleted(input *DescribeTenantDatabasesInput) error
func (c *RDS) WaitUntilTenantDatabaseDeletedWithContext(ctx aws.Context, input *DescribeTenantDatabasesInput, opts ...request.WaiterOption) error
func ActivityStreamMode_Values() []string
func ActivityStreamPolicyStatus_Values() []string
func ActivityStreamStatus_Values() []string
func ApplyMethod_Values() []string
func AuditPolicyState_Values() []string
func AuthScheme_Values() []string
func AutomationMode_Values() []string
func ClientPasswordAuthType_Values() []string
func CustomEngineVersionStatus_Values() []string
func DBProxyEndpointStatus_Values() []string
func DBProxyEndpointTargetRole_Values() []string
func DBProxyStatus_Values() []string
func EngineFamily_Values() []string
func ExportSourceType_Values() []string
func FailoverStatus_Values() []string
func GlobalClusterMemberSynchronizationStatus_Values() []string
func IAMAuthMode_Values() []string
func IntegrationStatus_Values() []string
func LimitlessDatabaseStatus_Values() []string
func LocalWriteForwardingStatus_Values() []string
func ReplicaMode_Values() []string
func SourceType_Values() []string
func TargetHealthReason_Values() []string
func TargetRole_Values() []string
func TargetState_Values() []string
func TargetType_Values() []string
func WriteForwardingStatus_Values() []string
type AccountQuota
type AddRoleToDBClusterInput
type AddRoleToDBClusterOutput
type AddRoleToDBInstanceInput
type AddRoleToDBInstanceOutput
type AddSourceIdentifierToSubscriptionInput
type AddSourceIdentifierToSubscriptionOutput
type AddTagsToResourceInput
type AddTagsToResourceOutput
type ApplyPendingMaintenanceActionInput
type ApplyPendingMaintenanceActionOutput
type AuthorizeDBSecurityGroupIngressInput
type AuthorizeDBSecurityGroupIngressOutput
type AvailabilityZone
type AvailableProcessorFeature
type BacktrackDBClusterInput
type BacktrackDBClusterOutput
type BlueGreenDeployment
type BlueGreenDeploymentTask
type CancelExportTaskInput
type CancelExportTaskOutput
type Certificate
type CertificateDetails
type CharacterSet
type CloudwatchLogsExportConfiguration
type ClusterPendingModifiedValues
type ConnectionPoolConfiguration
type ConnectionPoolConfigurationInfo
type ContextAttribute
type CopyDBClusterParameterGroupInput
type CopyDBClusterParameterGroupOutput
type CopyDBClusterSnapshotInput
type CopyDBClusterSnapshotOutput
type CopyDBParameterGroupInput
type CopyDBParameterGroupOutput
type CopyDBSnapshotInput
type CopyDBSnapshotOutput
type CopyOptionGroupInput
type CopyOptionGroupOutput
type CreateBlueGreenDeploymentInput
type CreateBlueGreenDeploymentOutput
type CreateCustomDBEngineVersionInput
type CreateCustomDBEngineVersionOutput
type CreateDBClusterEndpointInput
type CreateDBClusterEndpointOutput
type CreateDBClusterInput
type CreateDBClusterOutput
type CreateDBClusterParameterGroupInput
type CreateDBClusterParameterGroupOutput
type CreateDBClusterSnapshotInput
type CreateDBClusterSnapshotOutput
type CreateDBInstanceInput
type CreateDBInstanceOutput
type CreateDBInstanceReadReplicaInput
type CreateDBInstanceReadReplicaOutput
type CreateDBParameterGroupInput
type CreateDBParameterGroupOutput
type CreateDBProxyEndpointInput
type CreateDBProxyEndpointOutput
type CreateDBProxyInput
type CreateDBProxyOutput
type CreateDBSecurityGroupInput
type CreateDBSecurityGroupOutput
type CreateDBShardGroupInput
type CreateDBShardGroupOutput
type CreateDBSnapshotInput
type CreateDBSnapshotOutput
type CreateDBSubnetGroupInput
type CreateDBSubnetGroupOutput
type CreateEventSubscriptionInput
type CreateEventSubscriptionOutput
type CreateGlobalClusterInput
type CreateGlobalClusterOutput
type CreateIntegrationInput
type CreateIntegrationOutput
type CreateOptionGroupInput
type CreateOptionGroupOutput
type CreateTenantDatabaseInput
type CreateTenantDatabaseOutput
type CustomDBEngineVersionAMI
type DBCluster
type DBClusterAutomatedBackup
type DBClusterEndpoint
type DBClusterMember
type DBClusterOptionGroupStatus
type DBClusterParameterGroup
type DBClusterParameterGroupNameMessage
type DBClusterRole
type DBClusterSnapshot
type DBClusterSnapshotAttribute
type DBClusterSnapshotAttributesResult
type DBClusterStatusInfo
type DBEngineVersion
type DBInstance
type DBInstanceAutomatedBackup
type DBInstanceAutomatedBackupsReplication
type DBInstanceRole
type DBInstanceStatusInfo
type DBParameterGroup
type DBParameterGroupNameMessage
type DBParameterGroupStatus
type DBProxy
type DBProxyEndpoint
type DBProxyTarget
type DBProxyTargetGroup
type DBRecommendation
type DBSecurityGroup
type DBSecurityGroupMembership
type DBShardGroup
type DBSnapshot
type DBSnapshotAttribute
type DBSnapshotAttributesResult
type DBSnapshotTenantDatabase
type DBSubnetGroup
type DeleteBlueGreenDeploymentInput
type DeleteBlueGreenDeploymentOutput
type DeleteCustomDBEngineVersionInput
type DeleteCustomDBEngineVersionOutput
type DeleteDBClusterAutomatedBackupInput
type DeleteDBClusterAutomatedBackupOutput
type DeleteDBClusterEndpointInput
type DeleteDBClusterEndpointOutput
type DeleteDBClusterInput
type DeleteDBClusterOutput
type DeleteDBClusterParameterGroupInput
type DeleteDBClusterParameterGroupOutput
type DeleteDBClusterSnapshotInput
type DeleteDBClusterSnapshotOutput
type DeleteDBInstanceAutomatedBackupInput
type DeleteDBInstanceAutomatedBackupOutput
type DeleteDBInstanceInput
type DeleteDBInstanceOutput
type DeleteDBParameterGroupInput
type DeleteDBParameterGroupOutput
type DeleteDBProxyEndpointInput
type DeleteDBProxyEndpointOutput
type DeleteDBProxyInput
type DeleteDBProxyOutput
type DeleteDBSecurityGroupInput
type DeleteDBSecurityGroupOutput
type DeleteDBShardGroupInput
type DeleteDBShardGroupOutput
type DeleteDBSnapshotInput
type DeleteDBSnapshotOutput
type DeleteDBSubnetGroupInput
type DeleteDBSubnetGroupOutput
type DeleteEventSubscriptionInput
type DeleteEventSubscriptionOutput
type DeleteGlobalClusterInput
type DeleteGlobalClusterOutput
type DeleteIntegrationInput
type DeleteIntegrationOutput
type DeleteOptionGroupInput
type DeleteOptionGroupOutput
type DeleteTenantDatabaseInput
type DeleteTenantDatabaseOutput
type DeregisterDBProxyTargetsInput
type DeregisterDBProxyTargetsOutput
type DescribeAccountAttributesInput
type DescribeAccountAttributesOutput
type DescribeBlueGreenDeploymentsInput
type DescribeBlueGreenDeploymentsOutput
type DescribeCertificatesInput
type DescribeCertificatesOutput
type DescribeDBClusterAutomatedBackupsInput
type DescribeDBClusterAutomatedBackupsOutput
type DescribeDBClusterBacktracksInput
type DescribeDBClusterBacktracksOutput
type DescribeDBClusterEndpointsInput
type DescribeDBClusterEndpointsOutput
type DescribeDBClusterParameterGroupsInput
type DescribeDBClusterParameterGroupsOutput
type DescribeDBClusterParametersInput
type DescribeDBClusterParametersOutput
type DescribeDBClusterSnapshotAttributesInput
type DescribeDBClusterSnapshotAttributesOutput
type DescribeDBClusterSnapshotsInput
type DescribeDBClusterSnapshotsOutput
type DescribeDBClustersInput
type DescribeDBClustersOutput
type DescribeDBEngineVersionsInput
type DescribeDBEngineVersionsOutput
type DescribeDBInstanceAutomatedBackupsInput
type DescribeDBInstanceAutomatedBackupsOutput
type DescribeDBInstancesInput
type DescribeDBInstancesOutput
type DescribeDBLogFilesDetails
type DescribeDBLogFilesInput
type DescribeDBLogFilesOutput
type DescribeDBParameterGroupsInput
type DescribeDBParameterGroupsOutput
type DescribeDBParametersInput
type DescribeDBParametersOutput
type DescribeDBProxiesInput
type DescribeDBProxiesOutput
type DescribeDBProxyEndpointsInput
type DescribeDBProxyEndpointsOutput
type DescribeDBProxyTargetGroupsInput
type DescribeDBProxyTargetGroupsOutput
type DescribeDBProxyTargetsInput
type DescribeDBProxyTargetsOutput
type DescribeDBRecommendationsInput
type DescribeDBRecommendationsOutput
type DescribeDBSecurityGroupsInput
type DescribeDBSecurityGroupsOutput
type DescribeDBShardGroupsInput
type DescribeDBShardGroupsOutput
type DescribeDBSnapshotAttributesInput
type DescribeDBSnapshotAttributesOutput
type DescribeDBSnapshotTenantDatabasesInput
type DescribeDBSnapshotTenantDatabasesOutput
type DescribeDBSnapshotsInput
type DescribeDBSnapshotsOutput
type DescribeDBSubnetGroupsInput
type DescribeDBSubnetGroupsOutput
type DescribeEngineDefaultClusterParametersInput
type DescribeEngineDefaultClusterParametersOutput
type DescribeEngineDefaultParametersInput
type DescribeEngineDefaultParametersOutput
type DescribeEventCategoriesInput
type DescribeEventCategoriesOutput
type DescribeEventSubscriptionsInput
type DescribeEventSubscriptionsOutput
type DescribeEventsInput
type DescribeEventsOutput
type DescribeExportTasksInput
type DescribeExportTasksOutput
type DescribeGlobalClustersInput
type DescribeGlobalClustersOutput
type DescribeIntegrationsInput
type DescribeIntegrationsOutput
type DescribeOptionGroupOptionsInput
type DescribeOptionGroupOptionsOutput
type DescribeOptionGroupsInput
type DescribeOptionGroupsOutput
type DescribeOrderableDBInstanceOptionsInput
type DescribeOrderableDBInstanceOptionsOutput
type DescribePendingMaintenanceActionsInput
type DescribePendingMaintenanceActionsOutput
type DescribeReservedDBInstancesInput
type DescribeReservedDBInstancesOfferingsInput
type DescribeReservedDBInstancesOfferingsOutput
type DescribeReservedDBInstancesOutput
type DescribeSourceRegionsInput
type DescribeSourceRegionsOutput
type DescribeTenantDatabasesInput
type DescribeTenantDatabasesOutput
type DescribeValidDBInstanceModificationsInput
type DescribeValidDBInstanceModificationsOutput
type DisableHttpEndpointInput
type DisableHttpEndpointOutput
type DocLink
type DomainMembership
type DoubleRange
type DownloadDBLogFilePortionInput
type DownloadDBLogFilePortionOutput
type EC2SecurityGroup
type EnableHttpEndpointInput
type EnableHttpEndpointOutput
type Endpoint
type EngineDefaults
type Event
type EventCategoriesMap
type EventSubscription
type ExportTask
type FailoverDBClusterInput
type FailoverDBClusterOutput
type FailoverGlobalClusterInput
type FailoverGlobalClusterOutput
type FailoverState
type Filter
type GlobalCluster
type GlobalClusterMember
type IPRange
type Integration
type IntegrationError
type IssueDetails
type LimitlessDatabase
type ListTagsForResourceInput
type ListTagsForResourceOutput
type MasterUserSecret
type Metric
type MetricQuery
type MetricReference
type MinimumEngineVersionPerAllowedValue
type ModifyActivityStreamInput
type ModifyActivityStreamOutput
type ModifyCertificatesInput
type ModifyCertificatesOutput
type ModifyCurrentDBClusterCapacityInput
type ModifyCurrentDBClusterCapacityOutput
type ModifyCustomDBEngineVersionInput
type ModifyCustomDBEngineVersionOutput
type ModifyDBClusterEndpointInput
type ModifyDBClusterEndpointOutput
type ModifyDBClusterInput
type ModifyDBClusterOutput
type ModifyDBClusterParameterGroupInput
type ModifyDBClusterSnapshotAttributeInput
type ModifyDBClusterSnapshotAttributeOutput
type ModifyDBInstanceInput
type ModifyDBInstanceOutput
type ModifyDBParameterGroupInput
type ModifyDBProxyEndpointInput
type ModifyDBProxyEndpointOutput
type ModifyDBProxyInput
type ModifyDBProxyOutput
type ModifyDBProxyTargetGroupInput
type ModifyDBProxyTargetGroupOutput
type ModifyDBRecommendationInput
type ModifyDBRecommendationOutput
type ModifyDBShardGroupInput
type ModifyDBShardGroupOutput
type ModifyDBSnapshotAttributeInput
type ModifyDBSnapshotAttributeOutput
type ModifyDBSnapshotInput
type ModifyDBSnapshotOutput
type ModifyDBSubnetGroupInput
type ModifyDBSubnetGroupOutput
type ModifyEventSubscriptionInput
type ModifyEventSubscriptionOutput
type ModifyGlobalClusterInput
type ModifyGlobalClusterOutput
type ModifyIntegrationInput
type ModifyIntegrationOutput
type ModifyOptionGroupInput
type ModifyOptionGroupOutput
type ModifyTenantDatabaseInput
type ModifyTenantDatabaseOutput
type Option
type OptionConfiguration
type OptionGroup
type OptionGroupMembership
type OptionGroupOption
type OptionGroupOptionSetting
type OptionSetting
type OptionVersion
type OrderableDBInstanceOption
type Outpost
type Parameter
type PendingCloudwatchLogsExports
type PendingMaintenanceAction
type PendingModifiedValues
type PerformanceInsightsMetricDimensionGroup
type PerformanceInsightsMetricQuery
type PerformanceIssueDetails
type ProcessorFeature
type PromoteReadReplicaDBClusterInput
type PromoteReadReplicaDBClusterOutput
type PromoteReadReplicaInput
type PromoteReadReplicaOutput
type PurchaseReservedDBInstancesOfferingInput
type PurchaseReservedDBInstancesOfferingOutput
type Range
type RdsCustomClusterConfiguration
type RebootDBClusterInput
type RebootDBClusterOutput
type RebootDBInstanceInput
type RebootDBInstanceOutput
type RebootDBShardGroupInput
type RebootDBShardGroupOutput
type RecommendedAction
type RecommendedActionParameter
type RecommendedActionUpdate
type RecurringCharge
type ReferenceDetails
type RegisterDBProxyTargetsInput
type RegisterDBProxyTargetsOutput
type RemoveFromGlobalClusterInput
type RemoveFromGlobalClusterOutput
type RemoveRoleFromDBClusterInput
type RemoveRoleFromDBClusterOutput
type RemoveRoleFromDBInstanceInput
type RemoveRoleFromDBInstanceOutput
type RemoveSourceIdentifierFromSubscriptionInput
type RemoveSourceIdentifierFromSubscriptionOutput
type RemoveTagsFromResourceInput
type RemoveTagsFromResourceOutput
type ReservedDBInstance
type ReservedDBInstancesOffering
type ResetDBClusterParameterGroupInput
type ResetDBParameterGroupInput
type ResourcePendingMaintenanceActions
type RestoreDBClusterFromS3Input
type RestoreDBClusterFromS3Output
type RestoreDBClusterFromSnapshotInput
type RestoreDBClusterFromSnapshotOutput
type RestoreDBClusterToPointInTimeInput
type RestoreDBClusterToPointInTimeOutput
type RestoreDBInstanceFromDBSnapshotInput
type RestoreDBInstanceFromDBSnapshotOutput
type RestoreDBInstanceFromS3Input
type RestoreDBInstanceFromS3Output
type RestoreDBInstanceToPointInTimeInput
type RestoreDBInstanceToPointInTimeOutput
type RestoreWindow
type RevokeDBSecurityGroupIngressInput
type RevokeDBSecurityGroupIngressOutput
type ScalarReferenceDetails
type ScalingConfiguration
type ScalingConfigurationInfo
type ServerlessV2ScalingConfiguration
type ServerlessV2ScalingConfigurationInfo
type SourceRegion
type StartActivityStreamInput
type StartActivityStreamOutput
type StartDBClusterInput
type StartDBClusterOutput
type StartDBInstanceAutomatedBackupsReplicationInput
type StartDBInstanceAutomatedBackupsReplicationOutput
type StartDBInstanceInput
type StartDBInstanceOutput
type StartExportTaskInput
type StartExportTaskOutput
type StopActivityStreamInput
type StopActivityStreamOutput
type StopDBClusterInput
type StopDBClusterOutput
type StopDBInstanceAutomatedBackupsReplicationInput
type StopDBInstanceAutomatedBackupsReplicationOutput
type StopDBInstanceInput
type StopDBInstanceOutput
type Subnet
type SwitchoverBlueGreenDeploymentInput
type SwitchoverBlueGreenDeploymentOutput
type SwitchoverDetail
type SwitchoverGlobalClusterInput
type SwitchoverGlobalClusterOutput
type SwitchoverReadReplicaInput
type SwitchoverReadReplicaOutput
type Tag
type TargetHealth
type TenantDatabase
type TenantDatabasePendingModifiedValues
type Timezone
type UpgradeTarget
type UserAuthConfig
type UserAuthConfigInfo
type ValidDBInstanceModificationsMessage
type ValidStorageOptions
type VpcSecurityGroupMembership

Examples ▾

RDS.AddRoleToDBCluster (Shared00)
RDS.AddRoleToDBInstance (Shared00)
RDS.AddSourceIdentifierToSubscription (Shared00)
RDS.AddTagsToResource (Shared00)
RDS.ApplyPendingMaintenanceAction (Shared00)
RDS.AuthorizeDBSecurityGroupIngress (Shared00)
RDS.CancelExportTask (Shared00)
RDS.CopyDBClusterParameterGroup (Shared00)
RDS.CopyDBClusterSnapshot (Shared00)
RDS.CopyDBParameterGroup (Shared00)
RDS.CopyDBSnapshot (Shared00)
RDS.CopyOptionGroup (Shared00)
RDS.CreateBlueGreenDeployment (Shared00)
RDS.CreateBlueGreenDeployment (Shared01)
RDS.CreateDBClusterEndpoint (Shared00)
RDS.CreateDBClusterParameterGroup (Shared00)
RDS.CreateDBClusterSnapshot (Shared00)
RDS.CreateDBCluster (Shared00)
RDS.CreateDBCluster (Shared01)
RDS.CreateDBInstanceReadReplica (Shared00)
RDS.CreateDBInstance (Shared00)
RDS.CreateDBParameterGroup (Shared00)
RDS.CreateDBSecurityGroup (Shared00)
RDS.CreateDBSnapshot (Shared00)
RDS.CreateDBSubnetGroup (Shared00)
RDS.CreateEventSubscription (Shared00)
RDS.CreateGlobalCluster (Shared00)
RDS.CreateIntegration (Shared00)
RDS.CreateOptionGroup (Shared00)
RDS.DeleteBlueGreenDeployment (Shared00)
RDS.DeleteBlueGreenDeployment (Shared01)
RDS.DeleteDBClusterEndpoint (Shared00)
RDS.DeleteDBClusterParameterGroup (Shared00)
RDS.DeleteDBClusterSnapshot (Shared00)
RDS.DeleteDBCluster (Shared00)
RDS.DeleteDBInstanceAutomatedBackup (Shared00)
RDS.DeleteDBInstance (Shared00)
RDS.DeleteDBParameterGroup (Shared00)
RDS.DeleteDBSecurityGroup (Shared00)
RDS.DeleteDBSnapshot (Shared00)
RDS.DeleteDBSubnetGroup (Shared00)
RDS.DeleteEventSubscription (Shared00)
RDS.DeleteGlobalCluster (Shared00)
RDS.DeleteIntegration (Shared00)
RDS.DeleteOptionGroup (Shared00)
RDS.DescribeAccountAttributes (Shared00)
RDS.DescribeBlueGreenDeployments (Shared00)
RDS.DescribeBlueGreenDeployments (Shared01)
RDS.DescribeBlueGreenDeployments (Shared02)
RDS.DescribeCertificates (Shared00)
RDS.DescribeDBClusterBacktracks (Shared00)
RDS.DescribeDBClusterEndpoints (Shared00)
RDS.DescribeDBClusterEndpoints (Shared01)
RDS.DescribeDBClusterParameterGroups (Shared00)
RDS.DescribeDBClusterParameters (Shared00)
RDS.DescribeDBClusterSnapshotAttributes (Shared00)
RDS.DescribeDBClusterSnapshots (Shared00)
RDS.DescribeDBClusters (Shared00)
RDS.DescribeDBEngineVersions (Shared00)
RDS.DescribeDBInstanceAutomatedBackups (Shared00)
RDS.DescribeDBInstances (Shared00)
RDS.DescribeDBLogFiles (Shared00)
RDS.DescribeDBParameterGroups (Shared00)
RDS.DescribeDBParameters (Shared00)
RDS.DescribeDBSecurityGroups (Shared00)
RDS.DescribeDBSnapshotAttributes (Shared00)
RDS.DescribeDBSnapshots (Shared00)
RDS.DescribeDBSubnetGroups (Shared00)
RDS.DescribeEngineDefaultClusterParameters (Shared00)
RDS.DescribeEngineDefaultParameters (Shared00)
RDS.DescribeEventCategories (Shared00)
RDS.DescribeEventSubscriptions (Shared00)
RDS.DescribeEvents (Shared00)
RDS.DescribeExportTasks (Shared00)
RDS.DescribeGlobalClusters (Shared00)
RDS.DescribeIntegrations (Shared00)
RDS.DescribeOptionGroupOptions (Shared00)
RDS.DescribeOptionGroups (Shared00)
RDS.DescribeOrderableDBInstanceOptions (Shared00)
RDS.DescribePendingMaintenanceActions (Shared00)
RDS.DescribeReservedDBInstancesOfferings (Shared00)
RDS.DescribeReservedDBInstances (Shared00)
RDS.DescribeSourceRegions (Shared00)
RDS.DescribeValidDBInstanceModifications (Shared00)
RDS.DownloadDBLogFilePortion (Shared00)
RDS.FailoverDBCluster (Shared00)
RDS.ListTagsForResource (Shared00)
RDS.ModifyCertificates (Shared00)
RDS.ModifyCurrentDBClusterCapacity (Shared00)
RDS.ModifyDBClusterEndpoint (Shared00)
RDS.ModifyDBClusterParameterGroup (Shared00)
RDS.ModifyDBClusterSnapshotAttribute (Shared00)
RDS.ModifyDBCluster (Shared00)
RDS.ModifyDBInstance (Shared00)
RDS.ModifyDBParameterGroup (Shared00)
RDS.ModifyDBSnapshotAttribute (Shared00)
RDS.ModifyDBSnapshotAttribute (Shared01)
RDS.ModifyDBSnapshot (Shared00)
RDS.ModifyDBSubnetGroup (Shared00)
RDS.ModifyEventSubscription (Shared00)
RDS.ModifyGlobalCluster (Shared00)
RDS.ModifyIntegration (Shared00)
RDS.ModifyOptionGroup (Shared00)
RDS.PromoteReadReplica (Shared00)
RDS.PurchaseReservedDBInstancesOffering (Shared00)
RDS.RebootDBInstance (Shared00)
RDS.RemoveFromGlobalCluster (Shared00)
RDS.RemoveRoleFromDBCluster (Shared00)
RDS.RemoveSourceIdentifierFromSubscription (Shared00)
RDS.RemoveTagsFromResource (Shared00)
RDS.ResetDBClusterParameterGroup (Shared00)
RDS.ResetDBParameterGroup (Shared00)
RDS.RestoreDBClusterFromS3 (Shared00)
RDS.RestoreDBClusterFromSnapshot (Shared00)
RDS.RestoreDBClusterToPointInTime (Shared00)
RDS.RestoreDBInstanceFromDBSnapshot (Shared00)
RDS.RestoreDBInstanceToPointInTime (Shared00)
RDS.RevokeDBSecurityGroupIngress (Shared00)
RDS.StartActivityStream (Shared00)
RDS.StartDBCluster (Shared00)
RDS.StartDBInstanceAutomatedBackupsReplication (Shared00)
RDS.StartDBInstance (Shared00)
RDS.StartExportTask (Shared00)
RDS.StopActivityStream (Shared00)
RDS.StopDBCluster (Shared00)
RDS.StopDBInstanceAutomatedBackupsReplication (Shared00)
RDS.StopDBInstance (Shared00)
RDS.SwitchoverBlueGreenDeployment (Shared00)
RDS.SwitchoverBlueGreenDeployment (Shared01)

Constants ▾

const (
    // ActivityStreamModeSync is a ActivityStreamMode enum value
    ActivityStreamModeSync = "sync"

    // ActivityStreamModeAsync is a ActivityStreamMode enum value
    ActivityStreamModeAsync = "async"
)
const (
    // ActivityStreamPolicyStatusLocked is a ActivityStreamPolicyStatus enum value
    ActivityStreamPolicyStatusLocked = "locked"

    // ActivityStreamPolicyStatusUnlocked is a ActivityStreamPolicyStatus enum value
    ActivityStreamPolicyStatusUnlocked = "unlocked"

    // ActivityStreamPolicyStatusLockingPolicy is a ActivityStreamPolicyStatus enum value
    ActivityStreamPolicyStatusLockingPolicy = "locking-policy"

    // ActivityStreamPolicyStatusUnlockingPolicy is a ActivityStreamPolicyStatus enum value
    ActivityStreamPolicyStatusUnlockingPolicy = "unlocking-policy"
)
const (
    // ActivityStreamStatusStopped is a ActivityStreamStatus enum value
    ActivityStreamStatusStopped = "stopped"

    // ActivityStreamStatusStarting is a ActivityStreamStatus enum value
    ActivityStreamStatusStarting = "starting"

    // ActivityStreamStatusStarted is a ActivityStreamStatus enum value
    ActivityStreamStatusStarted = "started"

    // ActivityStreamStatusStopping is a ActivityStreamStatus enum value
    ActivityStreamStatusStopping = "stopping"
)
const (
    // ApplyMethodImmediate is a ApplyMethod enum value
    ApplyMethodImmediate = "immediate"

    // ApplyMethodPendingReboot is a ApplyMethod enum value
    ApplyMethodPendingReboot = "pending-reboot"
)
const (
    // AuditPolicyStateLocked is a AuditPolicyState enum value
    AuditPolicyStateLocked = "locked"

    // AuditPolicyStateUnlocked is a AuditPolicyState enum value
    AuditPolicyStateUnlocked = "unlocked"
)
const (
    // AutomationModeFull is a AutomationMode enum value
    AutomationModeFull = "full"

    // AutomationModeAllPaused is a AutomationMode enum value
    AutomationModeAllPaused = "all-paused"
)
const (
    // ClientPasswordAuthTypeMysqlNativePassword is a ClientPasswordAuthType enum value
    ClientPasswordAuthTypeMysqlNativePassword = "MYSQL_NATIVE_PASSWORD"

    // ClientPasswordAuthTypePostgresScramSha256 is a ClientPasswordAuthType enum value
    ClientPasswordAuthTypePostgresScramSha256 = "POSTGRES_SCRAM_SHA_256"

    // ClientPasswordAuthTypePostgresMd5 is a ClientPasswordAuthType enum value
    ClientPasswordAuthTypePostgresMd5 = "POSTGRES_MD5"

    // ClientPasswordAuthTypeSqlServerAuthentication is a ClientPasswordAuthType enum value
    ClientPasswordAuthTypeSqlServerAuthentication = "SQL_SERVER_AUTHENTICATION"
)
const (
    // CustomEngineVersionStatusAvailable is a CustomEngineVersionStatus enum value
    CustomEngineVersionStatusAvailable = "available"

    // CustomEngineVersionStatusInactive is a CustomEngineVersionStatus enum value
    CustomEngineVersionStatusInactive = "inactive"

    // CustomEngineVersionStatusInactiveExceptRestore is a CustomEngineVersionStatus enum value
    CustomEngineVersionStatusInactiveExceptRestore = "inactive-except-restore"
)
const (
    // DBProxyEndpointStatusAvailable is a DBProxyEndpointStatus enum value
    DBProxyEndpointStatusAvailable = "available"

    // DBProxyEndpointStatusModifying is a DBProxyEndpointStatus enum value
    DBProxyEndpointStatusModifying = "modifying"

    // DBProxyEndpointStatusIncompatibleNetwork is a DBProxyEndpointStatus enum value
    DBProxyEndpointStatusIncompatibleNetwork = "incompatible-network"

    // DBProxyEndpointStatusInsufficientResourceLimits is a DBProxyEndpointStatus enum value
    DBProxyEndpointStatusInsufficientResourceLimits = "insufficient-resource-limits"

    // DBProxyEndpointStatusCreating is a DBProxyEndpointStatus enum value
    DBProxyEndpointStatusCreating = "creating"

    // DBProxyEndpointStatusDeleting is a DBProxyEndpointStatus enum value
    DBProxyEndpointStatusDeleting = "deleting"
)
const (
    // DBProxyEndpointTargetRoleReadWrite is a DBProxyEndpointTargetRole enum value
    DBProxyEndpointTargetRoleReadWrite = "READ_WRITE"

    // DBProxyEndpointTargetRoleReadOnly is a DBProxyEndpointTargetRole enum value
    DBProxyEndpointTargetRoleReadOnly = "READ_ONLY"
)
const (
    // DBProxyStatusAvailable is a DBProxyStatus enum value
    DBProxyStatusAvailable = "available"

    // DBProxyStatusModifying is a DBProxyStatus enum value
    DBProxyStatusModifying = "modifying"

    // DBProxyStatusIncompatibleNetwork is a DBProxyStatus enum value
    DBProxyStatusIncompatibleNetwork = "incompatible-network"

    // DBProxyStatusInsufficientResourceLimits is a DBProxyStatus enum value
    DBProxyStatusInsufficientResourceLimits = "insufficient-resource-limits"

    // DBProxyStatusCreating is a DBProxyStatus enum value
    DBProxyStatusCreating = "creating"

    // DBProxyStatusDeleting is a DBProxyStatus enum value
    DBProxyStatusDeleting = "deleting"

    // DBProxyStatusSuspended is a DBProxyStatus enum value
    DBProxyStatusSuspended = "suspended"

    // DBProxyStatusSuspending is a DBProxyStatus enum value
    DBProxyStatusSuspending = "suspending"

    // DBProxyStatusReactivating is a DBProxyStatus enum value
    DBProxyStatusReactivating = "reactivating"
)
const (
    // EngineFamilyMysql is a EngineFamily enum value
    EngineFamilyMysql = "MYSQL"

    // EngineFamilyPostgresql is a EngineFamily enum value
    EngineFamilyPostgresql = "POSTGRESQL"

    // EngineFamilySqlserver is a EngineFamily enum value
    EngineFamilySqlserver = "SQLSERVER"
)
const (
    // ExportSourceTypeSnapshot is a ExportSourceType enum value
    ExportSourceTypeSnapshot = "SNAPSHOT"

    // ExportSourceTypeCluster is a ExportSourceType enum value
    ExportSourceTypeCluster = "CLUSTER"
)
const (
    // FailoverStatusPending is a FailoverStatus enum value
    FailoverStatusPending = "pending"

    // FailoverStatusFailingOver is a FailoverStatus enum value
    FailoverStatusFailingOver = "failing-over"

    // FailoverStatusCancelling is a FailoverStatus enum value
    FailoverStatusCancelling = "cancelling"
)
const (
    // GlobalClusterMemberSynchronizationStatusConnected is a GlobalClusterMemberSynchronizationStatus enum value
    GlobalClusterMemberSynchronizationStatusConnected = "connected"

    // GlobalClusterMemberSynchronizationStatusPendingResync is a GlobalClusterMemberSynchronizationStatus enum value
    GlobalClusterMemberSynchronizationStatusPendingResync = "pending-resync"
)
const (
    // IAMAuthModeDisabled is a IAMAuthMode enum value
    IAMAuthModeDisabled = "DISABLED"

    // IAMAuthModeRequired is a IAMAuthMode enum value
    IAMAuthModeRequired = "REQUIRED"

    // IAMAuthModeEnabled is a IAMAuthMode enum value
    IAMAuthModeEnabled = "ENABLED"
)
const (
    // IntegrationStatusCreating is a IntegrationStatus enum value
    IntegrationStatusCreating = "creating"

    // IntegrationStatusActive is a IntegrationStatus enum value
    IntegrationStatusActive = "active"

    // IntegrationStatusModifying is a IntegrationStatus enum value
    IntegrationStatusModifying = "modifying"

    // IntegrationStatusFailed is a IntegrationStatus enum value
    IntegrationStatusFailed = "failed"

    // IntegrationStatusDeleting is a IntegrationStatus enum value
    IntegrationStatusDeleting = "deleting"

    // IntegrationStatusSyncing is a IntegrationStatus enum value
    IntegrationStatusSyncing = "syncing"

    // IntegrationStatusNeedsAttention is a IntegrationStatus enum value
    IntegrationStatusNeedsAttention = "needs_attention"
)
const (
    // LimitlessDatabaseStatusActive is a LimitlessDatabaseStatus enum value
    LimitlessDatabaseStatusActive = "active"

    // LimitlessDatabaseStatusNotInUse is a LimitlessDatabaseStatus enum value
    LimitlessDatabaseStatusNotInUse = "not-in-use"

    // LimitlessDatabaseStatusEnabled is a LimitlessDatabaseStatus enum value
    LimitlessDatabaseStatusEnabled = "enabled"

    // LimitlessDatabaseStatusDisabled is a LimitlessDatabaseStatus enum value
    LimitlessDatabaseStatusDisabled = "disabled"

    // LimitlessDatabaseStatusEnabling is a LimitlessDatabaseStatus enum value
    LimitlessDatabaseStatusEnabling = "enabling"

    // LimitlessDatabaseStatusDisabling is a LimitlessDatabaseStatus enum value
    LimitlessDatabaseStatusDisabling = "disabling"

    // LimitlessDatabaseStatusModifyingMaxCapacity is a LimitlessDatabaseStatus enum value
    LimitlessDatabaseStatusModifyingMaxCapacity = "modifying-max-capacity"

    // LimitlessDatabaseStatusError is a LimitlessDatabaseStatus enum value
    LimitlessDatabaseStatusError = "error"
)
const (
    // LocalWriteForwardingStatusEnabled is a LocalWriteForwardingStatus enum value
    LocalWriteForwardingStatusEnabled = "enabled"

    // LocalWriteForwardingStatusDisabled is a LocalWriteForwardingStatus enum value
    LocalWriteForwardingStatusDisabled = "disabled"

    // LocalWriteForwardingStatusEnabling is a LocalWriteForwardingStatus enum value
    LocalWriteForwardingStatusEnabling = "enabling"

    // LocalWriteForwardingStatusDisabling is a LocalWriteForwardingStatus enum value
    LocalWriteForwardingStatusDisabling = "disabling"

    // LocalWriteForwardingStatusRequested is a LocalWriteForwardingStatus enum value
    LocalWriteForwardingStatusRequested = "requested"
)
const (
    // ReplicaModeOpenReadOnly is a ReplicaMode enum value
    ReplicaModeOpenReadOnly = "open-read-only"

    // ReplicaModeMounted is a ReplicaMode enum value
    ReplicaModeMounted = "mounted"
)
const (
    // SourceTypeDbInstance is a SourceType enum value
    SourceTypeDbInstance = "db-instance"

    // SourceTypeDbParameterGroup is a SourceType enum value
    SourceTypeDbParameterGroup = "db-parameter-group"

    // SourceTypeDbSecurityGroup is a SourceType enum value
    SourceTypeDbSecurityGroup = "db-security-group"

    // SourceTypeDbSnapshot is a SourceType enum value
    SourceTypeDbSnapshot = "db-snapshot"

    // SourceTypeDbCluster is a SourceType enum value
    SourceTypeDbCluster = "db-cluster"

    // SourceTypeDbClusterSnapshot is a SourceType enum value
    SourceTypeDbClusterSnapshot = "db-cluster-snapshot"

    // SourceTypeCustomEngineVersion is a SourceType enum value
    SourceTypeCustomEngineVersion = "custom-engine-version"

    // SourceTypeDbProxy is a SourceType enum value
    SourceTypeDbProxy = "db-proxy"

    // SourceTypeBlueGreenDeployment is a SourceType enum value
    SourceTypeBlueGreenDeployment = "blue-green-deployment"
)
const (
    // TargetHealthReasonUnreachable is a TargetHealthReason enum value
    TargetHealthReasonUnreachable = "UNREACHABLE"

    // TargetHealthReasonConnectionFailed is a TargetHealthReason enum value
    TargetHealthReasonConnectionFailed = "CONNECTION_FAILED"

    // TargetHealthReasonAuthFailure is a TargetHealthReason enum value
    TargetHealthReasonAuthFailure = "AUTH_FAILURE"

    // TargetHealthReasonPendingProxyCapacity is a TargetHealthReason enum value
    TargetHealthReasonPendingProxyCapacity = "PENDING_PROXY_CAPACITY"

    // TargetHealthReasonInvalidReplicationState is a TargetHealthReason enum value
    TargetHealthReasonInvalidReplicationState = "INVALID_REPLICATION_STATE"
)
const (
    // TargetRoleReadWrite is a TargetRole enum value
    TargetRoleReadWrite = "READ_WRITE"

    // TargetRoleReadOnly is a TargetRole enum value
    TargetRoleReadOnly = "READ_ONLY"

    // TargetRoleUnknown is a TargetRole enum value
    TargetRoleUnknown = "UNKNOWN"
)
const (
    // TargetStateRegistering is a TargetState enum value
    TargetStateRegistering = "REGISTERING"

    // TargetStateAvailable is a TargetState enum value
    TargetStateAvailable = "AVAILABLE"

    // TargetStateUnavailable is a TargetState enum value
    TargetStateUnavailable = "UNAVAILABLE"
)
const (
    // TargetTypeRdsInstance is a TargetType enum value
    TargetTypeRdsInstance = "RDS_INSTANCE"

    // TargetTypeRdsServerlessEndpoint is a TargetType enum value
    TargetTypeRdsServerlessEndpoint = "RDS_SERVERLESS_ENDPOINT"

    // TargetTypeTrackedCluster is a TargetType enum value
    TargetTypeTrackedCluster = "TRACKED_CLUSTER"
)
const (
    // WriteForwardingStatusEnabled is a WriteForwardingStatus enum value
    WriteForwardingStatusEnabled = "enabled"

    // WriteForwardingStatusDisabled is a WriteForwardingStatus enum value
    WriteForwardingStatusDisabled = "disabled"

    // WriteForwardingStatusEnabling is a WriteForwardingStatus enum value
    WriteForwardingStatusEnabling = "enabling"

    // WriteForwardingStatusDisabling is a WriteForwardingStatus enum value
    WriteForwardingStatusDisabling = "disabling"

    // WriteForwardingStatusUnknown is a WriteForwardingStatus enum value
    WriteForwardingStatusUnknown = "unknown"
)
const (

    // ErrCodeAuthorizationAlreadyExistsFault for service response error code
    // "AuthorizationAlreadyExists".
    //
    // The specified CIDR IP range or Amazon EC2 security group is already authorized
    // for the specified DB security group.
    ErrCodeAuthorizationAlreadyExistsFault = "AuthorizationAlreadyExists"

    // ErrCodeAuthorizationNotFoundFault for service response error code
    // "AuthorizationNotFound".
    //
    // The specified CIDR IP range or Amazon EC2 security group might not be authorized
    // for the specified DB security group.
    //
    // Or, RDS might not be authorized to perform necessary actions using IAM on
    // your behalf.
    ErrCodeAuthorizationNotFoundFault = "AuthorizationNotFound"

    // ErrCodeAuthorizationQuotaExceededFault for service response error code
    // "AuthorizationQuotaExceeded".
    //
    // The DB security group authorization quota has been reached.
    ErrCodeAuthorizationQuotaExceededFault = "AuthorizationQuotaExceeded"

    // ErrCodeBackupPolicyNotFoundFault for service response error code
    // "BackupPolicyNotFoundFault".
    ErrCodeBackupPolicyNotFoundFault = "BackupPolicyNotFoundFault"

    // ErrCodeBlueGreenDeploymentAlreadyExistsFault for service response error code
    // "BlueGreenDeploymentAlreadyExistsFault".
    //
    // A blue/green deployment with the specified name already exists.
    ErrCodeBlueGreenDeploymentAlreadyExistsFault = "BlueGreenDeploymentAlreadyExistsFault"

    // ErrCodeBlueGreenDeploymentNotFoundFault for service response error code
    // "BlueGreenDeploymentNotFoundFault".
    //
    // BlueGreenDeploymentIdentifier doesn't refer to an existing blue/green deployment.
    ErrCodeBlueGreenDeploymentNotFoundFault = "BlueGreenDeploymentNotFoundFault"

    // ErrCodeCertificateNotFoundFault for service response error code
    // "CertificateNotFound".
    //
    // CertificateIdentifier doesn't refer to an existing certificate.
    ErrCodeCertificateNotFoundFault = "CertificateNotFound"

    // ErrCodeCreateCustomDBEngineVersionFault for service response error code
    // "CreateCustomDBEngineVersionFault".
    //
    // An error occurred while trying to create the CEV.
    ErrCodeCreateCustomDBEngineVersionFault = "CreateCustomDBEngineVersionFault"

    // ErrCodeCustomAvailabilityZoneNotFoundFault for service response error code
    // "CustomAvailabilityZoneNotFound".
    //
    // CustomAvailabilityZoneId doesn't refer to an existing custom Availability
    // Zone identifier.
    ErrCodeCustomAvailabilityZoneNotFoundFault = "CustomAvailabilityZoneNotFound"

    // ErrCodeCustomDBEngineVersionAlreadyExistsFault for service response error code
    // "CustomDBEngineVersionAlreadyExistsFault".
    //
    // A CEV with the specified name already exists.
    ErrCodeCustomDBEngineVersionAlreadyExistsFault = "CustomDBEngineVersionAlreadyExistsFault"

    // ErrCodeCustomDBEngineVersionNotFoundFault for service response error code
    // "CustomDBEngineVersionNotFoundFault".
    //
    // The specified CEV was not found.
    ErrCodeCustomDBEngineVersionNotFoundFault = "CustomDBEngineVersionNotFoundFault"

    // ErrCodeCustomDBEngineVersionQuotaExceededFault for service response error code
    // "CustomDBEngineVersionQuotaExceededFault".
    //
    // You have exceeded your CEV quota.
    ErrCodeCustomDBEngineVersionQuotaExceededFault = "CustomDBEngineVersionQuotaExceededFault"

    // ErrCodeDBClusterAlreadyExistsFault for service response error code
    // "DBClusterAlreadyExistsFault".
    //
    // The user already has a DB cluster with the given identifier.
    ErrCodeDBClusterAlreadyExistsFault = "DBClusterAlreadyExistsFault"

    // ErrCodeDBClusterAutomatedBackupNotFoundFault for service response error code
    // "DBClusterAutomatedBackupNotFoundFault".
    //
    // No automated backup for this DB cluster was found.
    ErrCodeDBClusterAutomatedBackupNotFoundFault = "DBClusterAutomatedBackupNotFoundFault"

    // ErrCodeDBClusterAutomatedBackupQuotaExceededFault for service response error code
    // "DBClusterAutomatedBackupQuotaExceededFault".
    //
    // The quota for retained automated backups was exceeded. This prevents you
    // from retaining any additional automated backups. The retained automated backups
    // quota is the same as your DB cluster quota.
    ErrCodeDBClusterAutomatedBackupQuotaExceededFault = "DBClusterAutomatedBackupQuotaExceededFault"

    // ErrCodeDBClusterBacktrackNotFoundFault for service response error code
    // "DBClusterBacktrackNotFoundFault".
    //
    // BacktrackIdentifier doesn't refer to an existing backtrack.
    ErrCodeDBClusterBacktrackNotFoundFault = "DBClusterBacktrackNotFoundFault"

    // ErrCodeDBClusterEndpointAlreadyExistsFault for service response error code
    // "DBClusterEndpointAlreadyExistsFault".
    //
    // The specified custom endpoint can't be created because it already exists.
    ErrCodeDBClusterEndpointAlreadyExistsFault = "DBClusterEndpointAlreadyExistsFault"

    // ErrCodeDBClusterEndpointNotFoundFault for service response error code
    // "DBClusterEndpointNotFoundFault".
    //
    // The specified custom endpoint doesn't exist.
    ErrCodeDBClusterEndpointNotFoundFault = "DBClusterEndpointNotFoundFault"

    // ErrCodeDBClusterEndpointQuotaExceededFault for service response error code
    // "DBClusterEndpointQuotaExceededFault".
    //
    // The cluster already has the maximum number of custom endpoints.
    ErrCodeDBClusterEndpointQuotaExceededFault = "DBClusterEndpointQuotaExceededFault"

    // ErrCodeDBClusterNotFoundFault for service response error code
    // "DBClusterNotFoundFault".
    //
    // DBClusterIdentifier doesn't refer to an existing DB cluster.
    ErrCodeDBClusterNotFoundFault = "DBClusterNotFoundFault"

    // ErrCodeDBClusterParameterGroupNotFoundFault for service response error code
    // "DBClusterParameterGroupNotFound".
    //
    // DBClusterParameterGroupName doesn't refer to an existing DB cluster parameter
    // group.
    ErrCodeDBClusterParameterGroupNotFoundFault = "DBClusterParameterGroupNotFound"

    // ErrCodeDBClusterQuotaExceededFault for service response error code
    // "DBClusterQuotaExceededFault".
    //
    // The user attempted to create a new DB cluster and the user has already reached
    // the maximum allowed DB cluster quota.
    ErrCodeDBClusterQuotaExceededFault = "DBClusterQuotaExceededFault"

    // ErrCodeDBClusterRoleAlreadyExistsFault for service response error code
    // "DBClusterRoleAlreadyExists".
    //
    // The specified IAM role Amazon Resource Name (ARN) is already associated with
    // the specified DB cluster.
    ErrCodeDBClusterRoleAlreadyExistsFault = "DBClusterRoleAlreadyExists"

    // ErrCodeDBClusterRoleNotFoundFault for service response error code
    // "DBClusterRoleNotFound".
    //
    // The specified IAM role Amazon Resource Name (ARN) isn't associated with the
    // specified DB cluster.
    ErrCodeDBClusterRoleNotFoundFault = "DBClusterRoleNotFound"

    // ErrCodeDBClusterRoleQuotaExceededFault for service response error code
    // "DBClusterRoleQuotaExceeded".
    //
    // You have exceeded the maximum number of IAM roles that can be associated
    // with the specified DB cluster.
    ErrCodeDBClusterRoleQuotaExceededFault = "DBClusterRoleQuotaExceeded"

    // ErrCodeDBClusterSnapshotAlreadyExistsFault for service response error code
    // "DBClusterSnapshotAlreadyExistsFault".
    //
    // The user already has a DB cluster snapshot with the given identifier.
    ErrCodeDBClusterSnapshotAlreadyExistsFault = "DBClusterSnapshotAlreadyExistsFault"

    // ErrCodeDBClusterSnapshotNotFoundFault for service response error code
    // "DBClusterSnapshotNotFoundFault".
    //
    // DBClusterSnapshotIdentifier doesn't refer to an existing DB cluster snapshot.
    ErrCodeDBClusterSnapshotNotFoundFault = "DBClusterSnapshotNotFoundFault"

    // ErrCodeDBInstanceAlreadyExistsFault for service response error code
    // "DBInstanceAlreadyExists".
    //
    // The user already has a DB instance with the given identifier.
    ErrCodeDBInstanceAlreadyExistsFault = "DBInstanceAlreadyExists"

    // ErrCodeDBInstanceAutomatedBackupNotFoundFault for service response error code
    // "DBInstanceAutomatedBackupNotFound".
    //
    // No automated backup for this DB instance was found.
    ErrCodeDBInstanceAutomatedBackupNotFoundFault = "DBInstanceAutomatedBackupNotFound"

    // ErrCodeDBInstanceAutomatedBackupQuotaExceededFault for service response error code
    // "DBInstanceAutomatedBackupQuotaExceeded".
    //
    // The quota for retained automated backups was exceeded. This prevents you
    // from retaining any additional automated backups. The retained automated backups
    // quota is the same as your DB instance quota.
    ErrCodeDBInstanceAutomatedBackupQuotaExceededFault = "DBInstanceAutomatedBackupQuotaExceeded"

    // ErrCodeDBInstanceNotFoundFault for service response error code
    // "DBInstanceNotFound".
    //
    // DBInstanceIdentifier doesn't refer to an existing DB instance.
    ErrCodeDBInstanceNotFoundFault = "DBInstanceNotFound"

    // ErrCodeDBInstanceRoleAlreadyExistsFault for service response error code
    // "DBInstanceRoleAlreadyExists".
    //
    // The specified RoleArn or FeatureName value is already associated with the
    // DB instance.
    ErrCodeDBInstanceRoleAlreadyExistsFault = "DBInstanceRoleAlreadyExists"

    // ErrCodeDBInstanceRoleNotFoundFault for service response error code
    // "DBInstanceRoleNotFound".
    //
    // The specified RoleArn value doesn't match the specified feature for the DB
    // instance.
    ErrCodeDBInstanceRoleNotFoundFault = "DBInstanceRoleNotFound"

    // ErrCodeDBInstanceRoleQuotaExceededFault for service response error code
    // "DBInstanceRoleQuotaExceeded".
    //
    // You can't associate any more Amazon Web Services Identity and Access Management
    // (IAM) roles with the DB instance because the quota has been reached.
    ErrCodeDBInstanceRoleQuotaExceededFault = "DBInstanceRoleQuotaExceeded"

    // ErrCodeDBLogFileNotFoundFault for service response error code
    // "DBLogFileNotFoundFault".
    //
    // LogFileName doesn't refer to an existing DB log file.
    ErrCodeDBLogFileNotFoundFault = "DBLogFileNotFoundFault"

    // ErrCodeDBParameterGroupAlreadyExistsFault for service response error code
    // "DBParameterGroupAlreadyExists".
    //
    // A DB parameter group with the same name exists.
    ErrCodeDBParameterGroupAlreadyExistsFault = "DBParameterGroupAlreadyExists"

    // ErrCodeDBParameterGroupNotFoundFault for service response error code
    // "DBParameterGroupNotFound".
    //
    // DBParameterGroupName doesn't refer to an existing DB parameter group.
    ErrCodeDBParameterGroupNotFoundFault = "DBParameterGroupNotFound"

    // ErrCodeDBParameterGroupQuotaExceededFault for service response error code
    // "DBParameterGroupQuotaExceeded".
    //
    // The request would result in the user exceeding the allowed number of DB parameter
    // groups.
    ErrCodeDBParameterGroupQuotaExceededFault = "DBParameterGroupQuotaExceeded"

    // ErrCodeDBProxyAlreadyExistsFault for service response error code
    // "DBProxyAlreadyExistsFault".
    //
    // The specified proxy name must be unique for all proxies owned by your Amazon
    // Web Services account in the specified Amazon Web Services Region.
    ErrCodeDBProxyAlreadyExistsFault = "DBProxyAlreadyExistsFault"

    // ErrCodeDBProxyEndpointAlreadyExistsFault for service response error code
    // "DBProxyEndpointAlreadyExistsFault".
    //
    // The specified DB proxy endpoint name must be unique for all DB proxy endpoints
    // owned by your Amazon Web Services account in the specified Amazon Web Services
    // Region.
    ErrCodeDBProxyEndpointAlreadyExistsFault = "DBProxyEndpointAlreadyExistsFault"

    // ErrCodeDBProxyEndpointNotFoundFault for service response error code
    // "DBProxyEndpointNotFoundFault".
    //
    // The DB proxy endpoint doesn't exist.
    ErrCodeDBProxyEndpointNotFoundFault = "DBProxyEndpointNotFoundFault"

    // ErrCodeDBProxyEndpointQuotaExceededFault for service response error code
    // "DBProxyEndpointQuotaExceededFault".
    //
    // The DB proxy already has the maximum number of endpoints.
    ErrCodeDBProxyEndpointQuotaExceededFault = "DBProxyEndpointQuotaExceededFault"

    // ErrCodeDBProxyNotFoundFault for service response error code
    // "DBProxyNotFoundFault".
    //
    // The specified proxy name doesn't correspond to a proxy owned by your Amazon
    // Web Services account in the specified Amazon Web Services Region.
    ErrCodeDBProxyNotFoundFault = "DBProxyNotFoundFault"

    // ErrCodeDBProxyQuotaExceededFault for service response error code
    // "DBProxyQuotaExceededFault".
    //
    // Your Amazon Web Services account already has the maximum number of proxies
    // in the specified Amazon Web Services Region.
    ErrCodeDBProxyQuotaExceededFault = "DBProxyQuotaExceededFault"

    // ErrCodeDBProxyTargetAlreadyRegisteredFault for service response error code
    // "DBProxyTargetAlreadyRegisteredFault".
    //
    // The proxy is already associated with the specified RDS DB instance or Aurora
    // DB cluster.
    ErrCodeDBProxyTargetAlreadyRegisteredFault = "DBProxyTargetAlreadyRegisteredFault"

    // ErrCodeDBProxyTargetGroupNotFoundFault for service response error code
    // "DBProxyTargetGroupNotFoundFault".
    //
    // The specified target group isn't available for a proxy owned by your Amazon
    // Web Services account in the specified Amazon Web Services Region.
    ErrCodeDBProxyTargetGroupNotFoundFault = "DBProxyTargetGroupNotFoundFault"

    // ErrCodeDBProxyTargetNotFoundFault for service response error code
    // "DBProxyTargetNotFoundFault".
    //
    // The specified RDS DB instance or Aurora DB cluster isn't available for a
    // proxy owned by your Amazon Web Services account in the specified Amazon Web
    // Services Region.
    ErrCodeDBProxyTargetNotFoundFault = "DBProxyTargetNotFoundFault"

    // ErrCodeDBSecurityGroupAlreadyExistsFault for service response error code
    // "DBSecurityGroupAlreadyExists".
    //
    // A DB security group with the name specified in DBSecurityGroupName already
    // exists.
    ErrCodeDBSecurityGroupAlreadyExistsFault = "DBSecurityGroupAlreadyExists"

    // ErrCodeDBSecurityGroupNotFoundFault for service response error code
    // "DBSecurityGroupNotFound".
    //
    // DBSecurityGroupName doesn't refer to an existing DB security group.
    ErrCodeDBSecurityGroupNotFoundFault = "DBSecurityGroupNotFound"

    // ErrCodeDBSecurityGroupNotSupportedFault for service response error code
    // "DBSecurityGroupNotSupported".
    //
    // A DB security group isn't allowed for this action.
    ErrCodeDBSecurityGroupNotSupportedFault = "DBSecurityGroupNotSupported"

    // ErrCodeDBSecurityGroupQuotaExceededFault for service response error code
    // "QuotaExceeded.DBSecurityGroup".
    //
    // The request would result in the user exceeding the allowed number of DB security
    // groups.
    ErrCodeDBSecurityGroupQuotaExceededFault = "QuotaExceeded.DBSecurityGroup"

    // ErrCodeDBShardGroupAlreadyExistsFault for service response error code
    // "DBShardGroupAlreadyExists".
    //
    // The specified DB shard group name must be unique in your Amazon Web Services
    // account in the specified Amazon Web Services Region.
    ErrCodeDBShardGroupAlreadyExistsFault = "DBShardGroupAlreadyExists"

    // ErrCodeDBShardGroupNotFoundFault for service response error code
    // "DBShardGroupNotFound".
    //
    // The specified DB shard group name wasn't found.
    ErrCodeDBShardGroupNotFoundFault = "DBShardGroupNotFound"

    // ErrCodeDBSnapshotAlreadyExistsFault for service response error code
    // "DBSnapshotAlreadyExists".
    //
    // DBSnapshotIdentifier is already used by an existing snapshot.
    ErrCodeDBSnapshotAlreadyExistsFault = "DBSnapshotAlreadyExists"

    // ErrCodeDBSnapshotNotFoundFault for service response error code
    // "DBSnapshotNotFound".
    //
    // DBSnapshotIdentifier doesn't refer to an existing DB snapshot.
    ErrCodeDBSnapshotNotFoundFault = "DBSnapshotNotFound"

    // ErrCodeDBSnapshotTenantDatabaseNotFoundFault for service response error code
    // "DBSnapshotTenantDatabaseNotFoundFault".
    //
    // The specified snapshot tenant database wasn't found.
    ErrCodeDBSnapshotTenantDatabaseNotFoundFault = "DBSnapshotTenantDatabaseNotFoundFault"

    // ErrCodeDBSubnetGroupAlreadyExistsFault for service response error code
    // "DBSubnetGroupAlreadyExists".
    //
    // DBSubnetGroupName is already used by an existing DB subnet group.
    ErrCodeDBSubnetGroupAlreadyExistsFault = "DBSubnetGroupAlreadyExists"

    // ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs for service response error code
    // "DBSubnetGroupDoesNotCoverEnoughAZs".
    //
    // Subnets in the DB subnet group should cover at least two Availability Zones
    // unless there is only one Availability Zone.
    ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs = "DBSubnetGroupDoesNotCoverEnoughAZs"

    // ErrCodeDBSubnetGroupNotAllowedFault for service response error code
    // "DBSubnetGroupNotAllowedFault".
    //
    // The DBSubnetGroup shouldn't be specified while creating read replicas that
    // lie in the same region as the source instance.
    ErrCodeDBSubnetGroupNotAllowedFault = "DBSubnetGroupNotAllowedFault"

    // ErrCodeDBSubnetGroupNotFoundFault for service response error code
    // "DBSubnetGroupNotFoundFault".
    //
    // DBSubnetGroupName doesn't refer to an existing DB subnet group.
    ErrCodeDBSubnetGroupNotFoundFault = "DBSubnetGroupNotFoundFault"

    // ErrCodeDBSubnetGroupQuotaExceededFault for service response error code
    // "DBSubnetGroupQuotaExceeded".
    //
    // The request would result in the user exceeding the allowed number of DB subnet
    // groups.
    ErrCodeDBSubnetGroupQuotaExceededFault = "DBSubnetGroupQuotaExceeded"

    // ErrCodeDBSubnetQuotaExceededFault for service response error code
    // "DBSubnetQuotaExceededFault".
    //
    // The request would result in the user exceeding the allowed number of subnets
    // in a DB subnet groups.
    ErrCodeDBSubnetQuotaExceededFault = "DBSubnetQuotaExceededFault"

    // ErrCodeDBUpgradeDependencyFailureFault for service response error code
    // "DBUpgradeDependencyFailure".
    //
    // The DB upgrade failed because a resource the DB depends on can't be modified.
    ErrCodeDBUpgradeDependencyFailureFault = "DBUpgradeDependencyFailure"

    // ErrCodeDomainNotFoundFault for service response error code
    // "DomainNotFoundFault".
    //
    // Domain doesn't refer to an existing Active Directory domain.
    ErrCodeDomainNotFoundFault = "DomainNotFoundFault"

    // ErrCodeEc2ImagePropertiesNotSupportedFault for service response error code
    // "Ec2ImagePropertiesNotSupportedFault".
    //
    // The AMI configuration prerequisite has not been met.
    ErrCodeEc2ImagePropertiesNotSupportedFault = "Ec2ImagePropertiesNotSupportedFault"

    // ErrCodeEventSubscriptionQuotaExceededFault for service response error code
    // "EventSubscriptionQuotaExceeded".
    //
    // You have reached the maximum number of event subscriptions.
    ErrCodeEventSubscriptionQuotaExceededFault = "EventSubscriptionQuotaExceeded"

    // ErrCodeExportTaskAlreadyExistsFault for service response error code
    // "ExportTaskAlreadyExists".
    //
    // You can't start an export task that's already running.
    ErrCodeExportTaskAlreadyExistsFault = "ExportTaskAlreadyExists"

    // ErrCodeExportTaskNotFoundFault for service response error code
    // "ExportTaskNotFound".
    //
    // The export task doesn't exist.
    ErrCodeExportTaskNotFoundFault = "ExportTaskNotFound"

    // ErrCodeGlobalClusterAlreadyExistsFault for service response error code
    // "GlobalClusterAlreadyExistsFault".
    //
    // The GlobalClusterIdentifier already exists. Choose a new global database
    // identifier (unique name) to create a new global database cluster.
    ErrCodeGlobalClusterAlreadyExistsFault = "GlobalClusterAlreadyExistsFault"

    // ErrCodeGlobalClusterNotFoundFault for service response error code
    // "GlobalClusterNotFoundFault".
    //
    // The GlobalClusterIdentifier doesn't refer to an existing global database
    // cluster.
    ErrCodeGlobalClusterNotFoundFault = "GlobalClusterNotFoundFault"

    // ErrCodeGlobalClusterQuotaExceededFault for service response error code
    // "GlobalClusterQuotaExceededFault".
    //
    // The number of global database clusters for this account is already at the
    // maximum allowed.
    ErrCodeGlobalClusterQuotaExceededFault = "GlobalClusterQuotaExceededFault"

    // ErrCodeIamRoleMissingPermissionsFault for service response error code
    // "IamRoleMissingPermissions".
    //
    // The IAM role requires additional permissions to export to an Amazon S3 bucket.
    ErrCodeIamRoleMissingPermissionsFault = "IamRoleMissingPermissions"

    // ErrCodeIamRoleNotFoundFault for service response error code
    // "IamRoleNotFound".
    //
    // The IAM role is missing for exporting to an Amazon S3 bucket.
    ErrCodeIamRoleNotFoundFault = "IamRoleNotFound"

    // ErrCodeInstanceQuotaExceededFault for service response error code
    // "InstanceQuotaExceeded".
    //
    // The request would result in the user exceeding the allowed number of DB instances.
    ErrCodeInstanceQuotaExceededFault = "InstanceQuotaExceeded"

    // ErrCodeInsufficientAvailableIPsInSubnetFault for service response error code
    // "InsufficientAvailableIPsInSubnetFault".
    //
    // The requested operation can't be performed because there aren't enough available
    // IP addresses in the proxy's subnets. Add more CIDR blocks to the VPC or remove
    // IP address that aren't required from the subnets.
    ErrCodeInsufficientAvailableIPsInSubnetFault = "InsufficientAvailableIPsInSubnetFault"

    // ErrCodeInsufficientDBClusterCapacityFault for service response error code
    // "InsufficientDBClusterCapacityFault".
    //
    // The DB cluster doesn't have enough capacity for the current operation.
    ErrCodeInsufficientDBClusterCapacityFault = "InsufficientDBClusterCapacityFault"

    // ErrCodeInsufficientDBInstanceCapacityFault for service response error code
    // "InsufficientDBInstanceCapacity".
    //
    // The specified DB instance class isn't available in the specified Availability
    // Zone.
    ErrCodeInsufficientDBInstanceCapacityFault = "InsufficientDBInstanceCapacity"

    // ErrCodeInsufficientStorageClusterCapacityFault for service response error code
    // "InsufficientStorageClusterCapacity".
    //
    // There is insufficient storage available for the current action. You might
    // be able to resolve this error by updating your subnet group to use different
    // Availability Zones that have more storage available.
    ErrCodeInsufficientStorageClusterCapacityFault = "InsufficientStorageClusterCapacity"

    // ErrCodeIntegrationAlreadyExistsFault for service response error code
    // "IntegrationAlreadyExistsFault".
    //
    // The integration you are trying to create already exists.
    ErrCodeIntegrationAlreadyExistsFault = "IntegrationAlreadyExistsFault"

    // ErrCodeIntegrationConflictOperationFault for service response error code
    // "IntegrationConflictOperationFault".
    //
    // A conflicting conditional operation is currently in progress against this
    // resource. Typically occurs when there are multiple requests being made to
    // the same resource at the same time, and these requests conflict with each
    // other.
    ErrCodeIntegrationConflictOperationFault = "IntegrationConflictOperationFault"

    // ErrCodeIntegrationNotFoundFault for service response error code
    // "IntegrationNotFoundFault".
    //
    // The specified integration could not be found.
    ErrCodeIntegrationNotFoundFault = "IntegrationNotFoundFault"

    // ErrCodeIntegrationQuotaExceededFault for service response error code
    // "IntegrationQuotaExceededFault".
    //
    // You can't crate any more zero-ETL integrations because the quota has been
    // reached.
    ErrCodeIntegrationQuotaExceededFault = "IntegrationQuotaExceededFault"

    // ErrCodeInvalidBlueGreenDeploymentStateFault for service response error code
    // "InvalidBlueGreenDeploymentStateFault".
    //
    // The blue/green deployment can't be switched over or deleted because there
    // is an invalid configuration in the green environment.
    ErrCodeInvalidBlueGreenDeploymentStateFault = "InvalidBlueGreenDeploymentStateFault"

    // ErrCodeInvalidCustomDBEngineVersionStateFault for service response error code
    // "InvalidCustomDBEngineVersionStateFault".
    //
    // You can't delete the CEV.
    ErrCodeInvalidCustomDBEngineVersionStateFault = "InvalidCustomDBEngineVersionStateFault"

    // ErrCodeInvalidDBClusterAutomatedBackupStateFault for service response error code
    // "InvalidDBClusterAutomatedBackupStateFault".
    //
    // The automated backup is in an invalid state. For example, this automated
    // backup is associated with an active cluster.
    ErrCodeInvalidDBClusterAutomatedBackupStateFault = "InvalidDBClusterAutomatedBackupStateFault"

    // ErrCodeInvalidDBClusterCapacityFault for service response error code
    // "InvalidDBClusterCapacityFault".
    //
    // Capacity isn't a valid Aurora Serverless DB cluster capacity. Valid capacity
    // values are 2, 4, 8, 16, 32, 64, 128, and 256.
    ErrCodeInvalidDBClusterCapacityFault = "InvalidDBClusterCapacityFault"

    // ErrCodeInvalidDBClusterEndpointStateFault for service response error code
    // "InvalidDBClusterEndpointStateFault".
    //
    // The requested operation can't be performed on the endpoint while the endpoint
    // is in this state.
    ErrCodeInvalidDBClusterEndpointStateFault = "InvalidDBClusterEndpointStateFault"

    // ErrCodeInvalidDBClusterSnapshotStateFault for service response error code
    // "InvalidDBClusterSnapshotStateFault".
    //
    // The supplied value isn't a valid DB cluster snapshot state.
    ErrCodeInvalidDBClusterSnapshotStateFault = "InvalidDBClusterSnapshotStateFault"

    // ErrCodeInvalidDBClusterStateFault for service response error code
    // "InvalidDBClusterStateFault".
    //
    // The requested operation can't be performed while the cluster is in this state.
    ErrCodeInvalidDBClusterStateFault = "InvalidDBClusterStateFault"

    // ErrCodeInvalidDBInstanceAutomatedBackupStateFault for service response error code
    // "InvalidDBInstanceAutomatedBackupState".
    //
    // The automated backup is in an invalid state. For example, this automated
    // backup is associated with an active instance.
    ErrCodeInvalidDBInstanceAutomatedBackupStateFault = "InvalidDBInstanceAutomatedBackupState"

    // ErrCodeInvalidDBInstanceStateFault for service response error code
    // "InvalidDBInstanceState".
    //
    // The DB instance isn't in a valid state.
    ErrCodeInvalidDBInstanceStateFault = "InvalidDBInstanceState"

    // ErrCodeInvalidDBParameterGroupStateFault for service response error code
    // "InvalidDBParameterGroupState".
    //
    // The DB parameter group is in use or is in an invalid state. If you are attempting
    // to delete the parameter group, you can't delete it when the parameter group
    // is in this state.
    ErrCodeInvalidDBParameterGroupStateFault = "InvalidDBParameterGroupState"

    // ErrCodeInvalidDBProxyEndpointStateFault for service response error code
    // "InvalidDBProxyEndpointStateFault".
    //
    // You can't perform this operation while the DB proxy endpoint is in a particular
    // state.
    ErrCodeInvalidDBProxyEndpointStateFault = "InvalidDBProxyEndpointStateFault"

    // ErrCodeInvalidDBProxyStateFault for service response error code
    // "InvalidDBProxyStateFault".
    //
    // The requested operation can't be performed while the proxy is in this state.
    ErrCodeInvalidDBProxyStateFault = "InvalidDBProxyStateFault"

    // ErrCodeInvalidDBSecurityGroupStateFault for service response error code
    // "InvalidDBSecurityGroupState".
    //
    // The state of the DB security group doesn't allow deletion.
    ErrCodeInvalidDBSecurityGroupStateFault = "InvalidDBSecurityGroupState"

    // ErrCodeInvalidDBShardGroupStateFault for service response error code
    // "InvalidDBShardGroupState".
    //
    // The DB shard group must be in the available state.
    ErrCodeInvalidDBShardGroupStateFault = "InvalidDBShardGroupState"

    // ErrCodeInvalidDBSnapshotStateFault for service response error code
    // "InvalidDBSnapshotState".
    //
    // The state of the DB snapshot doesn't allow deletion.
    ErrCodeInvalidDBSnapshotStateFault = "InvalidDBSnapshotState"

    // ErrCodeInvalidDBSubnetGroupFault for service response error code
    // "InvalidDBSubnetGroupFault".
    //
    // The DBSubnetGroup doesn't belong to the same VPC as that of an existing cross-region
    // read replica of the same source instance.
    ErrCodeInvalidDBSubnetGroupFault = "InvalidDBSubnetGroupFault"

    // ErrCodeInvalidDBSubnetGroupStateFault for service response error code
    // "InvalidDBSubnetGroupStateFault".
    //
    // The DB subnet group cannot be deleted because it's in use.
    ErrCodeInvalidDBSubnetGroupStateFault = "InvalidDBSubnetGroupStateFault"

    // ErrCodeInvalidDBSubnetStateFault for service response error code
    // "InvalidDBSubnetStateFault".
    //
    // The DB subnet isn't in the available state.
    ErrCodeInvalidDBSubnetStateFault = "InvalidDBSubnetStateFault"

    // ErrCodeInvalidEventSubscriptionStateFault for service response error code
    // "InvalidEventSubscriptionState".
    //
    // This error can occur if someone else is modifying a subscription. You should
    // retry the action.
    ErrCodeInvalidEventSubscriptionStateFault = "InvalidEventSubscriptionState"

    // ErrCodeInvalidExportOnlyFault for service response error code
    // "InvalidExportOnly".
    //
    // The export is invalid for exporting to an Amazon S3 bucket.
    ErrCodeInvalidExportOnlyFault = "InvalidExportOnly"

    // ErrCodeInvalidExportSourceStateFault for service response error code
    // "InvalidExportSourceState".
    //
    // The state of the export snapshot is invalid for exporting to an Amazon S3
    // bucket.
    ErrCodeInvalidExportSourceStateFault = "InvalidExportSourceState"

    // ErrCodeInvalidExportTaskStateFault for service response error code
    // "InvalidExportTaskStateFault".
    //
    // You can't cancel an export task that has completed.
    ErrCodeInvalidExportTaskStateFault = "InvalidExportTaskStateFault"

    // ErrCodeInvalidGlobalClusterStateFault for service response error code
    // "InvalidGlobalClusterStateFault".
    //
    // The global cluster is in an invalid state and can't perform the requested
    // operation.
    ErrCodeInvalidGlobalClusterStateFault = "InvalidGlobalClusterStateFault"

    // ErrCodeInvalidIntegrationStateFault for service response error code
    // "InvalidIntegrationStateFault".
    //
    // The integration is in an invalid state and can't perform the requested operation.
    ErrCodeInvalidIntegrationStateFault = "InvalidIntegrationStateFault"

    // ErrCodeInvalidMaxAcuFault for service response error code
    // "InvalidMaxAcu".
    //
    // The maximum capacity of the DB shard group must be 48-7168 Aurora capacity
    // units (ACUs).
    ErrCodeInvalidMaxAcuFault = "InvalidMaxAcu"

    // ErrCodeInvalidOptionGroupStateFault for service response error code
    // "InvalidOptionGroupStateFault".
    //
    // The option group isn't in the available state.
    ErrCodeInvalidOptionGroupStateFault = "InvalidOptionGroupStateFault"

    // ErrCodeInvalidResourceStateFault for service response error code
    // "InvalidResourceStateFault".
    //
    // The operation can't be performed because another operation is in progress.
    ErrCodeInvalidResourceStateFault = "InvalidResourceStateFault"

    // ErrCodeInvalidRestoreFault for service response error code
    // "InvalidRestoreFault".
    //
    // Cannot restore from VPC backup to non-VPC DB instance.
    ErrCodeInvalidRestoreFault = "InvalidRestoreFault"

    // ErrCodeInvalidS3BucketFault for service response error code
    // "InvalidS3BucketFault".
    //
    // The specified Amazon S3 bucket name can't be found or Amazon RDS isn't authorized
    // to access the specified Amazon S3 bucket. Verify the SourceS3BucketName and
    // S3IngestionRoleArn values and try again.
    ErrCodeInvalidS3BucketFault = "InvalidS3BucketFault"

    // ErrCodeInvalidSubnet for service response error code
    // "InvalidSubnet".
    //
    // The requested subnet is invalid, or multiple subnets were requested that
    // are not all in a common VPC.
    ErrCodeInvalidSubnet = "InvalidSubnet"

    // ErrCodeInvalidVPCNetworkStateFault for service response error code
    // "InvalidVPCNetworkStateFault".
    //
    // The DB subnet group doesn't cover all Availability Zones after it's created
    // because of users' change.
    ErrCodeInvalidVPCNetworkStateFault = "InvalidVPCNetworkStateFault"

    // ErrCodeKMSKeyNotAccessibleFault for service response error code
    // "KMSKeyNotAccessibleFault".
    //
    // An error occurred accessing an Amazon Web Services KMS key.
    ErrCodeKMSKeyNotAccessibleFault = "KMSKeyNotAccessibleFault"

    // ErrCodeMaxDBShardGroupLimitReached for service response error code
    // "MaxDBShardGroupLimitReached".
    //
    // The maximum number of DB shard groups for your Amazon Web Services account
    // in the specified Amazon Web Services Region has been reached.
    ErrCodeMaxDBShardGroupLimitReached = "MaxDBShardGroupLimitReached"

    // ErrCodeNetworkTypeNotSupported for service response error code
    // "NetworkTypeNotSupported".
    //
    // The network type is invalid for the DB instance. Valid nework type values
    // are IPV4 and DUAL.
    ErrCodeNetworkTypeNotSupported = "NetworkTypeNotSupported"

    // ErrCodeOptionGroupAlreadyExistsFault for service response error code
    // "OptionGroupAlreadyExistsFault".
    //
    // The option group you are trying to create already exists.
    ErrCodeOptionGroupAlreadyExistsFault = "OptionGroupAlreadyExistsFault"

    // ErrCodeOptionGroupNotFoundFault for service response error code
    // "OptionGroupNotFoundFault".
    //
    // The specified option group could not be found.
    ErrCodeOptionGroupNotFoundFault = "OptionGroupNotFoundFault"

    // ErrCodeOptionGroupQuotaExceededFault for service response error code
    // "OptionGroupQuotaExceededFault".
    //
    // The quota of 20 option groups was exceeded for this Amazon Web Services account.
    ErrCodeOptionGroupQuotaExceededFault = "OptionGroupQuotaExceededFault"

    // ErrCodePointInTimeRestoreNotEnabledFault for service response error code
    // "PointInTimeRestoreNotEnabled".
    //
    // SourceDBInstanceIdentifier refers to a DB instance with BackupRetentionPeriod
    // equal to 0.
    ErrCodePointInTimeRestoreNotEnabledFault = "PointInTimeRestoreNotEnabled"

    // ErrCodeProvisionedIopsNotAvailableInAZFault for service response error code
    // "ProvisionedIopsNotAvailableInAZFault".
    //
    // Provisioned IOPS not available in the specified Availability Zone.
    ErrCodeProvisionedIopsNotAvailableInAZFault = "ProvisionedIopsNotAvailableInAZFault"

    // ErrCodeReservedDBInstanceAlreadyExistsFault for service response error code
    // "ReservedDBInstanceAlreadyExists".
    //
    // User already has a reservation with the given identifier.
    ErrCodeReservedDBInstanceAlreadyExistsFault = "ReservedDBInstanceAlreadyExists"

    // ErrCodeReservedDBInstanceNotFoundFault for service response error code
    // "ReservedDBInstanceNotFound".
    //
    // The specified reserved DB Instance not found.
    ErrCodeReservedDBInstanceNotFoundFault = "ReservedDBInstanceNotFound"

    // ErrCodeReservedDBInstanceQuotaExceededFault for service response error code
    // "ReservedDBInstanceQuotaExceeded".
    //
    // Request would exceed the user's DB Instance quota.
    ErrCodeReservedDBInstanceQuotaExceededFault = "ReservedDBInstanceQuotaExceeded"

    // ErrCodeReservedDBInstancesOfferingNotFoundFault for service response error code
    // "ReservedDBInstancesOfferingNotFound".
    //
    // Specified offering does not exist.
    ErrCodeReservedDBInstancesOfferingNotFoundFault = "ReservedDBInstancesOfferingNotFound"

    // ErrCodeResourceNotFoundFault for service response error code
    // "ResourceNotFoundFault".
    //
    // The specified resource ID was not found.
    ErrCodeResourceNotFoundFault = "ResourceNotFoundFault"

    // ErrCodeSNSInvalidTopicFault for service response error code
    // "SNSInvalidTopic".
    //
    // SNS has responded that there is a problem with the SNS topic specified.
    ErrCodeSNSInvalidTopicFault = "SNSInvalidTopic"

    // ErrCodeSNSNoAuthorizationFault for service response error code
    // "SNSNoAuthorization".
    //
    // You do not have permission to publish to the SNS topic ARN.
    ErrCodeSNSNoAuthorizationFault = "SNSNoAuthorization"

    // ErrCodeSNSTopicArnNotFoundFault for service response error code
    // "SNSTopicArnNotFound".
    //
    // The SNS topic ARN does not exist.
    ErrCodeSNSTopicArnNotFoundFault = "SNSTopicArnNotFound"

    // ErrCodeSharedSnapshotQuotaExceededFault for service response error code
    // "SharedSnapshotQuotaExceeded".
    //
    // You have exceeded the maximum number of accounts that you can share a manual
    // DB snapshot with.
    ErrCodeSharedSnapshotQuotaExceededFault = "SharedSnapshotQuotaExceeded"

    // ErrCodeSnapshotQuotaExceededFault for service response error code
    // "SnapshotQuotaExceeded".
    //
    // The request would result in the user exceeding the allowed number of DB snapshots.
    ErrCodeSnapshotQuotaExceededFault = "SnapshotQuotaExceeded"

    // ErrCodeSourceClusterNotSupportedFault for service response error code
    // "SourceClusterNotSupportedFault".
    //
    // The source DB cluster isn't supported for a blue/green deployment.
    ErrCodeSourceClusterNotSupportedFault = "SourceClusterNotSupportedFault"

    // ErrCodeSourceDatabaseNotSupportedFault for service response error code
    // "SourceDatabaseNotSupportedFault".
    //
    // The source DB instance isn't supported for a blue/green deployment.
    ErrCodeSourceDatabaseNotSupportedFault = "SourceDatabaseNotSupportedFault"

    // ErrCodeSourceNotFoundFault for service response error code
    // "SourceNotFound".
    //
    // The requested source could not be found.
    ErrCodeSourceNotFoundFault = "SourceNotFound"

    // ErrCodeStorageQuotaExceededFault for service response error code
    // "StorageQuotaExceeded".
    //
    // The request would result in the user exceeding the allowed amount of storage
    // available across all DB instances.
    ErrCodeStorageQuotaExceededFault = "StorageQuotaExceeded"

    // ErrCodeStorageTypeNotAvailableFault for service response error code
    // "StorageTypeNotAvailableFault".
    //
    // The aurora-iopt1 storage type isn't available, because you modified the DB
    // cluster to use this storage type less than one month ago.
    ErrCodeStorageTypeNotAvailableFault = "StorageTypeNotAvailableFault"

    // ErrCodeStorageTypeNotSupportedFault for service response error code
    // "StorageTypeNotSupported".
    //
    // The specified StorageType can't be associated with the DB instance.
    ErrCodeStorageTypeNotSupportedFault = "StorageTypeNotSupported"

    // ErrCodeSubnetAlreadyInUse for service response error code
    // "SubnetAlreadyInUse".
    //
    // The DB subnet is already in use in the Availability Zone.
    ErrCodeSubnetAlreadyInUse = "SubnetAlreadyInUse"

    // ErrCodeSubscriptionAlreadyExistFault for service response error code
    // "SubscriptionAlreadyExist".
    //
    // The supplied subscription name already exists.
    ErrCodeSubscriptionAlreadyExistFault = "SubscriptionAlreadyExist"

    // ErrCodeSubscriptionCategoryNotFoundFault for service response error code
    // "SubscriptionCategoryNotFound".
    //
    // The supplied category does not exist.
    ErrCodeSubscriptionCategoryNotFoundFault = "SubscriptionCategoryNotFound"

    // ErrCodeSubscriptionNotFoundFault for service response error code
    // "SubscriptionNotFound".
    //
    // The subscription name does not exist.
    ErrCodeSubscriptionNotFoundFault = "SubscriptionNotFound"

    // ErrCodeTenantDatabaseAlreadyExistsFault for service response error code
    // "TenantDatabaseAlreadyExists".
    //
    // You attempted to either create a tenant database that already exists or modify
    // a tenant database to use the name of an existing tenant database.
    ErrCodeTenantDatabaseAlreadyExistsFault = "TenantDatabaseAlreadyExists"

    // ErrCodeTenantDatabaseNotFoundFault for service response error code
    // "TenantDatabaseNotFound".
    //
    // The specified tenant database wasn't found in the DB instance.
    ErrCodeTenantDatabaseNotFoundFault = "TenantDatabaseNotFound"

    // ErrCodeTenantDatabaseQuotaExceededFault for service response error code
    // "TenantDatabaseQuotaExceeded".
    //
    // You attempted to create more tenant databases than are permitted in your
    // Amazon Web Services account.
    ErrCodeTenantDatabaseQuotaExceededFault = "TenantDatabaseQuotaExceeded"

    // ErrCodeUnsupportedDBEngineVersionFault for service response error code
    // "UnsupportedDBEngineVersion".
    //
    // The specified DB engine version isn't supported for Aurora Limitless Database.
    ErrCodeUnsupportedDBEngineVersionFault = "UnsupportedDBEngineVersion"
)
const (
    ServiceName = "rds"       // Name of service.
    EndpointsID = ServiceName // ID to lookup a service endpoint with.
    ServiceID   = "RDS"       // ServiceID is a unique identifier of a specific service.
)

Service information constants

const (
    // AuthSchemeSecrets is a AuthScheme enum value
    AuthSchemeSecrets = "SECRETS"
)

func ActivityStreamMode_Values

func ActivityStreamMode_Values() []string

ActivityStreamMode_Values returns all elements of the ActivityStreamMode enum

func ActivityStreamPolicyStatus_Values

func ActivityStreamPolicyStatus_Values() []string

ActivityStreamPolicyStatus_Values returns all elements of the ActivityStreamPolicyStatus enum

func ActivityStreamStatus_Values

func ActivityStreamStatus_Values() []string

ActivityStreamStatus_Values returns all elements of the ActivityStreamStatus enum

func ApplyMethod_Values

func ApplyMethod_Values() []string

ApplyMethod_Values returns all elements of the ApplyMethod enum

func AuditPolicyState_Values

func AuditPolicyState_Values() []string

AuditPolicyState_Values returns all elements of the AuditPolicyState enum

func AuthScheme_Values

func AuthScheme_Values() []string

AuthScheme_Values returns all elements of the AuthScheme enum

func AutomationMode_Values

func AutomationMode_Values() []string

AutomationMode_Values returns all elements of the AutomationMode enum

func ClientPasswordAuthType_Values

func ClientPasswordAuthType_Values() []string

ClientPasswordAuthType_Values returns all elements of the ClientPasswordAuthType enum

func CustomEngineVersionStatus_Values

func CustomEngineVersionStatus_Values() []string

CustomEngineVersionStatus_Values returns all elements of the CustomEngineVersionStatus enum

func DBProxyEndpointStatus_Values

func DBProxyEndpointStatus_Values() []string

DBProxyEndpointStatus_Values returns all elements of the DBProxyEndpointStatus enum

func DBProxyEndpointTargetRole_Values

func DBProxyEndpointTargetRole_Values() []string

DBProxyEndpointTargetRole_Values returns all elements of the DBProxyEndpointTargetRole enum

func DBProxyStatus_Values

func DBProxyStatus_Values() []string

DBProxyStatus_Values returns all elements of the DBProxyStatus enum

func EngineFamily_Values

func EngineFamily_Values() []string

EngineFamily_Values returns all elements of the EngineFamily enum

func ExportSourceType_Values

func ExportSourceType_Values() []string

ExportSourceType_Values returns all elements of the ExportSourceType enum

func FailoverStatus_Values

func FailoverStatus_Values() []string

FailoverStatus_Values returns all elements of the FailoverStatus enum

func GlobalClusterMemberSynchronizationStatus_Values

func GlobalClusterMemberSynchronizationStatus_Values() []string

GlobalClusterMemberSynchronizationStatus_Values returns all elements of the GlobalClusterMemberSynchronizationStatus enum

func IAMAuthMode_Values

func IAMAuthMode_Values() []string

IAMAuthMode_Values returns all elements of the IAMAuthMode enum

func IntegrationStatus_Values

func IntegrationStatus_Values() []string

IntegrationStatus_Values returns all elements of the IntegrationStatus enum

func LimitlessDatabaseStatus_Values

func LimitlessDatabaseStatus_Values() []string

LimitlessDatabaseStatus_Values returns all elements of the LimitlessDatabaseStatus enum

func LocalWriteForwardingStatus_Values

func LocalWriteForwardingStatus_Values() []string

LocalWriteForwardingStatus_Values returns all elements of the LocalWriteForwardingStatus enum

func ReplicaMode_Values

func ReplicaMode_Values() []string

ReplicaMode_Values returns all elements of the ReplicaMode enum

func SourceType_Values

func SourceType_Values() []string

SourceType_Values returns all elements of the SourceType enum

func TargetHealthReason_Values

func TargetHealthReason_Values() []string

TargetHealthReason_Values returns all elements of the TargetHealthReason enum

func TargetRole_Values

func TargetRole_Values() []string

TargetRole_Values returns all elements of the TargetRole enum

func TargetState_Values

func TargetState_Values() []string

TargetState_Values returns all elements of the TargetState enum

func TargetType_Values

func TargetType_Values() []string

TargetType_Values returns all elements of the TargetType enum

func WriteForwardingStatus_Values

func WriteForwardingStatus_Values() []string

WriteForwardingStatus_Values returns all elements of the WriteForwardingStatus enum

type AccountQuota

type AccountQuota struct {

    // The name of the Amazon RDS quota for this Amazon Web Services account.
    AccountQuotaName *string `type:"string"`

    // The maximum allowed value for the quota.
    Max *int64 `type:"long"`

    // The amount currently used toward the quota maximum.
    Used *int64 `type:"long"`
    // contains filtered or unexported fields
}

Describes a quota for an Amazon Web Services account.

The following are account quotas:

  • AllocatedStorage - The total allocated storage per account, in GiB. The used value is the total allocated storage in the account, in GiB.

  • AuthorizationsPerDBSecurityGroup - The number of ingress rules per DB security group. The used value is the highest number of ingress rules in a DB security group in the account. Other DB security groups in the account might have a lower number of ingress rules.

  • CustomEndpointsPerDBCluster - The number of custom endpoints per DB cluster. The used value is the highest number of custom endpoints in a DB clusters in the account. Other DB clusters in the account might have a lower number of custom endpoints.

  • DBClusterParameterGroups - The number of DB cluster parameter groups per account, excluding default parameter groups. The used value is the count of nondefault DB cluster parameter groups in the account.

  • DBClusterRoles - The number of associated Amazon Web Services Identity and Access Management (IAM) roles per DB cluster. The used value is the highest number of associated IAM roles for a DB cluster in the account. Other DB clusters in the account might have a lower number of associated IAM roles.

  • DBClusters - The number of DB clusters per account. The used value is the count of DB clusters in the account.

  • DBInstanceRoles - The number of associated IAM roles per DB instance. The used value is the highest number of associated IAM roles for a DB instance in the account. Other DB instances in the account might have a lower number of associated IAM roles.

  • DBInstances - The number of DB instances per account. The used value is the count of the DB instances in the account. Amazon RDS DB instances, Amazon Aurora DB instances, Amazon Neptune instances, and Amazon DocumentDB instances apply to this quota.

  • DBParameterGroups - The number of DB parameter groups per account, excluding default parameter groups. The used value is the count of nondefault DB parameter groups in the account.

  • DBSecurityGroups - The number of DB security groups (not VPC security groups) per account, excluding the default security group. The used value is the count of nondefault DB security groups in the account.

  • DBSubnetGroups - The number of DB subnet groups per account. The used value is the count of the DB subnet groups in the account.

  • EventSubscriptions - The number of event subscriptions per account. The used value is the count of the event subscriptions in the account.

  • ManualClusterSnapshots - The number of manual DB cluster snapshots per account. The used value is the count of the manual DB cluster snapshots in the account.

  • ManualSnapshots - The number of manual DB instance snapshots per account. The used value is the count of the manual DB instance snapshots in the account.

  • OptionGroups - The number of DB option groups per account, excluding default option groups. The used value is the count of nondefault DB option groups in the account.

  • ReadReplicasPerMaster - The number of read replicas per DB instance. The used value is the highest number of read replicas for a DB instance in the account. Other DB instances in the account might have a lower number of read replicas.

  • ReservedDBInstances - The number of reserved DB instances per account. The used value is the count of the active reserved DB instances in the account.

  • SubnetsPerDBSubnetGroup - The number of subnets per DB subnet group. The used value is highest number of subnets for a DB subnet group in the account. Other DB subnet groups in the account might have a lower number of subnets.

For more information, see Quotas for Amazon RDS (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Limits.html) in the Amazon RDS User Guide and Quotas for Amazon Aurora (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_Limits.html) in the Amazon Aurora User Guide.

func (AccountQuota) GoString

func (s AccountQuota) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AccountQuota) SetAccountQuotaName

func (s *AccountQuota) SetAccountQuotaName(v string) *AccountQuota

SetAccountQuotaName sets the AccountQuotaName field's value.

func (*AccountQuota) SetMax

func (s *AccountQuota) SetMax(v int64) *AccountQuota

SetMax sets the Max field's value.

func (*AccountQuota) SetUsed

func (s *AccountQuota) SetUsed(v int64) *AccountQuota

SetUsed sets the Used field's value.

func (AccountQuota) String

func (s AccountQuota) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type AddRoleToDBClusterInput

type AddRoleToDBClusterInput struct {

    // The name of the DB cluster to associate the IAM role with.
    //
    // DBClusterIdentifier is a required field
    DBClusterIdentifier *string `type:"string" required:"true"`

    // The name of the feature for the DB cluster that the IAM role is to be associated
    // with. For information about supported feature names, see DBEngineVersion.
    FeatureName *string `type:"string"`

    // The Amazon Resource Name (ARN) of the IAM role to associate with the Aurora
    // DB cluster, for example arn:aws:iam::123456789012:role/AuroraAccessRole.
    //
    // RoleArn is a required field
    RoleArn *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (AddRoleToDBClusterInput) GoString

func (s AddRoleToDBClusterInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AddRoleToDBClusterInput) SetDBClusterIdentifier

func (s *AddRoleToDBClusterInput) SetDBClusterIdentifier(v string) *AddRoleToDBClusterInput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*AddRoleToDBClusterInput) SetFeatureName

func (s *AddRoleToDBClusterInput) SetFeatureName(v string) *AddRoleToDBClusterInput

SetFeatureName sets the FeatureName field's value.

func (*AddRoleToDBClusterInput) SetRoleArn

func (s *AddRoleToDBClusterInput) SetRoleArn(v string) *AddRoleToDBClusterInput

SetRoleArn sets the RoleArn field's value.

func (AddRoleToDBClusterInput) String

func (s AddRoleToDBClusterInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AddRoleToDBClusterInput) Validate

func (s *AddRoleToDBClusterInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AddRoleToDBClusterOutput

type AddRoleToDBClusterOutput struct {
    // contains filtered or unexported fields
}

func (AddRoleToDBClusterOutput) GoString

func (s AddRoleToDBClusterOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (AddRoleToDBClusterOutput) String

func (s AddRoleToDBClusterOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type AddRoleToDBInstanceInput

type AddRoleToDBInstanceInput struct {

    // The name of the DB instance to associate the IAM role with.
    //
    // DBInstanceIdentifier is a required field
    DBInstanceIdentifier *string `type:"string" required:"true"`

    // The name of the feature for the DB instance that the IAM role is to be associated
    // with. For information about supported feature names, see DBEngineVersion.
    //
    // FeatureName is a required field
    FeatureName *string `type:"string" required:"true"`

    // The Amazon Resource Name (ARN) of the IAM role to associate with the DB instance,
    // for example arn:aws:iam::123456789012:role/AccessRole.
    //
    // RoleArn is a required field
    RoleArn *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (AddRoleToDBInstanceInput) GoString

func (s AddRoleToDBInstanceInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AddRoleToDBInstanceInput) SetDBInstanceIdentifier

func (s *AddRoleToDBInstanceInput) SetDBInstanceIdentifier(v string) *AddRoleToDBInstanceInput

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*AddRoleToDBInstanceInput) SetFeatureName

func (s *AddRoleToDBInstanceInput) SetFeatureName(v string) *AddRoleToDBInstanceInput

SetFeatureName sets the FeatureName field's value.

func (*AddRoleToDBInstanceInput) SetRoleArn

func (s *AddRoleToDBInstanceInput) SetRoleArn(v string) *AddRoleToDBInstanceInput

SetRoleArn sets the RoleArn field's value.

func (AddRoleToDBInstanceInput) String

func (s AddRoleToDBInstanceInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AddRoleToDBInstanceInput) Validate

func (s *AddRoleToDBInstanceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AddRoleToDBInstanceOutput

type AddRoleToDBInstanceOutput struct {
    // contains filtered or unexported fields
}

func (AddRoleToDBInstanceOutput) GoString

func (s AddRoleToDBInstanceOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (AddRoleToDBInstanceOutput) String

func (s AddRoleToDBInstanceOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type AddSourceIdentifierToSubscriptionInput

type AddSourceIdentifierToSubscriptionInput struct {

    // The identifier of the event source to be added.
    //
    // Constraints:
    //
    //    * If the source type is a DB instance, a DBInstanceIdentifier value must
    //    be supplied.
    //
    //    * If the source type is a DB cluster, a DBClusterIdentifier value must
    //    be supplied.
    //
    //    * If the source type is a DB parameter group, a DBParameterGroupName value
    //    must be supplied.
    //
    //    * If the source type is a DB security group, a DBSecurityGroupName value
    //    must be supplied.
    //
    //    * If the source type is a DB snapshot, a DBSnapshotIdentifier value must
    //    be supplied.
    //
    //    * If the source type is a DB cluster snapshot, a DBClusterSnapshotIdentifier
    //    value must be supplied.
    //
    //    * If the source type is an RDS Proxy, a DBProxyName value must be supplied.
    //
    // SourceIdentifier is a required field
    SourceIdentifier *string `type:"string" required:"true"`

    // The name of the RDS event notification subscription you want to add a source
    // identifier to.
    //
    // SubscriptionName is a required field
    SubscriptionName *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (AddSourceIdentifierToSubscriptionInput) GoString

func (s AddSourceIdentifierToSubscriptionInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AddSourceIdentifierToSubscriptionInput) SetSourceIdentifier

func (s *AddSourceIdentifierToSubscriptionInput) SetSourceIdentifier(v string) *AddSourceIdentifierToSubscriptionInput

SetSourceIdentifier sets the SourceIdentifier field's value.

func (*AddSourceIdentifierToSubscriptionInput) SetSubscriptionName

func (s *AddSourceIdentifierToSubscriptionInput) SetSubscriptionName(v string) *AddSourceIdentifierToSubscriptionInput

SetSubscriptionName sets the SubscriptionName field's value.

func (AddSourceIdentifierToSubscriptionInput) String

func (s AddSourceIdentifierToSubscriptionInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AddSourceIdentifierToSubscriptionInput) Validate

func (s *AddSourceIdentifierToSubscriptionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AddSourceIdentifierToSubscriptionOutput

type AddSourceIdentifierToSubscriptionOutput struct {

    // Contains the results of a successful invocation of the DescribeEventSubscriptions
    // action.
    EventSubscription *EventSubscription `type:"structure"`
    // contains filtered or unexported fields
}

func (AddSourceIdentifierToSubscriptionOutput) GoString

func (s AddSourceIdentifierToSubscriptionOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AddSourceIdentifierToSubscriptionOutput) SetEventSubscription

func (s *AddSourceIdentifierToSubscriptionOutput) SetEventSubscription(v *EventSubscription) *AddSourceIdentifierToSubscriptionOutput

SetEventSubscription sets the EventSubscription field's value.

func (AddSourceIdentifierToSubscriptionOutput) String

func (s AddSourceIdentifierToSubscriptionOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type AddTagsToResourceInput

type AddTagsToResourceInput struct {

    // The Amazon RDS resource that the tags are added to. This value is an Amazon
    // Resource Name (ARN). For information about creating an ARN, see Constructing
    // an RDS Amazon Resource Name (ARN) (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing).
    //
    // ResourceName is a required field
    ResourceName *string `type:"string" required:"true"`

    // The tags to be assigned to the Amazon RDS resource.
    //
    // Tags is a required field
    Tags []*Tag `locationNameList:"Tag" type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (AddTagsToResourceInput) GoString

func (s AddTagsToResourceInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AddTagsToResourceInput) SetResourceName

func (s *AddTagsToResourceInput) SetResourceName(v string) *AddTagsToResourceInput

SetResourceName sets the ResourceName field's value.

func (*AddTagsToResourceInput) SetTags

func (s *AddTagsToResourceInput) SetTags(v []*Tag) *AddTagsToResourceInput

SetTags sets the Tags field's value.

func (AddTagsToResourceInput) String

func (s AddTagsToResourceInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AddTagsToResourceInput) Validate

func (s *AddTagsToResourceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AddTagsToResourceOutput

type AddTagsToResourceOutput struct {
    // contains filtered or unexported fields
}

func (AddTagsToResourceOutput) GoString

func (s AddTagsToResourceOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (AddTagsToResourceOutput) String

func (s AddTagsToResourceOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ApplyPendingMaintenanceActionInput

type ApplyPendingMaintenanceActionInput struct {

    // The pending maintenance action to apply to this resource.
    //
    // Valid Values: system-update, db-upgrade, hardware-maintenance, ca-certificate-rotation
    //
    // ApplyAction is a required field
    ApplyAction *string `type:"string" required:"true"`

    // A value that specifies the type of opt-in request, or undoes an opt-in request.
    // An opt-in request of type immediate can't be undone.
    //
    // Valid Values:
    //
    //    * immediate - Apply the maintenance action immediately.
    //
    //    * next-maintenance - Apply the maintenance action during the next maintenance
    //    window for the resource.
    //
    //    * undo-opt-in - Cancel any existing next-maintenance opt-in requests.
    //
    // OptInType is a required field
    OptInType *string `type:"string" required:"true"`

    // The RDS Amazon Resource Name (ARN) of the resource that the pending maintenance
    // action applies to. For information about creating an ARN, see Constructing
    // an RDS Amazon Resource Name (ARN) (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing).
    //
    // ResourceIdentifier is a required field
    ResourceIdentifier *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ApplyPendingMaintenanceActionInput) GoString

func (s ApplyPendingMaintenanceActionInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ApplyPendingMaintenanceActionInput) SetApplyAction

func (s *ApplyPendingMaintenanceActionInput) SetApplyAction(v string) *ApplyPendingMaintenanceActionInput

SetApplyAction sets the ApplyAction field's value.

func (*ApplyPendingMaintenanceActionInput) SetOptInType

func (s *ApplyPendingMaintenanceActionInput) SetOptInType(v string) *ApplyPendingMaintenanceActionInput

SetOptInType sets the OptInType field's value.

func (*ApplyPendingMaintenanceActionInput) SetResourceIdentifier

func (s *ApplyPendingMaintenanceActionInput) SetResourceIdentifier(v string) *ApplyPendingMaintenanceActionInput

SetResourceIdentifier sets the ResourceIdentifier field's value.

func (ApplyPendingMaintenanceActionInput) String

func (s ApplyPendingMaintenanceActionInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ApplyPendingMaintenanceActionInput) Validate

func (s *ApplyPendingMaintenanceActionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ApplyPendingMaintenanceActionOutput

type ApplyPendingMaintenanceActionOutput struct {

    // Describes the pending maintenance actions for a resource.
    ResourcePendingMaintenanceActions *ResourcePendingMaintenanceActions `type:"structure"`
    // contains filtered or unexported fields
}

func (ApplyPendingMaintenanceActionOutput) GoString

func (s ApplyPendingMaintenanceActionOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ApplyPendingMaintenanceActionOutput) SetResourcePendingMaintenanceActions

func (s *ApplyPendingMaintenanceActionOutput) SetResourcePendingMaintenanceActions(v *ResourcePendingMaintenanceActions) *ApplyPendingMaintenanceActionOutput

SetResourcePendingMaintenanceActions sets the ResourcePendingMaintenanceActions field's value.

func (ApplyPendingMaintenanceActionOutput) String

func (s ApplyPendingMaintenanceActionOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type AuthorizeDBSecurityGroupIngressInput

type AuthorizeDBSecurityGroupIngressInput struct {

    // The IP range to authorize.
    CIDRIP *string `type:"string"`

    // The name of the DB security group to add authorization to.
    //
    // DBSecurityGroupName is a required field
    DBSecurityGroupName *string `type:"string" required:"true"`

    // Id of the EC2 security group to authorize. For VPC DB security groups, EC2SecurityGroupId
    // must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName
    // or EC2SecurityGroupId must be provided.
    EC2SecurityGroupId *string `type:"string"`

    // Name of the EC2 security group to authorize. For VPC DB security groups,
    // EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and
    // either EC2SecurityGroupName or EC2SecurityGroupId must be provided.
    EC2SecurityGroupName *string `type:"string"`

    // Amazon Web Services account number of the owner of the EC2 security group
    // specified in the EC2SecurityGroupName parameter. The Amazon Web Services
    // access key ID isn't an acceptable value. For VPC DB security groups, EC2SecurityGroupId
    // must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName
    // or EC2SecurityGroupId must be provided.
    EC2SecurityGroupOwnerId *string `type:"string"`
    // contains filtered or unexported fields
}

func (AuthorizeDBSecurityGroupIngressInput) GoString

func (s AuthorizeDBSecurityGroupIngressInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AuthorizeDBSecurityGroupIngressInput) SetCIDRIP

func (s *AuthorizeDBSecurityGroupIngressInput) SetCIDRIP(v string) *AuthorizeDBSecurityGroupIngressInput

SetCIDRIP sets the CIDRIP field's value.

func (*AuthorizeDBSecurityGroupIngressInput) SetDBSecurityGroupName

func (s *AuthorizeDBSecurityGroupIngressInput) SetDBSecurityGroupName(v string) *AuthorizeDBSecurityGroupIngressInput

SetDBSecurityGroupName sets the DBSecurityGroupName field's value.

func (*AuthorizeDBSecurityGroupIngressInput) SetEC2SecurityGroupId

func (s *AuthorizeDBSecurityGroupIngressInput) SetEC2SecurityGroupId(v string) *AuthorizeDBSecurityGroupIngressInput

SetEC2SecurityGroupId sets the EC2SecurityGroupId field's value.

func (*AuthorizeDBSecurityGroupIngressInput) SetEC2SecurityGroupName

func (s *AuthorizeDBSecurityGroupIngressInput) SetEC2SecurityGroupName(v string) *AuthorizeDBSecurityGroupIngressInput

SetEC2SecurityGroupName sets the EC2SecurityGroupName field's value.

func (*AuthorizeDBSecurityGroupIngressInput) SetEC2SecurityGroupOwnerId

func (s *AuthorizeDBSecurityGroupIngressInput) SetEC2SecurityGroupOwnerId(v string) *AuthorizeDBSecurityGroupIngressInput

SetEC2SecurityGroupOwnerId sets the EC2SecurityGroupOwnerId field's value.

func (AuthorizeDBSecurityGroupIngressInput) String

func (s AuthorizeDBSecurityGroupIngressInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AuthorizeDBSecurityGroupIngressInput) Validate

func (s *AuthorizeDBSecurityGroupIngressInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AuthorizeDBSecurityGroupIngressOutput

type AuthorizeDBSecurityGroupIngressOutput struct {

    // Contains the details for an Amazon RDS DB security group.
    //
    // This data type is used as a response element in the DescribeDBSecurityGroups
    // action.
    DBSecurityGroup *DBSecurityGroup `type:"structure"`
    // contains filtered or unexported fields
}

func (AuthorizeDBSecurityGroupIngressOutput) GoString

func (s AuthorizeDBSecurityGroupIngressOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AuthorizeDBSecurityGroupIngressOutput) SetDBSecurityGroup

func (s *AuthorizeDBSecurityGroupIngressOutput) SetDBSecurityGroup(v *DBSecurityGroup) *AuthorizeDBSecurityGroupIngressOutput

SetDBSecurityGroup sets the DBSecurityGroup field's value.

func (AuthorizeDBSecurityGroupIngressOutput) String

func (s AuthorizeDBSecurityGroupIngressOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type AvailabilityZone

type AvailabilityZone struct {

    // The name of the Availability Zone.
    Name *string `type:"string"`
    // contains filtered or unexported fields
}

Contains Availability Zone information.

This data type is used as an element in the OrderableDBInstanceOption data type.

func (AvailabilityZone) GoString

func (s AvailabilityZone) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AvailabilityZone) SetName

func (s *AvailabilityZone) SetName(v string) *AvailabilityZone

SetName sets the Name field's value.

func (AvailabilityZone) String

func (s AvailabilityZone) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type AvailableProcessorFeature

type AvailableProcessorFeature struct {

    // The allowed values for the processor feature of the DB instance class.
    AllowedValues *string `type:"string"`

    // The default value for the processor feature of the DB instance class.
    DefaultValue *string `type:"string"`

    // The name of the processor feature. Valid names are coreCount and threadsPerCore.
    Name *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the available processor feature information for the DB instance class of a DB instance.

For more information, see Configuring the Processor of the DB Instance Class (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html#USER_ConfigureProcessor) in the Amazon RDS User Guide.

func (AvailableProcessorFeature) GoString

func (s AvailableProcessorFeature) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AvailableProcessorFeature) SetAllowedValues

func (s *AvailableProcessorFeature) SetAllowedValues(v string) *AvailableProcessorFeature

SetAllowedValues sets the AllowedValues field's value.

func (*AvailableProcessorFeature) SetDefaultValue

func (s *AvailableProcessorFeature) SetDefaultValue(v string) *AvailableProcessorFeature

SetDefaultValue sets the DefaultValue field's value.

func (*AvailableProcessorFeature) SetName

func (s *AvailableProcessorFeature) SetName(v string) *AvailableProcessorFeature

SetName sets the Name field's value.

func (AvailableProcessorFeature) String

func (s AvailableProcessorFeature) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type BacktrackDBClusterInput

type BacktrackDBClusterInput struct {

    // The timestamp of the time to backtrack the DB cluster to, specified in ISO
    // 8601 format. For more information about ISO 8601, see the ISO8601 Wikipedia
    // page. (http://en.wikipedia.org/wiki/ISO_8601)
    //
    // If the specified time isn't a consistent time for the DB cluster, Aurora
    // automatically chooses the nearest possible consistent time for the DB cluster.
    //
    // Constraints:
    //
    //    * Must contain a valid ISO 8601 timestamp.
    //
    //    * Can't contain a timestamp set in the future.
    //
    // Example: 2017-07-08T18:00Z
    //
    // BacktrackTo is a required field
    BacktrackTo *time.Time `type:"timestamp" required:"true"`

    // The DB cluster identifier of the DB cluster to be backtracked. This parameter
    // is stored as a lowercase string.
    //
    // Constraints:
    //
    //    * Must contain from 1 to 63 alphanumeric characters or hyphens.
    //
    //    * First character must be a letter.
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens.
    //
    // Example: my-cluster1
    //
    // DBClusterIdentifier is a required field
    DBClusterIdentifier *string `type:"string" required:"true"`

    // Specifies whether to force the DB cluster to backtrack when binary logging
    // is enabled. Otherwise, an error occurs when binary logging is enabled.
    Force *bool `type:"boolean"`

    // Specifies whether to backtrack the DB cluster to the earliest possible backtrack
    // time when BacktrackTo is set to a timestamp earlier than the earliest backtrack
    // time. When this parameter is disabled and BacktrackTo is set to a timestamp
    // earlier than the earliest backtrack time, an error occurs.
    UseEarliestTimeOnPointInTimeUnavailable *bool `type:"boolean"`
    // contains filtered or unexported fields
}

func (BacktrackDBClusterInput) GoString

func (s BacktrackDBClusterInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BacktrackDBClusterInput) SetBacktrackTo

func (s *BacktrackDBClusterInput) SetBacktrackTo(v time.Time) *BacktrackDBClusterInput

SetBacktrackTo sets the BacktrackTo field's value.

func (*BacktrackDBClusterInput) SetDBClusterIdentifier

func (s *BacktrackDBClusterInput) SetDBClusterIdentifier(v string) *BacktrackDBClusterInput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*BacktrackDBClusterInput) SetForce

func (s *BacktrackDBClusterInput) SetForce(v bool) *BacktrackDBClusterInput

SetForce sets the Force field's value.

func (*BacktrackDBClusterInput) SetUseEarliestTimeOnPointInTimeUnavailable

func (s *BacktrackDBClusterInput) SetUseEarliestTimeOnPointInTimeUnavailable(v bool) *BacktrackDBClusterInput

SetUseEarliestTimeOnPointInTimeUnavailable sets the UseEarliestTimeOnPointInTimeUnavailable field's value.

func (BacktrackDBClusterInput) String

func (s BacktrackDBClusterInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BacktrackDBClusterInput) Validate

func (s *BacktrackDBClusterInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type BacktrackDBClusterOutput

type BacktrackDBClusterOutput struct {

    // Contains the backtrack identifier.
    BacktrackIdentifier *string `type:"string"`

    // The timestamp of the time at which the backtrack was requested.
    BacktrackRequestCreationTime *time.Time `type:"timestamp"`

    // The timestamp of the time to which the DB cluster was backtracked.
    BacktrackTo *time.Time `type:"timestamp"`

    // The timestamp of the time from which the DB cluster was backtracked.
    BacktrackedFrom *time.Time `type:"timestamp"`

    // Contains a user-supplied DB cluster identifier. This identifier is the unique
    // key that identifies a DB cluster.
    DBClusterIdentifier *string `type:"string"`

    // The status of the backtrack. This property returns one of the following values:
    //
    //    * applying - The backtrack is currently being applied to or rolled back
    //    from the DB cluster.
    //
    //    * completed - The backtrack has successfully been applied to or rolled
    //    back from the DB cluster.
    //
    //    * failed - An error occurred while the backtrack was applied to or rolled
    //    back from the DB cluster.
    //
    //    * pending - The backtrack is currently pending application to or rollback
    //    from the DB cluster.
    Status *string `type:"string"`
    // contains filtered or unexported fields
}

This data type is used as a response element in the DescribeDBClusterBacktracks action.

func (BacktrackDBClusterOutput) GoString

func (s BacktrackDBClusterOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BacktrackDBClusterOutput) SetBacktrackIdentifier

func (s *BacktrackDBClusterOutput) SetBacktrackIdentifier(v string) *BacktrackDBClusterOutput

SetBacktrackIdentifier sets the BacktrackIdentifier field's value.

func (*BacktrackDBClusterOutput) SetBacktrackRequestCreationTime

func (s *BacktrackDBClusterOutput) SetBacktrackRequestCreationTime(v time.Time) *BacktrackDBClusterOutput

SetBacktrackRequestCreationTime sets the BacktrackRequestCreationTime field's value.

func (*BacktrackDBClusterOutput) SetBacktrackTo

func (s *BacktrackDBClusterOutput) SetBacktrackTo(v time.Time) *BacktrackDBClusterOutput

SetBacktrackTo sets the BacktrackTo field's value.

func (*BacktrackDBClusterOutput) SetBacktrackedFrom

func (s *BacktrackDBClusterOutput) SetBacktrackedFrom(v time.Time) *BacktrackDBClusterOutput

SetBacktrackedFrom sets the BacktrackedFrom field's value.

func (*BacktrackDBClusterOutput) SetDBClusterIdentifier

func (s *BacktrackDBClusterOutput) SetDBClusterIdentifier(v string) *BacktrackDBClusterOutput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*BacktrackDBClusterOutput) SetStatus

func (s *BacktrackDBClusterOutput) SetStatus(v string) *BacktrackDBClusterOutput

SetStatus sets the Status field's value.

func (BacktrackDBClusterOutput) String

func (s BacktrackDBClusterOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type BlueGreenDeployment

type BlueGreenDeployment struct {

    // The unique identifier of the blue/green deployment.
    BlueGreenDeploymentIdentifier *string `min:"1" type:"string"`

    // The user-supplied name of the blue/green deployment.
    BlueGreenDeploymentName *string `min:"1" type:"string"`

    // The time when the blue/green deployment was created, in Universal Coordinated
    // Time (UTC).
    CreateTime *time.Time `type:"timestamp"`

    // The time when the blue/green deployment was deleted, in Universal Coordinated
    // Time (UTC).
    DeleteTime *time.Time `type:"timestamp"`

    // The source database for the blue/green deployment.
    //
    // Before switchover, the source database is the production database in the
    // blue environment.
    Source *string `min:"1" type:"string"`

    // The status of the blue/green deployment.
    //
    // Valid Values:
    //
    //    * PROVISIONING - Resources are being created in the green environment.
    //
    //    * AVAILABLE - Resources are available in the green environment.
    //
    //    * SWITCHOVER_IN_PROGRESS - The deployment is being switched from the blue
    //    environment to the green environment.
    //
    //    * SWITCHOVER_COMPLETED - Switchover from the blue environment to the green
    //    environment is complete.
    //
    //    * INVALID_CONFIGURATION - Resources in the green environment are invalid,
    //    so switchover isn't possible.
    //
    //    * SWITCHOVER_FAILED - Switchover was attempted but failed.
    //
    //    * DELETING - The blue/green deployment is being deleted.
    Status *string `type:"string"`

    // Additional information about the status of the blue/green deployment.
    StatusDetails *string `type:"string"`

    // The details about each source and target resource in the blue/green deployment.
    SwitchoverDetails []*SwitchoverDetail `type:"list"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    TagList []*Tag `locationNameList:"Tag" type:"list"`

    // The target database for the blue/green deployment.
    //
    // Before switchover, the target database is the clone database in the green
    // environment.
    Target *string `min:"1" type:"string"`

    // Either tasks to be performed or tasks that have been completed on the target
    // database before switchover.
    Tasks []*BlueGreenDeploymentTask `type:"list"`
    // contains filtered or unexported fields
}

Details about a blue/green deployment.

For more information, see Using Amazon RDS Blue/Green Deployments for database updates (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html) in the Amazon RDS User Guide and Using Amazon RDS Blue/Green Deployments for database updates (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html) in the Amazon Aurora User Guide.

func (BlueGreenDeployment) GoString

func (s BlueGreenDeployment) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BlueGreenDeployment) SetBlueGreenDeploymentIdentifier

func (s *BlueGreenDeployment) SetBlueGreenDeploymentIdentifier(v string) *BlueGreenDeployment

SetBlueGreenDeploymentIdentifier sets the BlueGreenDeploymentIdentifier field's value.

func (*BlueGreenDeployment) SetBlueGreenDeploymentName

func (s *BlueGreenDeployment) SetBlueGreenDeploymentName(v string) *BlueGreenDeployment

SetBlueGreenDeploymentName sets the BlueGreenDeploymentName field's value.

func (*BlueGreenDeployment) SetCreateTime

func (s *BlueGreenDeployment) SetCreateTime(v time.Time) *BlueGreenDeployment

SetCreateTime sets the CreateTime field's value.

func (*BlueGreenDeployment) SetDeleteTime

func (s *BlueGreenDeployment) SetDeleteTime(v time.Time) *BlueGreenDeployment

SetDeleteTime sets the DeleteTime field's value.

func (*BlueGreenDeployment) SetSource

func (s *BlueGreenDeployment) SetSource(v string) *BlueGreenDeployment

SetSource sets the Source field's value.

func (*BlueGreenDeployment) SetStatus

func (s *BlueGreenDeployment) SetStatus(v string) *BlueGreenDeployment

SetStatus sets the Status field's value.

func (*BlueGreenDeployment) SetStatusDetails

func (s *BlueGreenDeployment) SetStatusDetails(v string) *BlueGreenDeployment

SetStatusDetails sets the StatusDetails field's value.

func (*BlueGreenDeployment) SetSwitchoverDetails

func (s *BlueGreenDeployment) SetSwitchoverDetails(v []*SwitchoverDetail) *BlueGreenDeployment

SetSwitchoverDetails sets the SwitchoverDetails field's value.

func (*BlueGreenDeployment) SetTagList

func (s *BlueGreenDeployment) SetTagList(v []*Tag) *BlueGreenDeployment

SetTagList sets the TagList field's value.

func (*BlueGreenDeployment) SetTarget

func (s *BlueGreenDeployment) SetTarget(v string) *BlueGreenDeployment

SetTarget sets the Target field's value.

func (*BlueGreenDeployment) SetTasks

func (s *BlueGreenDeployment) SetTasks(v []*BlueGreenDeploymentTask) *BlueGreenDeployment

SetTasks sets the Tasks field's value.

func (BlueGreenDeployment) String

func (s BlueGreenDeployment) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type BlueGreenDeploymentTask

type BlueGreenDeploymentTask struct {

    // The name of the blue/green deployment task.
    Name *string `type:"string"`

    // The status of the blue/green deployment task.
    //
    // Valid Values:
    //
    //    * PENDING - The resource is being prepared for deployment.
    //
    //    * IN_PROGRESS - The resource is being deployed.
    //
    //    * COMPLETED - The resource has been deployed.
    //
    //    * FAILED - Deployment of the resource failed.
    Status *string `type:"string"`
    // contains filtered or unexported fields
}

Details about a task for a blue/green deployment.

For more information, see Using Amazon RDS Blue/Green Deployments for database updates (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html) in the Amazon RDS User Guide and Using Amazon RDS Blue/Green Deployments for database updates (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html) in the Amazon Aurora User Guide.

func (BlueGreenDeploymentTask) GoString

func (s BlueGreenDeploymentTask) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BlueGreenDeploymentTask) SetName

func (s *BlueGreenDeploymentTask) SetName(v string) *BlueGreenDeploymentTask

SetName sets the Name field's value.

func (*BlueGreenDeploymentTask) SetStatus

func (s *BlueGreenDeploymentTask) SetStatus(v string) *BlueGreenDeploymentTask

SetStatus sets the Status field's value.

func (BlueGreenDeploymentTask) String

func (s BlueGreenDeploymentTask) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CancelExportTaskInput

type CancelExportTaskInput struct {

    // The identifier of the snapshot or cluster export task to cancel.
    //
    // ExportTaskIdentifier is a required field
    ExportTaskIdentifier *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CancelExportTaskInput) GoString

func (s CancelExportTaskInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CancelExportTaskInput) SetExportTaskIdentifier

func (s *CancelExportTaskInput) SetExportTaskIdentifier(v string) *CancelExportTaskInput

SetExportTaskIdentifier sets the ExportTaskIdentifier field's value.

func (CancelExportTaskInput) String

func (s CancelExportTaskInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CancelExportTaskInput) Validate

func (s *CancelExportTaskInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CancelExportTaskOutput

type CancelExportTaskOutput struct {

    // The data exported from the snapshot or cluster.
    //
    // Valid Values:
    //
    //    * database - Export all the data from a specified database.
    //
    //    * database.table table-name - Export a table of the snapshot or cluster.
    //    This format is valid only for RDS for MySQL, RDS for MariaDB, and Aurora
    //    MySQL.
    //
    //    * database.schema schema-name - Export a database schema of the snapshot
    //    or cluster. This format is valid only for RDS for PostgreSQL and Aurora
    //    PostgreSQL.
    //
    //    * database.schema.table table-name - Export a table of the database schema.
    //    This format is valid only for RDS for PostgreSQL and Aurora PostgreSQL.
    ExportOnly []*string `type:"list"`

    // A unique identifier for the snapshot or cluster export task. This ID isn't
    // an identifier for the Amazon S3 bucket where the data is exported.
    ExportTaskIdentifier *string `type:"string"`

    // The reason the export failed, if it failed.
    FailureCause *string `type:"string"`

    // The name of the IAM role that is used to write to Amazon S3 when exporting
    // a snapshot or cluster.
    IamRoleArn *string `type:"string"`

    // The key identifier of the Amazon Web Services KMS key that is used to encrypt
    // the data when it's exported to Amazon S3. The KMS key identifier is its key
    // ARN, key ID, alias ARN, or alias name. The IAM role used for the export must
    // have encryption and decryption permissions to use this KMS key.
    KmsKeyId *string `type:"string"`

    // The progress of the snapshot or cluster export task as a percentage.
    PercentProgress *int64 `type:"integer"`

    // The Amazon S3 bucket where the snapshot or cluster is exported to.
    S3Bucket *string `type:"string"`

    // The Amazon S3 bucket prefix that is the file name and path of the exported
    // data.
    S3Prefix *string `type:"string"`

    // The time when the snapshot was created.
    SnapshotTime *time.Time `type:"timestamp"`

    // The Amazon Resource Name (ARN) of the snapshot or cluster exported to Amazon
    // S3.
    SourceArn *string `type:"string"`

    // The type of source for the export.
    SourceType *string `type:"string" enum:"ExportSourceType"`

    // The progress status of the export task. The status can be one of the following:
    //
    //    * CANCELED
    //
    //    * CANCELING
    //
    //    * COMPLETE
    //
    //    * FAILED
    //
    //    * IN_PROGRESS
    //
    //    * STARTING
    Status *string `type:"string"`

    // The time when the snapshot or cluster export task ended.
    TaskEndTime *time.Time `type:"timestamp"`

    // The time when the snapshot or cluster export task started.
    TaskStartTime *time.Time `type:"timestamp"`

    // The total amount of data exported, in gigabytes.
    TotalExtractedDataInGB *int64 `type:"integer"`

    // A warning about the snapshot or cluster export task.
    WarningMessage *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the details of a snapshot or cluster export to Amazon S3.

This data type is used as a response element in the DescribeExportTasks operation.

func (CancelExportTaskOutput) GoString

func (s CancelExportTaskOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CancelExportTaskOutput) SetExportOnly

func (s *CancelExportTaskOutput) SetExportOnly(v []*string) *CancelExportTaskOutput

SetExportOnly sets the ExportOnly field's value.

func (*CancelExportTaskOutput) SetExportTaskIdentifier

func (s *CancelExportTaskOutput) SetExportTaskIdentifier(v string) *CancelExportTaskOutput

SetExportTaskIdentifier sets the ExportTaskIdentifier field's value.

func (*CancelExportTaskOutput) SetFailureCause

func (s *CancelExportTaskOutput) SetFailureCause(v string) *CancelExportTaskOutput

SetFailureCause sets the FailureCause field's value.

func (*CancelExportTaskOutput) SetIamRoleArn

func (s *CancelExportTaskOutput) SetIamRoleArn(v string) *CancelExportTaskOutput

SetIamRoleArn sets the IamRoleArn field's value.

func (*CancelExportTaskOutput) SetKmsKeyId

func (s *CancelExportTaskOutput) SetKmsKeyId(v string) *CancelExportTaskOutput

SetKmsKeyId sets the KmsKeyId field's value.

func (*CancelExportTaskOutput) SetPercentProgress

func (s *CancelExportTaskOutput) SetPercentProgress(v int64) *CancelExportTaskOutput

SetPercentProgress sets the PercentProgress field's value.

func (*CancelExportTaskOutput) SetS3Bucket

func (s *CancelExportTaskOutput) SetS3Bucket(v string) *CancelExportTaskOutput

SetS3Bucket sets the S3Bucket field's value.

func (*CancelExportTaskOutput) SetS3Prefix

func (s *CancelExportTaskOutput) SetS3Prefix(v string) *CancelExportTaskOutput

SetS3Prefix sets the S3Prefix field's value.

func (*CancelExportTaskOutput) SetSnapshotTime

func (s *CancelExportTaskOutput) SetSnapshotTime(v time.Time) *CancelExportTaskOutput

SetSnapshotTime sets the SnapshotTime field's value.

func (*CancelExportTaskOutput) SetSourceArn

func (s *CancelExportTaskOutput) SetSourceArn(v string) *CancelExportTaskOutput

SetSourceArn sets the SourceArn field's value.

func (*CancelExportTaskOutput) SetSourceType

func (s *CancelExportTaskOutput) SetSourceType(v string) *CancelExportTaskOutput

SetSourceType sets the SourceType field's value.

func (*CancelExportTaskOutput) SetStatus

func (s *CancelExportTaskOutput) SetStatus(v string) *CancelExportTaskOutput

SetStatus sets the Status field's value.

func (*CancelExportTaskOutput) SetTaskEndTime

func (s *CancelExportTaskOutput) SetTaskEndTime(v time.Time) *CancelExportTaskOutput

SetTaskEndTime sets the TaskEndTime field's value.

func (*CancelExportTaskOutput) SetTaskStartTime

func (s *CancelExportTaskOutput) SetTaskStartTime(v time.Time) *CancelExportTaskOutput

SetTaskStartTime sets the TaskStartTime field's value.

func (*CancelExportTaskOutput) SetTotalExtractedDataInGB

func (s *CancelExportTaskOutput) SetTotalExtractedDataInGB(v int64) *CancelExportTaskOutput

SetTotalExtractedDataInGB sets the TotalExtractedDataInGB field's value.

func (*CancelExportTaskOutput) SetWarningMessage

func (s *CancelExportTaskOutput) SetWarningMessage(v string) *CancelExportTaskOutput

SetWarningMessage sets the WarningMessage field's value.

func (CancelExportTaskOutput) String

func (s CancelExportTaskOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type Certificate

type Certificate struct {

    // The Amazon Resource Name (ARN) for the certificate.
    CertificateArn *string `type:"string"`

    // The unique key that identifies a certificate.
    CertificateIdentifier *string `type:"string"`

    // The type of the certificate.
    CertificateType *string `type:"string"`

    // Indicates whether there is an override for the default certificate identifier.
    CustomerOverride *bool `type:"boolean"`

    // If there is an override for the default certificate identifier, when the
    // override expires.
    CustomerOverrideValidTill *time.Time `type:"timestamp"`

    // The thumbprint of the certificate.
    Thumbprint *string `type:"string"`

    // The starting date from which the certificate is valid.
    ValidFrom *time.Time `type:"timestamp"`

    // The final date that the certificate continues to be valid.
    ValidTill *time.Time `type:"timestamp"`
    // contains filtered or unexported fields
}

A CA certificate for an Amazon Web Services account.

For more information, see Using SSL/TLS to encrypt a connection to a DB instance (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html) in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html) in the Amazon Aurora User Guide.

func (Certificate) GoString

func (s Certificate) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Certificate) SetCertificateArn

func (s *Certificate) SetCertificateArn(v string) *Certificate

SetCertificateArn sets the CertificateArn field's value.

func (*Certificate) SetCertificateIdentifier

func (s *Certificate) SetCertificateIdentifier(v string) *Certificate

SetCertificateIdentifier sets the CertificateIdentifier field's value.

func (*Certificate) SetCertificateType

func (s *Certificate) SetCertificateType(v string) *Certificate

SetCertificateType sets the CertificateType field's value.

func (*Certificate) SetCustomerOverride

func (s *Certificate) SetCustomerOverride(v bool) *Certificate

SetCustomerOverride sets the CustomerOverride field's value.

func (*Certificate) SetCustomerOverrideValidTill

func (s *Certificate) SetCustomerOverrideValidTill(v time.Time) *Certificate

SetCustomerOverrideValidTill sets the CustomerOverrideValidTill field's value.

func (*Certificate) SetThumbprint

func (s *Certificate) SetThumbprint(v string) *Certificate

SetThumbprint sets the Thumbprint field's value.

func (*Certificate) SetValidFrom

func (s *Certificate) SetValidFrom(v time.Time) *Certificate

SetValidFrom sets the ValidFrom field's value.

func (*Certificate) SetValidTill

func (s *Certificate) SetValidTill(v time.Time) *Certificate

SetValidTill sets the ValidTill field's value.

func (Certificate) String

func (s Certificate) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CertificateDetails

type CertificateDetails struct {

    // The CA identifier of the CA certificate used for the DB instance's server
    // certificate.
    CAIdentifier *string `type:"string"`

    // The expiration date of the DB instance’s server certificate.
    ValidTill *time.Time `type:"timestamp"`
    // contains filtered or unexported fields
}

Returns the details of the DB instance’s server certificate.

For more information, see Using SSL/TLS to encrypt a connection to a DB instance (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html) in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html) in the Amazon Aurora User Guide.

func (CertificateDetails) GoString

func (s CertificateDetails) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CertificateDetails) SetCAIdentifier

func (s *CertificateDetails) SetCAIdentifier(v string) *CertificateDetails

SetCAIdentifier sets the CAIdentifier field's value.

func (*CertificateDetails) SetValidTill

func (s *CertificateDetails) SetValidTill(v time.Time) *CertificateDetails

SetValidTill sets the ValidTill field's value.

func (CertificateDetails) String

func (s CertificateDetails) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CharacterSet

type CharacterSet struct {

    // The description of the character set.
    CharacterSetDescription *string `type:"string"`

    // The name of the character set.
    CharacterSetName *string `type:"string"`
    // contains filtered or unexported fields
}

This data type is used as a response element in the action DescribeDBEngineVersions.

func (CharacterSet) GoString

func (s CharacterSet) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CharacterSet) SetCharacterSetDescription

func (s *CharacterSet) SetCharacterSetDescription(v string) *CharacterSet

SetCharacterSetDescription sets the CharacterSetDescription field's value.

func (*CharacterSet) SetCharacterSetName

func (s *CharacterSet) SetCharacterSetName(v string) *CharacterSet

SetCharacterSetName sets the CharacterSetName field's value.

func (CharacterSet) String

func (s CharacterSet) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CloudwatchLogsExportConfiguration

type CloudwatchLogsExportConfiguration struct {

    // The list of log types to disable.
    DisableLogTypes []*string `type:"list"`

    // The list of log types to enable.
    EnableLogTypes []*string `type:"list"`
    // contains filtered or unexported fields
}

The configuration setting for the log types to be enabled for export to CloudWatch Logs for a specific DB instance or DB cluster.

The EnableLogTypes and DisableLogTypes arrays determine which logs will be exported (or not exported) to CloudWatch Logs. The values within these arrays depend on the DB engine being used.

For more information about exporting CloudWatch Logs for Amazon RDS DB instances, see Publishing Database Logs to Amazon CloudWatch Logs (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch) in the Amazon RDS User Guide.

For more information about exporting CloudWatch Logs for Amazon Aurora DB clusters, see Publishing Database Logs to Amazon CloudWatch Logs (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch) in the Amazon Aurora User Guide.

func (CloudwatchLogsExportConfiguration) GoString

func (s CloudwatchLogsExportConfiguration) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CloudwatchLogsExportConfiguration) SetDisableLogTypes

func (s *CloudwatchLogsExportConfiguration) SetDisableLogTypes(v []*string) *CloudwatchLogsExportConfiguration

SetDisableLogTypes sets the DisableLogTypes field's value.

func (*CloudwatchLogsExportConfiguration) SetEnableLogTypes

func (s *CloudwatchLogsExportConfiguration) SetEnableLogTypes(v []*string) *CloudwatchLogsExportConfiguration

SetEnableLogTypes sets the EnableLogTypes field's value.

func (CloudwatchLogsExportConfiguration) String

func (s CloudwatchLogsExportConfiguration) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ClusterPendingModifiedValues

type ClusterPendingModifiedValues struct {

    // The allocated storage size in gibibytes (GiB) for all database engines except
    // Amazon Aurora. For Aurora, AllocatedStorage always returns 1, because Aurora
    // DB cluster storage size isn't fixed, but instead automatically adjusts as
    // needed.
    AllocatedStorage *int64 `type:"integer"`

    // The number of days for which automatic DB snapshots are retained.
    BackupRetentionPeriod *int64 `type:"integer"`

    // Returns the details of the DB instance’s server certificate.
    //
    // For more information, see Using SSL/TLS to encrypt a connection to a DB instance
    // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html)
    // in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to
    // a DB cluster (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html)
    // in the Amazon Aurora User Guide.
    CertificateDetails *CertificateDetails `type:"structure"`

    // The DBClusterIdentifier value for the DB cluster.
    DBClusterIdentifier *string `type:"string"`

    // The database engine version.
    EngineVersion *string `type:"string"`

    // Indicates whether mapping of Amazon Web Services Identity and Access Management
    // (IAM) accounts to database accounts is enabled.
    IAMDatabaseAuthenticationEnabled *bool `type:"boolean"`

    // The Provisioned IOPS (I/O operations per second) value. This setting is only
    // for non-Aurora Multi-AZ DB clusters.
    Iops *int64 `type:"integer"`

    // The master credentials for the DB cluster.
    MasterUserPassword *string `type:"string"`

    // A list of the log types whose configuration is still pending. In other words,
    // these log types are in the process of being activated or deactivated.
    PendingCloudwatchLogsExports *PendingCloudwatchLogsExports `type:"structure"`

    // Reserved for future use.
    RdsCustomClusterConfiguration *RdsCustomClusterConfiguration `type:"structure"`

    // The storage type for the DB cluster.
    StorageType *string `type:"string"`
    // contains filtered or unexported fields
}

This data type is used as a response element in the ModifyDBCluster operation and contains changes that will be applied during the next maintenance window.

func (ClusterPendingModifiedValues) GoString

func (s ClusterPendingModifiedValues) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ClusterPendingModifiedValues) SetAllocatedStorage

func (s *ClusterPendingModifiedValues) SetAllocatedStorage(v int64) *ClusterPendingModifiedValues

SetAllocatedStorage sets the AllocatedStorage field's value.

func (*ClusterPendingModifiedValues) SetBackupRetentionPeriod

func (s *ClusterPendingModifiedValues) SetBackupRetentionPeriod(v int64) *ClusterPendingModifiedValues

SetBackupRetentionPeriod sets the BackupRetentionPeriod field's value.

func (*ClusterPendingModifiedValues) SetCertificateDetails

func (s *ClusterPendingModifiedValues) SetCertificateDetails(v *CertificateDetails) *ClusterPendingModifiedValues

SetCertificateDetails sets the CertificateDetails field's value.

func (*ClusterPendingModifiedValues) SetDBClusterIdentifier

func (s *ClusterPendingModifiedValues) SetDBClusterIdentifier(v string) *ClusterPendingModifiedValues

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*ClusterPendingModifiedValues) SetEngineVersion

func (s *ClusterPendingModifiedValues) SetEngineVersion(v string) *ClusterPendingModifiedValues

SetEngineVersion sets the EngineVersion field's value.

func (*ClusterPendingModifiedValues) SetIAMDatabaseAuthenticationEnabled

func (s *ClusterPendingModifiedValues) SetIAMDatabaseAuthenticationEnabled(v bool) *ClusterPendingModifiedValues

SetIAMDatabaseAuthenticationEnabled sets the IAMDatabaseAuthenticationEnabled field's value.

func (*ClusterPendingModifiedValues) SetIops

func (s *ClusterPendingModifiedValues) SetIops(v int64) *ClusterPendingModifiedValues

SetIops sets the Iops field's value.

func (*ClusterPendingModifiedValues) SetMasterUserPassword

func (s *ClusterPendingModifiedValues) SetMasterUserPassword(v string) *ClusterPendingModifiedValues

SetMasterUserPassword sets the MasterUserPassword field's value.

func (*ClusterPendingModifiedValues) SetPendingCloudwatchLogsExports

func (s *ClusterPendingModifiedValues) SetPendingCloudwatchLogsExports(v *PendingCloudwatchLogsExports) *ClusterPendingModifiedValues

SetPendingCloudwatchLogsExports sets the PendingCloudwatchLogsExports field's value.

func (*ClusterPendingModifiedValues) SetRdsCustomClusterConfiguration

func (s *ClusterPendingModifiedValues) SetRdsCustomClusterConfiguration(v *RdsCustomClusterConfiguration) *ClusterPendingModifiedValues

SetRdsCustomClusterConfiguration sets the RdsCustomClusterConfiguration field's value.

func (*ClusterPendingModifiedValues) SetStorageType

func (s *ClusterPendingModifiedValues) SetStorageType(v string) *ClusterPendingModifiedValues

SetStorageType sets the StorageType field's value.

func (ClusterPendingModifiedValues) String

func (s ClusterPendingModifiedValues) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ConnectionPoolConfiguration

type ConnectionPoolConfiguration struct {

    // The number of seconds for a proxy to wait for a connection to become available
    // in the connection pool. This setting only applies when the proxy has opened
    // its maximum number of connections and all connections are busy with client
    // sessions. For an unlimited wait time, specify 0.
    //
    // Default: 120
    //
    // Constraints:
    //
    //    * Must be between 0 and 3600.
    ConnectionBorrowTimeout *int64 `type:"integer"`

    // One or more SQL statements for the proxy to run when opening each new database
    // connection. Typically used with SET statements to make sure that each connection
    // has identical settings such as time zone and character set. For multiple
    // statements, use semicolons as the separator. You can also include multiple
    // variables in a single SET statement, such as SET x=1, y=2.
    //
    // Default: no initialization query
    InitQuery *string `type:"string"`

    // The maximum size of the connection pool for each target in a target group.
    // The value is expressed as a percentage of the max_connections setting for
    // the RDS DB instance or Aurora DB cluster used by the target group.
    //
    // If you specify MaxIdleConnectionsPercent, then you must also include a value
    // for this parameter.
    //
    // Default: 10 for RDS for Microsoft SQL Server, and 100 for all other engines
    //
    // Constraints:
    //
    //    * Must be between 1 and 100.
    MaxConnectionsPercent *int64 `type:"integer"`

    // A value that controls how actively the proxy closes idle database connections
    // in the connection pool. The value is expressed as a percentage of the max_connections
    // setting for the RDS DB instance or Aurora DB cluster used by the target group.
    // With a high value, the proxy leaves a high percentage of idle database connections
    // open. A low value causes the proxy to close more idle connections and return
    // them to the database.
    //
    // If you specify this parameter, then you must also include a value for MaxConnectionsPercent.
    //
    // Default: The default value is half of the value of MaxConnectionsPercent.
    // For example, if MaxConnectionsPercent is 80, then the default value of MaxIdleConnectionsPercent
    // is 40. If the value of MaxConnectionsPercent isn't specified, then for SQL
    // Server, MaxIdleConnectionsPercent is 5, and for all other engines, the default
    // is 50.
    //
    // Constraints:
    //
    //    * Must be between 0 and the value of MaxConnectionsPercent.
    MaxIdleConnectionsPercent *int64 `type:"integer"`

    // Each item in the list represents a class of SQL operations that normally
    // cause all later statements in a session using a proxy to be pinned to the
    // same underlying database connection. Including an item in the list exempts
    // that class of SQL operations from the pinning behavior.
    //
    // Default: no session pinning filters
    SessionPinningFilters []*string `type:"list"`
    // contains filtered or unexported fields
}

Specifies the settings that control the size and behavior of the connection pool associated with a DBProxyTargetGroup.

func (ConnectionPoolConfiguration) GoString

func (s ConnectionPoolConfiguration) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConnectionPoolConfiguration) SetConnectionBorrowTimeout

func (s *ConnectionPoolConfiguration) SetConnectionBorrowTimeout(v int64) *ConnectionPoolConfiguration

SetConnectionBorrowTimeout sets the ConnectionBorrowTimeout field's value.

func (*ConnectionPoolConfiguration) SetInitQuery

func (s *ConnectionPoolConfiguration) SetInitQuery(v string) *ConnectionPoolConfiguration

SetInitQuery sets the InitQuery field's value.

func (*ConnectionPoolConfiguration) SetMaxConnectionsPercent

func (s *ConnectionPoolConfiguration) SetMaxConnectionsPercent(v int64) *ConnectionPoolConfiguration

SetMaxConnectionsPercent sets the MaxConnectionsPercent field's value.

func (*ConnectionPoolConfiguration) SetMaxIdleConnectionsPercent

func (s *ConnectionPoolConfiguration) SetMaxIdleConnectionsPercent(v int64) *ConnectionPoolConfiguration

SetMaxIdleConnectionsPercent sets the MaxIdleConnectionsPercent field's value.

func (*ConnectionPoolConfiguration) SetSessionPinningFilters

func (s *ConnectionPoolConfiguration) SetSessionPinningFilters(v []*string) *ConnectionPoolConfiguration

SetSessionPinningFilters sets the SessionPinningFilters field's value.

func (ConnectionPoolConfiguration) String

func (s ConnectionPoolConfiguration) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ConnectionPoolConfigurationInfo

type ConnectionPoolConfigurationInfo struct {

    // The number of seconds for a proxy to wait for a connection to become available
    // in the connection pool. Only applies when the proxy has opened its maximum
    // number of connections and all connections are busy with client sessions.
    ConnectionBorrowTimeout *int64 `type:"integer"`

    // One or more SQL statements for the proxy to run when opening each new database
    // connection. Typically used with SET statements to make sure that each connection
    // has identical settings such as time zone and character set. This setting
    // is empty by default. For multiple statements, use semicolons as the separator.
    // You can also include multiple variables in a single SET statement, such as
    // SET x=1, y=2.
    InitQuery *string `type:"string"`

    // The maximum size of the connection pool for each target in a target group.
    // The value is expressed as a percentage of the max_connections setting for
    // the RDS DB instance or Aurora DB cluster used by the target group.
    MaxConnectionsPercent *int64 `type:"integer"`

    // Controls how actively the proxy closes idle database connections in the connection
    // pool. The value is expressed as a percentage of the max_connections setting
    // for the RDS DB instance or Aurora DB cluster used by the target group. With
    // a high value, the proxy leaves a high percentage of idle database connections
    // open. A low value causes the proxy to close more idle connections and return
    // them to the database.
    MaxIdleConnectionsPercent *int64 `type:"integer"`

    // Each item in the list represents a class of SQL operations that normally
    // cause all later statements in a session using a proxy to be pinned to the
    // same underlying database connection. Including an item in the list exempts
    // that class of SQL operations from the pinning behavior. This setting is only
    // supported for MySQL engine family databases. Currently, the only allowed
    // value is EXCLUDE_VARIABLE_SETS.
    SessionPinningFilters []*string `type:"list"`
    // contains filtered or unexported fields
}

Displays the settings that control the size and behavior of the connection pool associated with a DBProxyTarget.

func (ConnectionPoolConfigurationInfo) GoString

func (s ConnectionPoolConfigurationInfo) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConnectionPoolConfigurationInfo) SetConnectionBorrowTimeout

func (s *ConnectionPoolConfigurationInfo) SetConnectionBorrowTimeout(v int64) *ConnectionPoolConfigurationInfo

SetConnectionBorrowTimeout sets the ConnectionBorrowTimeout field's value.

func (*ConnectionPoolConfigurationInfo) SetInitQuery

func (s *ConnectionPoolConfigurationInfo) SetInitQuery(v string) *ConnectionPoolConfigurationInfo

SetInitQuery sets the InitQuery field's value.

func (*ConnectionPoolConfigurationInfo) SetMaxConnectionsPercent

func (s *ConnectionPoolConfigurationInfo) SetMaxConnectionsPercent(v int64) *ConnectionPoolConfigurationInfo

SetMaxConnectionsPercent sets the MaxConnectionsPercent field's value.

func (*ConnectionPoolConfigurationInfo) SetMaxIdleConnectionsPercent

func (s *ConnectionPoolConfigurationInfo) SetMaxIdleConnectionsPercent(v int64) *ConnectionPoolConfigurationInfo

SetMaxIdleConnectionsPercent sets the MaxIdleConnectionsPercent field's value.

func (*ConnectionPoolConfigurationInfo) SetSessionPinningFilters

func (s *ConnectionPoolConfigurationInfo) SetSessionPinningFilters(v []*string) *ConnectionPoolConfigurationInfo

SetSessionPinningFilters sets the SessionPinningFilters field's value.

func (ConnectionPoolConfigurationInfo) String

func (s ConnectionPoolConfigurationInfo) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ContextAttribute

type ContextAttribute struct {

    // The key of ContextAttribute.
    Key *string `type:"string"`

    // The value of ContextAttribute.
    Value *string `type:"string"`
    // contains filtered or unexported fields
}

The additional attributes of RecommendedAction data type.

func (ContextAttribute) GoString

func (s ContextAttribute) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ContextAttribute) SetKey

func (s *ContextAttribute) SetKey(v string) *ContextAttribute

SetKey sets the Key field's value.

func (*ContextAttribute) SetValue

func (s *ContextAttribute) SetValue(v string) *ContextAttribute

SetValue sets the Value field's value.

func (ContextAttribute) String

func (s ContextAttribute) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CopyDBClusterParameterGroupInput

type CopyDBClusterParameterGroupInput struct {

    // The identifier or Amazon Resource Name (ARN) for the source DB cluster parameter
    // group. For information about creating an ARN, see Constructing an ARN for
    // Amazon RDS (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing)
    // in the Amazon Aurora User Guide.
    //
    // Constraints:
    //
    //    * Must specify a valid DB cluster parameter group.
    //
    // SourceDBClusterParameterGroupIdentifier is a required field
    SourceDBClusterParameterGroupIdentifier *string `type:"string" required:"true"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    Tags []*Tag `locationNameList:"Tag" type:"list"`

    // A description for the copied DB cluster parameter group.
    //
    // TargetDBClusterParameterGroupDescription is a required field
    TargetDBClusterParameterGroupDescription *string `type:"string" required:"true"`

    // The identifier for the copied DB cluster parameter group.
    //
    // Constraints:
    //
    //    * Can't be null, empty, or blank
    //
    //    * Must contain from 1 to 255 letters, numbers, or hyphens
    //
    //    * First character must be a letter
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens
    //
    // Example: my-cluster-param-group1
    //
    // TargetDBClusterParameterGroupIdentifier is a required field
    TargetDBClusterParameterGroupIdentifier *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CopyDBClusterParameterGroupInput) GoString

func (s CopyDBClusterParameterGroupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CopyDBClusterParameterGroupInput) SetSourceDBClusterParameterGroupIdentifier

func (s *CopyDBClusterParameterGroupInput) SetSourceDBClusterParameterGroupIdentifier(v string) *CopyDBClusterParameterGroupInput

SetSourceDBClusterParameterGroupIdentifier sets the SourceDBClusterParameterGroupIdentifier field's value.

func (*CopyDBClusterParameterGroupInput) SetTags

func (s *CopyDBClusterParameterGroupInput) SetTags(v []*Tag) *CopyDBClusterParameterGroupInput

SetTags sets the Tags field's value.

func (*CopyDBClusterParameterGroupInput) SetTargetDBClusterParameterGroupDescription

func (s *CopyDBClusterParameterGroupInput) SetTargetDBClusterParameterGroupDescription(v string) *CopyDBClusterParameterGroupInput

SetTargetDBClusterParameterGroupDescription sets the TargetDBClusterParameterGroupDescription field's value.

func (*CopyDBClusterParameterGroupInput) SetTargetDBClusterParameterGroupIdentifier

func (s *CopyDBClusterParameterGroupInput) SetTargetDBClusterParameterGroupIdentifier(v string) *CopyDBClusterParameterGroupInput

SetTargetDBClusterParameterGroupIdentifier sets the TargetDBClusterParameterGroupIdentifier field's value.

func (CopyDBClusterParameterGroupInput) String

func (s CopyDBClusterParameterGroupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CopyDBClusterParameterGroupInput) Validate

func (s *CopyDBClusterParameterGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CopyDBClusterParameterGroupOutput

type CopyDBClusterParameterGroupOutput struct {

    // Contains the details of an Amazon RDS DB cluster parameter group.
    //
    // This data type is used as a response element in the DescribeDBClusterParameterGroups
    // action.
    DBClusterParameterGroup *DBClusterParameterGroup `type:"structure"`
    // contains filtered or unexported fields
}

func (CopyDBClusterParameterGroupOutput) GoString

func (s CopyDBClusterParameterGroupOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CopyDBClusterParameterGroupOutput) SetDBClusterParameterGroup

func (s *CopyDBClusterParameterGroupOutput) SetDBClusterParameterGroup(v *DBClusterParameterGroup) *CopyDBClusterParameterGroupOutput

SetDBClusterParameterGroup sets the DBClusterParameterGroup field's value.

func (CopyDBClusterParameterGroupOutput) String

func (s CopyDBClusterParameterGroupOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CopyDBClusterSnapshotInput

type CopyDBClusterSnapshotInput struct {

    // Specifies whether to copy all tags from the source DB cluster snapshot to
    // the target DB cluster snapshot. By default, tags are not copied.
    CopyTags *bool `type:"boolean"`

    // DestinationRegion is used for presigning the request to a given region.
    DestinationRegion *string `type:"string"`

    // The Amazon Web Services KMS key identifier for an encrypted DB cluster snapshot.
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the Amazon Web Services KMS key.
    //
    // If you copy an encrypted DB cluster snapshot from your Amazon Web Services
    // account, you can specify a value for KmsKeyId to encrypt the copy with a
    // new KMS key. If you don't specify a value for KmsKeyId, then the copy of
    // the DB cluster snapshot is encrypted with the same KMS key as the source
    // DB cluster snapshot.
    //
    // If you copy an encrypted DB cluster snapshot that is shared from another
    // Amazon Web Services account, then you must specify a value for KmsKeyId.
    //
    // To copy an encrypted DB cluster snapshot to another Amazon Web Services Region,
    // you must set KmsKeyId to the Amazon Web Services KMS key identifier you want
    // to use to encrypt the copy of the DB cluster snapshot in the destination
    // Amazon Web Services Region. KMS keys are specific to the Amazon Web Services
    // Region that they are created in, and you can't use KMS keys from one Amazon
    // Web Services Region in another Amazon Web Services Region.
    //
    // If you copy an unencrypted DB cluster snapshot and specify a value for the
    // KmsKeyId parameter, an error is returned.
    KmsKeyId *string `type:"string"`

    // When you are copying a DB cluster snapshot from one Amazon Web Services GovCloud
    // (US) Region to another, the URL that contains a Signature Version 4 signed
    // request for the CopyDBClusterSnapshot API operation in the Amazon Web Services
    // Region that contains the source DB cluster snapshot to copy. Use the PreSignedUrl
    // parameter when copying an encrypted DB cluster snapshot from another Amazon
    // Web Services Region. Don't specify PreSignedUrl when copying an encrypted
    // DB cluster snapshot in the same Amazon Web Services Region.
    //
    // This setting applies only to Amazon Web Services GovCloud (US) Regions. It's
    // ignored in other Amazon Web Services Regions.
    //
    // The presigned URL must be a valid request for the CopyDBClusterSnapshot API
    // operation that can run in the source Amazon Web Services Region that contains
    // the encrypted DB cluster snapshot to copy. The presigned URL request must
    // contain the following parameter values:
    //
    //    * KmsKeyId - The KMS key identifier for the KMS key to use to encrypt
    //    the copy of the DB cluster snapshot in the destination Amazon Web Services
    //    Region. This is the same identifier for both the CopyDBClusterSnapshot
    //    operation that is called in the destination Amazon Web Services Region,
    //    and the operation contained in the presigned URL.
    //
    //    * DestinationRegion - The name of the Amazon Web Services Region that
    //    the DB cluster snapshot is to be created in.
    //
    //    * SourceDBClusterSnapshotIdentifier - The DB cluster snapshot identifier
    //    for the encrypted DB cluster snapshot to be copied. This identifier must
    //    be in the Amazon Resource Name (ARN) format for the source Amazon Web
    //    Services Region. For example, if you are copying an encrypted DB cluster
    //    snapshot from the us-west-2 Amazon Web Services Region, then your SourceDBClusterSnapshotIdentifier
    //    looks like the following example: arn:aws:rds:us-west-2:123456789012:cluster-snapshot:aurora-cluster1-snapshot-20161115.
    //
    // To learn how to generate a Signature Version 4 signed request, see Authenticating
    // Requests: Using Query Parameters (Amazon Web Services Signature Version 4)
    // (https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html)
    // and Signature Version 4 Signing Process (https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html).
    //
    // If you are using an Amazon Web Services SDK tool or the CLI, you can specify
    // SourceRegion (or --source-region for the CLI) instead of specifying PreSignedUrl
    // manually. Specifying SourceRegion autogenerates a presigned URL that is a
    // valid request for the operation that can run in the source Amazon Web Services
    // Region.
    PreSignedUrl *string `type:"string"`

    // The identifier of the DB cluster snapshot to copy. This parameter isn't case-sensitive.
    //
    // You can't copy an encrypted, shared DB cluster snapshot from one Amazon Web
    // Services Region to another.
    //
    // Constraints:
    //
    //    * Must specify a valid system snapshot in the "available" state.
    //
    //    * If the source snapshot is in the same Amazon Web Services Region as
    //    the copy, specify a valid DB snapshot identifier.
    //
    //    * If the source snapshot is in a different Amazon Web Services Region
    //    than the copy, specify a valid DB cluster snapshot ARN. For more information,
    //    go to Copying Snapshots Across Amazon Web Services Regions (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_CopySnapshot.html#USER_CopySnapshot.AcrossRegions)
    //    in the Amazon Aurora User Guide.
    //
    // Example: my-cluster-snapshot1
    //
    // SourceDBClusterSnapshotIdentifier is a required field
    SourceDBClusterSnapshotIdentifier *string `type:"string" required:"true"`

    // SourceRegion is the source region where the resource exists. This is not
    // sent over the wire and is only used for presigning. This value should always
    // have the same region as the source ARN.
    SourceRegion *string `type:"string" ignore:"true"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    Tags []*Tag `locationNameList:"Tag" type:"list"`

    // The identifier of the new DB cluster snapshot to create from the source DB
    // cluster snapshot. This parameter isn't case-sensitive.
    //
    // Constraints:
    //
    //    * Must contain from 1 to 63 letters, numbers, or hyphens.
    //
    //    * First character must be a letter.
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens.
    //
    // Example: my-cluster-snapshot2
    //
    // TargetDBClusterSnapshotIdentifier is a required field
    TargetDBClusterSnapshotIdentifier *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CopyDBClusterSnapshotInput) GoString

func (s CopyDBClusterSnapshotInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CopyDBClusterSnapshotInput) SetCopyTags

func (s *CopyDBClusterSnapshotInput) SetCopyTags(v bool) *CopyDBClusterSnapshotInput

SetCopyTags sets the CopyTags field's value.

func (*CopyDBClusterSnapshotInput) SetDestinationRegion

func (s *CopyDBClusterSnapshotInput) SetDestinationRegion(v string) *CopyDBClusterSnapshotInput

SetDestinationRegion sets the DestinationRegion field's value.

func (*CopyDBClusterSnapshotInput) SetKmsKeyId

func (s *CopyDBClusterSnapshotInput) SetKmsKeyId(v string) *CopyDBClusterSnapshotInput

SetKmsKeyId sets the KmsKeyId field's value.

func (*CopyDBClusterSnapshotInput) SetPreSignedUrl

func (s *CopyDBClusterSnapshotInput) SetPreSignedUrl(v string) *CopyDBClusterSnapshotInput

SetPreSignedUrl sets the PreSignedUrl field's value.

func (*CopyDBClusterSnapshotInput) SetSourceDBClusterSnapshotIdentifier

func (s *CopyDBClusterSnapshotInput) SetSourceDBClusterSnapshotIdentifier(v string) *CopyDBClusterSnapshotInput

SetSourceDBClusterSnapshotIdentifier sets the SourceDBClusterSnapshotIdentifier field's value.

func (*CopyDBClusterSnapshotInput) SetSourceRegion

func (s *CopyDBClusterSnapshotInput) SetSourceRegion(v string) *CopyDBClusterSnapshotInput

SetSourceRegion sets the SourceRegion field's value.

func (*CopyDBClusterSnapshotInput) SetTags

func (s *CopyDBClusterSnapshotInput) SetTags(v []*Tag) *CopyDBClusterSnapshotInput

SetTags sets the Tags field's value.

func (*CopyDBClusterSnapshotInput) SetTargetDBClusterSnapshotIdentifier

func (s *CopyDBClusterSnapshotInput) SetTargetDBClusterSnapshotIdentifier(v string) *CopyDBClusterSnapshotInput

SetTargetDBClusterSnapshotIdentifier sets the TargetDBClusterSnapshotIdentifier field's value.

func (CopyDBClusterSnapshotInput) String

func (s CopyDBClusterSnapshotInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CopyDBClusterSnapshotInput) Validate

func (s *CopyDBClusterSnapshotInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CopyDBClusterSnapshotOutput

type CopyDBClusterSnapshotOutput struct {

    // Contains the details for an Amazon RDS DB cluster snapshot
    //
    // This data type is used as a response element in the DescribeDBClusterSnapshots
    // action.
    DBClusterSnapshot *DBClusterSnapshot `type:"structure"`
    // contains filtered or unexported fields
}

func (CopyDBClusterSnapshotOutput) GoString

func (s CopyDBClusterSnapshotOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CopyDBClusterSnapshotOutput) SetDBClusterSnapshot

func (s *CopyDBClusterSnapshotOutput) SetDBClusterSnapshot(v *DBClusterSnapshot) *CopyDBClusterSnapshotOutput

SetDBClusterSnapshot sets the DBClusterSnapshot field's value.

func (CopyDBClusterSnapshotOutput) String

func (s CopyDBClusterSnapshotOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CopyDBParameterGroupInput

type CopyDBParameterGroupInput struct {

    // The identifier or ARN for the source DB parameter group. For information
    // about creating an ARN, see Constructing an ARN for Amazon RDS (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing)
    // in the Amazon RDS User Guide.
    //
    // Constraints:
    //
    //    * Must specify a valid DB parameter group.
    //
    // SourceDBParameterGroupIdentifier is a required field
    SourceDBParameterGroupIdentifier *string `type:"string" required:"true"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    Tags []*Tag `locationNameList:"Tag" type:"list"`

    // A description for the copied DB parameter group.
    //
    // TargetDBParameterGroupDescription is a required field
    TargetDBParameterGroupDescription *string `type:"string" required:"true"`

    // The identifier for the copied DB parameter group.
    //
    // Constraints:
    //
    //    * Can't be null, empty, or blank
    //
    //    * Must contain from 1 to 255 letters, numbers, or hyphens
    //
    //    * First character must be a letter
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens
    //
    // Example: my-db-parameter-group
    //
    // TargetDBParameterGroupIdentifier is a required field
    TargetDBParameterGroupIdentifier *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CopyDBParameterGroupInput) GoString

func (s CopyDBParameterGroupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CopyDBParameterGroupInput) SetSourceDBParameterGroupIdentifier

func (s *CopyDBParameterGroupInput) SetSourceDBParameterGroupIdentifier(v string) *CopyDBParameterGroupInput

SetSourceDBParameterGroupIdentifier sets the SourceDBParameterGroupIdentifier field's value.

func (*CopyDBParameterGroupInput) SetTags

func (s *CopyDBParameterGroupInput) SetTags(v []*Tag) *CopyDBParameterGroupInput

SetTags sets the Tags field's value.

func (*CopyDBParameterGroupInput) SetTargetDBParameterGroupDescription

func (s *CopyDBParameterGroupInput) SetTargetDBParameterGroupDescription(v string) *CopyDBParameterGroupInput

SetTargetDBParameterGroupDescription sets the TargetDBParameterGroupDescription field's value.

func (*CopyDBParameterGroupInput) SetTargetDBParameterGroupIdentifier

func (s *CopyDBParameterGroupInput) SetTargetDBParameterGroupIdentifier(v string) *CopyDBParameterGroupInput

SetTargetDBParameterGroupIdentifier sets the TargetDBParameterGroupIdentifier field's value.

func (CopyDBParameterGroupInput) String

func (s CopyDBParameterGroupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CopyDBParameterGroupInput) Validate

func (s *CopyDBParameterGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CopyDBParameterGroupOutput

type CopyDBParameterGroupOutput struct {

    // Contains the details of an Amazon RDS DB parameter group.
    //
    // This data type is used as a response element in the DescribeDBParameterGroups
    // action.
    DBParameterGroup *DBParameterGroup `type:"structure"`
    // contains filtered or unexported fields
}

func (CopyDBParameterGroupOutput) GoString

func (s CopyDBParameterGroupOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CopyDBParameterGroupOutput) SetDBParameterGroup

func (s *CopyDBParameterGroupOutput) SetDBParameterGroup(v *DBParameterGroup) *CopyDBParameterGroupOutput

SetDBParameterGroup sets the DBParameterGroup field's value.

func (CopyDBParameterGroupOutput) String

func (s CopyDBParameterGroupOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CopyDBSnapshotInput

type CopyDBSnapshotInput struct {

    // Specifies whether to copy the DB option group associated with the source
    // DB snapshot to the target Amazon Web Services account and associate with
    // the target DB snapshot. The associated option group can be copied only with
    // cross-account snapshot copy calls.
    CopyOptionGroup *bool `type:"boolean"`

    // Specifies whether to copy all tags from the source DB snapshot to the target
    // DB snapshot. By default, tags aren't copied.
    CopyTags *bool `type:"boolean"`

    // DestinationRegion is used for presigning the request to a given region.
    DestinationRegion *string `type:"string"`

    // The Amazon Web Services KMS key identifier for an encrypted DB snapshot.
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key.
    //
    // If you copy an encrypted DB snapshot from your Amazon Web Services account,
    // you can specify a value for this parameter to encrypt the copy with a new
    // KMS key. If you don't specify a value for this parameter, then the copy of
    // the DB snapshot is encrypted with the same Amazon Web Services KMS key as
    // the source DB snapshot.
    //
    // If you copy an encrypted DB snapshot that is shared from another Amazon Web
    // Services account, then you must specify a value for this parameter.
    //
    // If you specify this parameter when you copy an unencrypted snapshot, the
    // copy is encrypted.
    //
    // If you copy an encrypted snapshot to a different Amazon Web Services Region,
    // then you must specify an Amazon Web Services KMS key identifier for the destination
    // Amazon Web Services Region. KMS keys are specific to the Amazon Web Services
    // Region that they are created in, and you can't use KMS keys from one Amazon
    // Web Services Region in another Amazon Web Services Region.
    KmsKeyId *string `type:"string"`

    // The name of an option group to associate with the copy of the snapshot.
    //
    // Specify this option if you are copying a snapshot from one Amazon Web Services
    // Region to another, and your DB instance uses a nondefault option group. If
    // your source DB instance uses Transparent Data Encryption for Oracle or Microsoft
    // SQL Server, you must specify this option when copying across Amazon Web Services
    // Regions. For more information, see Option group considerations (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_CopySnapshot.html#USER_CopySnapshot.Options)
    // in the Amazon RDS User Guide.
    OptionGroupName *string `type:"string"`

    // When you are copying a snapshot from one Amazon Web Services GovCloud (US)
    // Region to another, the URL that contains a Signature Version 4 signed request
    // for the CopyDBSnapshot API operation in the source Amazon Web Services Region
    // that contains the source DB snapshot to copy.
    //
    // This setting applies only to Amazon Web Services GovCloud (US) Regions. It's
    // ignored in other Amazon Web Services Regions.
    //
    // You must specify this parameter when you copy an encrypted DB snapshot from
    // another Amazon Web Services Region by using the Amazon RDS API. Don't specify
    // PreSignedUrl when you are copying an encrypted DB snapshot in the same Amazon
    // Web Services Region.
    //
    // The presigned URL must be a valid request for the CopyDBClusterSnapshot API
    // operation that can run in the source Amazon Web Services Region that contains
    // the encrypted DB cluster snapshot to copy. The presigned URL request must
    // contain the following parameter values:
    //
    //    * DestinationRegion - The Amazon Web Services Region that the encrypted
    //    DB snapshot is copied to. This Amazon Web Services Region is the same
    //    one where the CopyDBSnapshot operation is called that contains this presigned
    //    URL. For example, if you copy an encrypted DB snapshot from the us-west-2
    //    Amazon Web Services Region to the us-east-1 Amazon Web Services Region,
    //    then you call the CopyDBSnapshot operation in the us-east-1 Amazon Web
    //    Services Region and provide a presigned URL that contains a call to the
    //    CopyDBSnapshot operation in the us-west-2 Amazon Web Services Region.
    //    For this example, the DestinationRegion in the presigned URL must be set
    //    to the us-east-1 Amazon Web Services Region.
    //
    //    * KmsKeyId - The KMS key identifier for the KMS key to use to encrypt
    //    the copy of the DB snapshot in the destination Amazon Web Services Region.
    //    This is the same identifier for both the CopyDBSnapshot operation that
    //    is called in the destination Amazon Web Services Region, and the operation
    //    contained in the presigned URL.
    //
    //    * SourceDBSnapshotIdentifier - The DB snapshot identifier for the encrypted
    //    snapshot to be copied. This identifier must be in the Amazon Resource
    //    Name (ARN) format for the source Amazon Web Services Region. For example,
    //    if you are copying an encrypted DB snapshot from the us-west-2 Amazon
    //    Web Services Region, then your SourceDBSnapshotIdentifier looks like the
    //    following example: arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20161115.
    //
    // To learn how to generate a Signature Version 4 signed request, see Authenticating
    // Requests: Using Query Parameters (Amazon Web Services Signature Version 4)
    // (https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html)
    // and Signature Version 4 Signing Process (https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html).
    //
    // If you are using an Amazon Web Services SDK tool or the CLI, you can specify
    // SourceRegion (or --source-region for the CLI) instead of specifying PreSignedUrl
    // manually. Specifying SourceRegion autogenerates a presigned URL that is a
    // valid request for the operation that can run in the source Amazon Web Services
    // Region.
    PreSignedUrl *string `type:"string"`

    // The identifier for the source DB snapshot.
    //
    // If the source snapshot is in the same Amazon Web Services Region as the copy,
    // specify a valid DB snapshot identifier. For example, you might specify rds:mysql-instance1-snapshot-20130805.
    //
    // If the source snapshot is in a different Amazon Web Services Region than
    // the copy, specify a valid DB snapshot ARN. For example, you might specify
    // arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20130805.
    //
    // If you are copying from a shared manual DB snapshot, this parameter must
    // be the Amazon Resource Name (ARN) of the shared DB snapshot.
    //
    // If you are copying an encrypted snapshot this parameter must be in the ARN
    // format for the source Amazon Web Services Region.
    //
    // Constraints:
    //
    //    * Must specify a valid system snapshot in the "available" state.
    //
    // Example: rds:mydb-2012-04-02-00-01
    //
    // Example: arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20130805
    //
    // SourceDBSnapshotIdentifier is a required field
    SourceDBSnapshotIdentifier *string `type:"string" required:"true"`

    // SourceRegion is the source region where the resource exists. This is not
    // sent over the wire and is only used for presigning. This value should always
    // have the same region as the source ARN.
    SourceRegion *string `type:"string" ignore:"true"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    Tags []*Tag `locationNameList:"Tag" type:"list"`

    // The external custom Availability Zone (CAZ) identifier for the target CAZ.
    //
    // Example: rds-caz-aiqhTgQv.
    TargetCustomAvailabilityZone *string `type:"string"`

    // The identifier for the copy of the snapshot.
    //
    // Constraints:
    //
    //    * Can't be null, empty, or blank
    //
    //    * Must contain from 1 to 255 letters, numbers, or hyphens
    //
    //    * First character must be a letter
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens
    //
    // Example: my-db-snapshot
    //
    // TargetDBSnapshotIdentifier is a required field
    TargetDBSnapshotIdentifier *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CopyDBSnapshotInput) GoString

func (s CopyDBSnapshotInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CopyDBSnapshotInput) SetCopyOptionGroup

func (s *CopyDBSnapshotInput) SetCopyOptionGroup(v bool) *CopyDBSnapshotInput

SetCopyOptionGroup sets the CopyOptionGroup field's value.

func (*CopyDBSnapshotInput) SetCopyTags

func (s *CopyDBSnapshotInput) SetCopyTags(v bool) *CopyDBSnapshotInput

SetCopyTags sets the CopyTags field's value.

func (*CopyDBSnapshotInput) SetDestinationRegion

func (s *CopyDBSnapshotInput) SetDestinationRegion(v string) *CopyDBSnapshotInput

SetDestinationRegion sets the DestinationRegion field's value.

func (*CopyDBSnapshotInput) SetKmsKeyId

func (s *CopyDBSnapshotInput) SetKmsKeyId(v string) *CopyDBSnapshotInput

SetKmsKeyId sets the KmsKeyId field's value.

func (*CopyDBSnapshotInput) SetOptionGroupName

func (s *CopyDBSnapshotInput) SetOptionGroupName(v string) *CopyDBSnapshotInput

SetOptionGroupName sets the OptionGroupName field's value.

func (*CopyDBSnapshotInput) SetPreSignedUrl

func (s *CopyDBSnapshotInput) SetPreSignedUrl(v string) *CopyDBSnapshotInput

SetPreSignedUrl sets the PreSignedUrl field's value.

func (*CopyDBSnapshotInput) SetSourceDBSnapshotIdentifier

func (s *CopyDBSnapshotInput) SetSourceDBSnapshotIdentifier(v string) *CopyDBSnapshotInput

SetSourceDBSnapshotIdentifier sets the SourceDBSnapshotIdentifier field's value.

func (*CopyDBSnapshotInput) SetSourceRegion

func (s *CopyDBSnapshotInput) SetSourceRegion(v string) *CopyDBSnapshotInput

SetSourceRegion sets the SourceRegion field's value.

func (*CopyDBSnapshotInput) SetTags

func (s *CopyDBSnapshotInput) SetTags(v []*Tag) *CopyDBSnapshotInput

SetTags sets the Tags field's value.

func (*CopyDBSnapshotInput) SetTargetCustomAvailabilityZone

func (s *CopyDBSnapshotInput) SetTargetCustomAvailabilityZone(v string) *CopyDBSnapshotInput

SetTargetCustomAvailabilityZone sets the TargetCustomAvailabilityZone field's value.

func (*CopyDBSnapshotInput) SetTargetDBSnapshotIdentifier

func (s *CopyDBSnapshotInput) SetTargetDBSnapshotIdentifier(v string) *CopyDBSnapshotInput

SetTargetDBSnapshotIdentifier sets the TargetDBSnapshotIdentifier field's value.

func (CopyDBSnapshotInput) String

func (s CopyDBSnapshotInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CopyDBSnapshotInput) Validate

func (s *CopyDBSnapshotInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CopyDBSnapshotOutput

type CopyDBSnapshotOutput struct {

    // Contains the details of an Amazon RDS DB snapshot.
    //
    // This data type is used as a response element in the DescribeDBSnapshots action.
    DBSnapshot *DBSnapshot `type:"structure"`
    // contains filtered or unexported fields
}

func (CopyDBSnapshotOutput) GoString

func (s CopyDBSnapshotOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CopyDBSnapshotOutput) SetDBSnapshot

func (s *CopyDBSnapshotOutput) SetDBSnapshot(v *DBSnapshot) *CopyDBSnapshotOutput

SetDBSnapshot sets the DBSnapshot field's value.

func (CopyDBSnapshotOutput) String

func (s CopyDBSnapshotOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CopyOptionGroupInput

type CopyOptionGroupInput struct {

    // The identifier for the source option group.
    //
    // Constraints:
    //
    //    * Must specify a valid option group.
    //
    // SourceOptionGroupIdentifier is a required field
    SourceOptionGroupIdentifier *string `type:"string" required:"true"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    Tags []*Tag `locationNameList:"Tag" type:"list"`

    // The description for the copied option group.
    //
    // TargetOptionGroupDescription is a required field
    TargetOptionGroupDescription *string `type:"string" required:"true"`

    // The identifier for the copied option group.
    //
    // Constraints:
    //
    //    * Can't be null, empty, or blank
    //
    //    * Must contain from 1 to 255 letters, numbers, or hyphens
    //
    //    * First character must be a letter
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens
    //
    // Example: my-option-group
    //
    // TargetOptionGroupIdentifier is a required field
    TargetOptionGroupIdentifier *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CopyOptionGroupInput) GoString

func (s CopyOptionGroupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CopyOptionGroupInput) SetSourceOptionGroupIdentifier

func (s *CopyOptionGroupInput) SetSourceOptionGroupIdentifier(v string) *CopyOptionGroupInput

SetSourceOptionGroupIdentifier sets the SourceOptionGroupIdentifier field's value.

func (*CopyOptionGroupInput) SetTags

func (s *CopyOptionGroupInput) SetTags(v []*Tag) *CopyOptionGroupInput

SetTags sets the Tags field's value.

func (*CopyOptionGroupInput) SetTargetOptionGroupDescription

func (s *CopyOptionGroupInput) SetTargetOptionGroupDescription(v string) *CopyOptionGroupInput

SetTargetOptionGroupDescription sets the TargetOptionGroupDescription field's value.

func (*CopyOptionGroupInput) SetTargetOptionGroupIdentifier

func (s *CopyOptionGroupInput) SetTargetOptionGroupIdentifier(v string) *CopyOptionGroupInput

SetTargetOptionGroupIdentifier sets the TargetOptionGroupIdentifier field's value.

func (CopyOptionGroupInput) String

func (s CopyOptionGroupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CopyOptionGroupInput) Validate

func (s *CopyOptionGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CopyOptionGroupOutput

type CopyOptionGroupOutput struct {
    OptionGroup *OptionGroup `type:"structure"`
    // contains filtered or unexported fields
}

func (CopyOptionGroupOutput) GoString

func (s CopyOptionGroupOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CopyOptionGroupOutput) SetOptionGroup

func (s *CopyOptionGroupOutput) SetOptionGroup(v *OptionGroup) *CopyOptionGroupOutput

SetOptionGroup sets the OptionGroup field's value.

func (CopyOptionGroupOutput) String

func (s CopyOptionGroupOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CreateBlueGreenDeploymentInput

type CreateBlueGreenDeploymentInput struct {

    // The name of the blue/green deployment.
    //
    // Constraints:
    //
    //    * Can't be the same as an existing blue/green deployment name in the same
    //    account and Amazon Web Services Region.
    //
    // BlueGreenDeploymentName is a required field
    BlueGreenDeploymentName *string `min:"1" type:"string" required:"true"`

    // The Amazon Resource Name (ARN) of the source production database.
    //
    // Specify the database that you want to clone. The blue/green deployment creates
    // this database in the green environment. You can make updates to the database
    // in the green environment, such as an engine version upgrade. When you are
    // ready, you can switch the database in the green environment to be the production
    // database.
    //
    // Source is a required field
    Source *string `min:"1" type:"string" required:"true"`

    // Tags to assign to the blue/green deployment.
    Tags []*Tag `locationNameList:"Tag" type:"list"`

    // The DB cluster parameter group associated with the Aurora DB cluster in the
    // green environment.
    //
    // To test parameter changes, specify a DB cluster parameter group that is different
    // from the one associated with the source DB cluster.
    TargetDBClusterParameterGroupName *string `min:"1" type:"string"`

    // Specify the DB instance class for the databases in the green environment.
    //
    // This parameter only applies to RDS DB instances, because DB instances within
    // an Aurora DB cluster can have multiple different instance classes. If you're
    // creating a blue/green deployment from an Aurora DB cluster, don't specify
    // this parameter. After the green environment is created, you can individually
    // modify the instance classes of the DB instances within the green DB cluster.
    TargetDBInstanceClass *string `min:"5" type:"string"`

    // The DB parameter group associated with the DB instance in the green environment.
    //
    // To test parameter changes, specify a DB parameter group that is different
    // from the one associated with the source DB instance.
    TargetDBParameterGroupName *string `min:"1" type:"string"`

    // The engine version of the database in the green environment.
    //
    // Specify the engine version to upgrade to in the green environment.
    TargetEngineVersion *string `min:"1" type:"string"`

    // Whether to upgrade the storage file system configuration on the green database.
    // This option migrates the green DB instance from the older 32-bit file system
    // to the preferred configuration. For more information, see Upgrading the storage
    // file system for a DB instance (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.UpgradeFileSystem).
    UpgradeTargetStorageConfig *bool `type:"boolean"`
    // contains filtered or unexported fields
}

func (CreateBlueGreenDeploymentInput) GoString

func (s CreateBlueGreenDeploymentInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateBlueGreenDeploymentInput) SetBlueGreenDeploymentName

func (s *CreateBlueGreenDeploymentInput) SetBlueGreenDeploymentName(v string) *CreateBlueGreenDeploymentInput

SetBlueGreenDeploymentName sets the BlueGreenDeploymentName field's value.

func (*CreateBlueGreenDeploymentInput) SetSource

func (s *CreateBlueGreenDeploymentInput) SetSource(v string) *CreateBlueGreenDeploymentInput

SetSource sets the Source field's value.

func (*CreateBlueGreenDeploymentInput) SetTags

func (s *CreateBlueGreenDeploymentInput) SetTags(v []*Tag) *CreateBlueGreenDeploymentInput

SetTags sets the Tags field's value.

func (*CreateBlueGreenDeploymentInput) SetTargetDBClusterParameterGroupName

func (s *CreateBlueGreenDeploymentInput) SetTargetDBClusterParameterGroupName(v string) *CreateBlueGreenDeploymentInput

SetTargetDBClusterParameterGroupName sets the TargetDBClusterParameterGroupName field's value.

func (*CreateBlueGreenDeploymentInput) SetTargetDBInstanceClass

func (s *CreateBlueGreenDeploymentInput) SetTargetDBInstanceClass(v string) *CreateBlueGreenDeploymentInput

SetTargetDBInstanceClass sets the TargetDBInstanceClass field's value.

func (*CreateBlueGreenDeploymentInput) SetTargetDBParameterGroupName

func (s *CreateBlueGreenDeploymentInput) SetTargetDBParameterGroupName(v string) *CreateBlueGreenDeploymentInput

SetTargetDBParameterGroupName sets the TargetDBParameterGroupName field's value.

func (*CreateBlueGreenDeploymentInput) SetTargetEngineVersion

func (s *CreateBlueGreenDeploymentInput) SetTargetEngineVersion(v string) *CreateBlueGreenDeploymentInput

SetTargetEngineVersion sets the TargetEngineVersion field's value.

func (*CreateBlueGreenDeploymentInput) SetUpgradeTargetStorageConfig

func (s *CreateBlueGreenDeploymentInput) SetUpgradeTargetStorageConfig(v bool) *CreateBlueGreenDeploymentInput

SetUpgradeTargetStorageConfig sets the UpgradeTargetStorageConfig field's value.

func (CreateBlueGreenDeploymentInput) String

func (s CreateBlueGreenDeploymentInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateBlueGreenDeploymentInput) Validate

func (s *CreateBlueGreenDeploymentInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateBlueGreenDeploymentOutput

type CreateBlueGreenDeploymentOutput struct {

    // Details about a blue/green deployment.
    //
    // For more information, see Using Amazon RDS Blue/Green Deployments for database
    // updates (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html)
    // in the Amazon RDS User Guide and Using Amazon RDS Blue/Green Deployments
    // for database updates (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html)
    // in the Amazon Aurora User Guide.
    BlueGreenDeployment *BlueGreenDeployment `type:"structure"`
    // contains filtered or unexported fields
}

func (CreateBlueGreenDeploymentOutput) GoString

func (s CreateBlueGreenDeploymentOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateBlueGreenDeploymentOutput) SetBlueGreenDeployment

func (s *CreateBlueGreenDeploymentOutput) SetBlueGreenDeployment(v *BlueGreenDeployment) *CreateBlueGreenDeploymentOutput

SetBlueGreenDeployment sets the BlueGreenDeployment field's value.

func (CreateBlueGreenDeploymentOutput) String

func (s CreateBlueGreenDeploymentOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CreateCustomDBEngineVersionInput

type CreateCustomDBEngineVersionInput struct {

    // The name of an Amazon S3 bucket that contains database installation files
    // for your CEV. For example, a valid bucket name is my-custom-installation-files.
    DatabaseInstallationFilesS3BucketName *string `min:"3" type:"string"`

    // The Amazon S3 directory that contains the database installation files for
    // your CEV. For example, a valid bucket name is 123456789012/cev1. If this
    // setting isn't specified, no prefix is assumed.
    DatabaseInstallationFilesS3Prefix *string `min:"1" type:"string"`

    // An optional description of your CEV.
    Description *string `min:"1" type:"string"`

    // The database engine to use for your custom engine version (CEV). The only
    // supported value is custom-oracle-ee.
    //
    // Engine is a required field
    Engine *string `min:"1" type:"string" required:"true"`

    // The name of your CEV. The name format is 19.customized_string. For example,
    // a valid CEV name is 19.my_cev1. This setting is required for RDS Custom for
    // Oracle, but optional for Amazon RDS. The combination of Engine and EngineVersion
    // is unique per customer per Region.
    //
    // EngineVersion is a required field
    EngineVersion *string `min:"1" type:"string" required:"true"`

    // The ID of the Amazon Machine Image (AMI). For RDS Custom for SQL Server,
    // an AMI ID is required to create a CEV. For RDS Custom for Oracle, the default
    // is the most recent AMI available, but you can specify an AMI ID that was
    // used in a different Oracle CEV. Find the AMIs used by your CEVs by calling
    // the DescribeDBEngineVersions (https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBEngineVersions.html)
    // operation.
    ImageId *string `min:"1" type:"string"`

    // The Amazon Web Services KMS key identifier for an encrypted CEV. A symmetric
    // encryption KMS key is required for RDS Custom, but optional for Amazon RDS.
    //
    // If you have an existing symmetric encryption KMS key in your account, you
    // can use it with RDS Custom. No further action is necessary. If you don't
    // already have a symmetric encryption KMS key in your account, follow the instructions
    // in Creating a symmetric encryption KMS key (https://docs.aws.amazon.com/kms/latest/developerguide/create-keys.html#create-symmetric-cmk)
    // in the Amazon Web Services Key Management Service Developer Guide.
    //
    // You can choose the same symmetric encryption key when you create a CEV and
    // a DB instance, or choose different keys.
    KMSKeyId *string `min:"1" type:"string"`

    // The CEV manifest, which is a JSON document that describes the installation
    // .zip files stored in Amazon S3. Specify the name/value pairs in a file or
    // a quoted string. RDS Custom applies the patches in the order in which they
    // are listed.
    //
    // The following JSON fields are valid:
    //
    // MediaImportTemplateVersion
    //
    // Version of the CEV manifest. The date is in the format YYYY-MM-DD.
    //
    // databaseInstallationFileNames
    //
    // Ordered list of installation files for the CEV.
    //
    // opatchFileNames
    //
    // Ordered list of OPatch installers used for the Oracle DB engine.
    //
    // psuRuPatchFileNames
    //
    // The PSU and RU patches for this CEV.
    //
    // OtherPatchFileNames
    //
    // The patches that are not in the list of PSU and RU patches. Amazon RDS applies
    // these patches after applying the PSU and RU patches.
    //
    // For more information, see Creating the CEV manifest (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.preparing.manifest)
    // in the Amazon RDS User Guide.
    Manifest *string `min:"1" type:"string"`

    // The ARN of a CEV to use as a source for creating a new CEV. You can specify
    // a different Amazon Machine Imagine (AMI) by using either Source or UseAwsProvidedLatestImage.
    // You can't specify a different JSON manifest when you specify SourceCustomDbEngineVersionIdentifier.
    SourceCustomDbEngineVersionIdentifier *string `min:"1" type:"string"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    Tags []*Tag `locationNameList:"Tag" type:"list"`

    // Specifies whether to use the latest service-provided Amazon Machine Image
    // (AMI) for the CEV. If you specify UseAwsProvidedLatestImage, you can't also
    // specify ImageId.
    UseAwsProvidedLatestImage *bool `type:"boolean"`
    // contains filtered or unexported fields
}

func (CreateCustomDBEngineVersionInput) GoString

func (s CreateCustomDBEngineVersionInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateCustomDBEngineVersionInput) SetDatabaseInstallationFilesS3BucketName

func (s *CreateCustomDBEngineVersionInput) SetDatabaseInstallationFilesS3BucketName(v string) *CreateCustomDBEngineVersionInput

SetDatabaseInstallationFilesS3BucketName sets the DatabaseInstallationFilesS3BucketName field's value.

func (*CreateCustomDBEngineVersionInput) SetDatabaseInstallationFilesS3Prefix

func (s *CreateCustomDBEngineVersionInput) SetDatabaseInstallationFilesS3Prefix(v string) *CreateCustomDBEngineVersionInput

SetDatabaseInstallationFilesS3Prefix sets the DatabaseInstallationFilesS3Prefix field's value.

func (*CreateCustomDBEngineVersionInput) SetDescription

func (s *CreateCustomDBEngineVersionInput) SetDescription(v string) *CreateCustomDBEngineVersionInput

SetDescription sets the Description field's value.

func (*CreateCustomDBEngineVersionInput) SetEngine

func (s *CreateCustomDBEngineVersionInput) SetEngine(v string) *CreateCustomDBEngineVersionInput

SetEngine sets the Engine field's value.

func (*CreateCustomDBEngineVersionInput) SetEngineVersion

func (s *CreateCustomDBEngineVersionInput) SetEngineVersion(v string) *CreateCustomDBEngineVersionInput

SetEngineVersion sets the EngineVersion field's value.

func (*CreateCustomDBEngineVersionInput) SetImageId

func (s *CreateCustomDBEngineVersionInput) SetImageId(v string) *CreateCustomDBEngineVersionInput

SetImageId sets the ImageId field's value.

func (*CreateCustomDBEngineVersionInput) SetKMSKeyId

func (s *CreateCustomDBEngineVersionInput) SetKMSKeyId(v string) *CreateCustomDBEngineVersionInput

SetKMSKeyId sets the KMSKeyId field's value.

func (*CreateCustomDBEngineVersionInput) SetManifest

func (s *CreateCustomDBEngineVersionInput) SetManifest(v string) *CreateCustomDBEngineVersionInput

SetManifest sets the Manifest field's value.

func (*CreateCustomDBEngineVersionInput) SetSourceCustomDbEngineVersionIdentifier

func (s *CreateCustomDBEngineVersionInput) SetSourceCustomDbEngineVersionIdentifier(v string) *CreateCustomDBEngineVersionInput

SetSourceCustomDbEngineVersionIdentifier sets the SourceCustomDbEngineVersionIdentifier field's value.

func (*CreateCustomDBEngineVersionInput) SetTags

func (s *CreateCustomDBEngineVersionInput) SetTags(v []*Tag) *CreateCustomDBEngineVersionInput

SetTags sets the Tags field's value.

func (*CreateCustomDBEngineVersionInput) SetUseAwsProvidedLatestImage

func (s *CreateCustomDBEngineVersionInput) SetUseAwsProvidedLatestImage(v bool) *CreateCustomDBEngineVersionInput

SetUseAwsProvidedLatestImage sets the UseAwsProvidedLatestImage field's value.

func (CreateCustomDBEngineVersionInput) String

func (s CreateCustomDBEngineVersionInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateCustomDBEngineVersionInput) Validate

func (s *CreateCustomDBEngineVersionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateCustomDBEngineVersionOutput

type CreateCustomDBEngineVersionOutput struct {

    // The creation time of the DB engine version.
    CreateTime *time.Time `type:"timestamp"`

    // JSON string that lists the installation files and parameters that RDS Custom
    // uses to create a custom engine version (CEV). RDS Custom applies the patches
    // in the order in which they're listed in the manifest. You can set the Oracle
    // home, Oracle base, and UNIX/Linux user and group using the installation parameters.
    // For more information, see JSON fields in the CEV manifest (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.preparing.html#custom-cev.preparing.manifest.fields)
    // in the Amazon RDS User Guide.
    CustomDBEngineVersionManifest *string `min:"1" type:"string"`

    // The description of the database engine.
    DBEngineDescription *string `type:"string"`

    // A value that indicates the source media provider of the AMI based on the
    // usage operation. Applicable for RDS Custom for SQL Server.
    DBEngineMediaType *string `type:"string"`

    // The ARN of the custom engine version.
    DBEngineVersionArn *string `type:"string"`

    // The description of the database engine version.
    DBEngineVersionDescription *string `type:"string"`

    // The name of the DB parameter group family for the database engine.
    DBParameterGroupFamily *string `type:"string"`

    // The name of the Amazon S3 bucket that contains your database installation
    // files.
    DatabaseInstallationFilesS3BucketName *string `type:"string"`

    // The Amazon S3 directory that contains the database installation files. If
    // not specified, then no prefix is assumed.
    DatabaseInstallationFilesS3Prefix *string `type:"string"`

    // The default character set for new instances of this engine version, if the
    // CharacterSetName parameter of the CreateDBInstance API isn't specified.
    DefaultCharacterSet *CharacterSet `type:"structure"`

    // The name of the database engine.
    Engine *string `type:"string"`

    // The version number of the database engine.
    EngineVersion *string `type:"string"`

    // The types of logs that the database engine has available for export to CloudWatch
    // Logs.
    ExportableLogTypes []*string `type:"list"`

    // The EC2 image
    Image *CustomDBEngineVersionAMI `type:"structure"`

    // The Amazon Web Services KMS key identifier for an encrypted CEV. This parameter
    // is required for RDS Custom, but optional for Amazon RDS.
    KMSKeyId *string `type:"string"`

    // The major engine version of the CEV.
    MajorEngineVersion *string `type:"string"`

    // The status of the DB engine version, either available or deprecated.
    Status *string `type:"string"`

    // A list of the supported CA certificate identifiers.
    //
    // For more information, see Using SSL/TLS to encrypt a connection to a DB instance
    // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html)
    // in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to
    // a DB cluster (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html)
    // in the Amazon Aurora User Guide.
    SupportedCACertificateIdentifiers []*string `type:"list"`

    // A list of the character sets supported by this engine for the CharacterSetName
    // parameter of the CreateDBInstance operation.
    SupportedCharacterSets []*CharacterSet `locationNameList:"CharacterSet" type:"list"`

    // A list of the supported DB engine modes.
    SupportedEngineModes []*string `type:"list"`

    // A list of features supported by the DB engine.
    //
    // The supported features vary by DB engine and DB engine version.
    //
    // To determine the supported features for a specific DB engine and DB engine
    // version using the CLI, use the following command:
    //
    // aws rds describe-db-engine-versions --engine <engine_name> --engine-version
    // <engine_version>
    //
    // For example, to determine the supported features for RDS for PostgreSQL version
    // 13.3 using the CLI, use the following command:
    //
    // aws rds describe-db-engine-versions --engine postgres --engine-version 13.3
    //
    // The supported features are listed under SupportedFeatureNames in the output.
    SupportedFeatureNames []*string `type:"list"`

    // A list of the character sets supported by the Oracle DB engine for the NcharCharacterSetName
    // parameter of the CreateDBInstance operation.
    SupportedNcharCharacterSets []*CharacterSet `locationNameList:"CharacterSet" type:"list"`

    // A list of the time zones supported by this engine for the Timezone parameter
    // of the CreateDBInstance action.
    SupportedTimezones []*Timezone `locationNameList:"Timezone" type:"list"`

    // Indicates whether the engine version supports Babelfish for Aurora PostgreSQL.
    SupportsBabelfish *bool `type:"boolean"`

    // Indicates whether the engine version supports rotating the server certificate
    // without rebooting the DB instance.
    SupportsCertificateRotationWithoutRestart *bool `type:"boolean"`

    // Indicates whether you can use Aurora global databases with a specific DB
    // engine version.
    SupportsGlobalDatabases *bool `type:"boolean"`

    // Indicates whether the DB engine version supports zero-ETL integrations with
    // Amazon Redshift.
    SupportsIntegrations *bool `type:"boolean"`

    // Indicates whether the DB engine version supports forwarding write operations
    // from reader DB instances to the writer DB instance in the DB cluster. By
    // default, write operations aren't allowed on reader DB instances.
    //
    // Valid for: Aurora DB clusters only
    SupportsLocalWriteForwarding *bool `type:"boolean"`

    // Indicates whether the engine version supports exporting the log types specified
    // by ExportableLogTypes to CloudWatch Logs.
    SupportsLogExportsToCloudwatchLogs *bool `type:"boolean"`

    // Indicates whether you can use Aurora parallel query with a specific DB engine
    // version.
    SupportsParallelQuery *bool `type:"boolean"`

    // Indicates whether the database engine version supports read replicas.
    SupportsReadReplica *bool `type:"boolean"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    TagList []*Tag `locationNameList:"Tag" type:"list"`

    // A list of engine versions that this database engine version can be upgraded
    // to.
    ValidUpgradeTarget []*UpgradeTarget `locationNameList:"UpgradeTarget" type:"list"`
    // contains filtered or unexported fields
}

This data type is used as a response element in the action DescribeDBEngineVersions.

func (CreateCustomDBEngineVersionOutput) GoString

func (s CreateCustomDBEngineVersionOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateCustomDBEngineVersionOutput) SetCreateTime

func (s *CreateCustomDBEngineVersionOutput) SetCreateTime(v time.Time) *CreateCustomDBEngineVersionOutput

SetCreateTime sets the CreateTime field's value.

func (*CreateCustomDBEngineVersionOutput) SetCustomDBEngineVersionManifest

func (s *CreateCustomDBEngineVersionOutput) SetCustomDBEngineVersionManifest(v string) *CreateCustomDBEngineVersionOutput

SetCustomDBEngineVersionManifest sets the CustomDBEngineVersionManifest field's value.

func (*CreateCustomDBEngineVersionOutput) SetDBEngineDescription

func (s *CreateCustomDBEngineVersionOutput) SetDBEngineDescription(v string) *CreateCustomDBEngineVersionOutput

SetDBEngineDescription sets the DBEngineDescription field's value.

func (*CreateCustomDBEngineVersionOutput) SetDBEngineMediaType

func (s *CreateCustomDBEngineVersionOutput) SetDBEngineMediaType(v string) *CreateCustomDBEngineVersionOutput

SetDBEngineMediaType sets the DBEngineMediaType field's value.

func (*CreateCustomDBEngineVersionOutput) SetDBEngineVersionArn

func (s *CreateCustomDBEngineVersionOutput) SetDBEngineVersionArn(v string) *CreateCustomDBEngineVersionOutput

SetDBEngineVersionArn sets the DBEngineVersionArn field's value.

func (*CreateCustomDBEngineVersionOutput) SetDBEngineVersionDescription

func (s *CreateCustomDBEngineVersionOutput) SetDBEngineVersionDescription(v string) *CreateCustomDBEngineVersionOutput

SetDBEngineVersionDescription sets the DBEngineVersionDescription field's value.

func (*CreateCustomDBEngineVersionOutput) SetDBParameterGroupFamily

func (s *CreateCustomDBEngineVersionOutput) SetDBParameterGroupFamily(v string) *CreateCustomDBEngineVersionOutput

SetDBParameterGroupFamily sets the DBParameterGroupFamily field's value.

func (*CreateCustomDBEngineVersionOutput) SetDatabaseInstallationFilesS3BucketName

func (s *CreateCustomDBEngineVersionOutput) SetDatabaseInstallationFilesS3BucketName(v string) *CreateCustomDBEngineVersionOutput

SetDatabaseInstallationFilesS3BucketName sets the DatabaseInstallationFilesS3BucketName field's value.

func (*CreateCustomDBEngineVersionOutput) SetDatabaseInstallationFilesS3Prefix

func (s *CreateCustomDBEngineVersionOutput) SetDatabaseInstallationFilesS3Prefix(v string) *CreateCustomDBEngineVersionOutput

SetDatabaseInstallationFilesS3Prefix sets the DatabaseInstallationFilesS3Prefix field's value.

func (*CreateCustomDBEngineVersionOutput) SetDefaultCharacterSet

func (s *CreateCustomDBEngineVersionOutput) SetDefaultCharacterSet(v *CharacterSet) *CreateCustomDBEngineVersionOutput

SetDefaultCharacterSet sets the DefaultCharacterSet field's value.

func (*CreateCustomDBEngineVersionOutput) SetEngine

func (s *CreateCustomDBEngineVersionOutput) SetEngine(v string) *CreateCustomDBEngineVersionOutput

SetEngine sets the Engine field's value.

func (*CreateCustomDBEngineVersionOutput) SetEngineVersion

func (s *CreateCustomDBEngineVersionOutput) SetEngineVersion(v string) *CreateCustomDBEngineVersionOutput

SetEngineVersion sets the EngineVersion field's value.

func (*CreateCustomDBEngineVersionOutput) SetExportableLogTypes

func (s *CreateCustomDBEngineVersionOutput) SetExportableLogTypes(v []*string) *CreateCustomDBEngineVersionOutput

SetExportableLogTypes sets the ExportableLogTypes field's value.

func (*CreateCustomDBEngineVersionOutput) SetImage

func (s *CreateCustomDBEngineVersionOutput) SetImage(v *CustomDBEngineVersionAMI) *CreateCustomDBEngineVersionOutput

SetImage sets the Image field's value.

func (*CreateCustomDBEngineVersionOutput) SetKMSKeyId

func (s *CreateCustomDBEngineVersionOutput) SetKMSKeyId(v string) *CreateCustomDBEngineVersionOutput

SetKMSKeyId sets the KMSKeyId field's value.

func (*CreateCustomDBEngineVersionOutput) SetMajorEngineVersion

func (s *CreateCustomDBEngineVersionOutput) SetMajorEngineVersion(v string) *CreateCustomDBEngineVersionOutput

SetMajorEngineVersion sets the MajorEngineVersion field's value.

func (*CreateCustomDBEngineVersionOutput) SetStatus

func (s *CreateCustomDBEngineVersionOutput) SetStatus(v string) *CreateCustomDBEngineVersionOutput

SetStatus sets the Status field's value.

func (*CreateCustomDBEngineVersionOutput) SetSupportedCACertificateIdentifiers

func (s *CreateCustomDBEngineVersionOutput) SetSupportedCACertificateIdentifiers(v []*string) *CreateCustomDBEngineVersionOutput

SetSupportedCACertificateIdentifiers sets the SupportedCACertificateIdentifiers field's value.

func (*CreateCustomDBEngineVersionOutput) SetSupportedCharacterSets

func (s *CreateCustomDBEngineVersionOutput) SetSupportedCharacterSets(v []*CharacterSet) *CreateCustomDBEngineVersionOutput

SetSupportedCharacterSets sets the SupportedCharacterSets field's value.

func (*CreateCustomDBEngineVersionOutput) SetSupportedEngineModes

func (s *CreateCustomDBEngineVersionOutput) SetSupportedEngineModes(v []*string) *CreateCustomDBEngineVersionOutput

SetSupportedEngineModes sets the SupportedEngineModes field's value.

func (*CreateCustomDBEngineVersionOutput) SetSupportedFeatureNames

func (s *CreateCustomDBEngineVersionOutput) SetSupportedFeatureNames(v []*string) *CreateCustomDBEngineVersionOutput

SetSupportedFeatureNames sets the SupportedFeatureNames field's value.

func (*CreateCustomDBEngineVersionOutput) SetSupportedNcharCharacterSets

func (s *CreateCustomDBEngineVersionOutput) SetSupportedNcharCharacterSets(v []*CharacterSet) *CreateCustomDBEngineVersionOutput

SetSupportedNcharCharacterSets sets the SupportedNcharCharacterSets field's value.

func (*CreateCustomDBEngineVersionOutput) SetSupportedTimezones

func (s *CreateCustomDBEngineVersionOutput) SetSupportedTimezones(v []*Timezone) *CreateCustomDBEngineVersionOutput

SetSupportedTimezones sets the SupportedTimezones field's value.

func (*CreateCustomDBEngineVersionOutput) SetSupportsBabelfish

func (s *CreateCustomDBEngineVersionOutput) SetSupportsBabelfish(v bool) *CreateCustomDBEngineVersionOutput

SetSupportsBabelfish sets the SupportsBabelfish field's value.

func (*CreateCustomDBEngineVersionOutput) SetSupportsCertificateRotationWithoutRestart

func (s *CreateCustomDBEngineVersionOutput) SetSupportsCertificateRotationWithoutRestart(v bool) *CreateCustomDBEngineVersionOutput

SetSupportsCertificateRotationWithoutRestart sets the SupportsCertificateRotationWithoutRestart field's value.

func (*CreateCustomDBEngineVersionOutput) SetSupportsGlobalDatabases

func (s *CreateCustomDBEngineVersionOutput) SetSupportsGlobalDatabases(v bool) *CreateCustomDBEngineVersionOutput

SetSupportsGlobalDatabases sets the SupportsGlobalDatabases field's value.

func (*CreateCustomDBEngineVersionOutput) SetSupportsIntegrations

func (s *CreateCustomDBEngineVersionOutput) SetSupportsIntegrations(v bool) *CreateCustomDBEngineVersionOutput

SetSupportsIntegrations sets the SupportsIntegrations field's value.

func (*CreateCustomDBEngineVersionOutput) SetSupportsLocalWriteForwarding

func (s *CreateCustomDBEngineVersionOutput) SetSupportsLocalWriteForwarding(v bool) *CreateCustomDBEngineVersionOutput

SetSupportsLocalWriteForwarding sets the SupportsLocalWriteForwarding field's value.

func (*CreateCustomDBEngineVersionOutput) SetSupportsLogExportsToCloudwatchLogs

func (s *CreateCustomDBEngineVersionOutput) SetSupportsLogExportsToCloudwatchLogs(v bool) *CreateCustomDBEngineVersionOutput

SetSupportsLogExportsToCloudwatchLogs sets the SupportsLogExportsToCloudwatchLogs field's value.

func (*CreateCustomDBEngineVersionOutput) SetSupportsParallelQuery

func (s *CreateCustomDBEngineVersionOutput) SetSupportsParallelQuery(v bool) *CreateCustomDBEngineVersionOutput

SetSupportsParallelQuery sets the SupportsParallelQuery field's value.

func (*CreateCustomDBEngineVersionOutput) SetSupportsReadReplica

func (s *CreateCustomDBEngineVersionOutput) SetSupportsReadReplica(v bool) *CreateCustomDBEngineVersionOutput

SetSupportsReadReplica sets the SupportsReadReplica field's value.

func (*CreateCustomDBEngineVersionOutput) SetTagList

func (s *CreateCustomDBEngineVersionOutput) SetTagList(v []*Tag) *CreateCustomDBEngineVersionOutput

SetTagList sets the TagList field's value.

func (*CreateCustomDBEngineVersionOutput) SetValidUpgradeTarget

func (s *CreateCustomDBEngineVersionOutput) SetValidUpgradeTarget(v []*UpgradeTarget) *CreateCustomDBEngineVersionOutput

SetValidUpgradeTarget sets the ValidUpgradeTarget field's value.

func (CreateCustomDBEngineVersionOutput) String

func (s CreateCustomDBEngineVersionOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CreateDBClusterEndpointInput

type CreateDBClusterEndpointInput struct {

    // The identifier to use for the new endpoint. This parameter is stored as a
    // lowercase string.
    //
    // DBClusterEndpointIdentifier is a required field
    DBClusterEndpointIdentifier *string `type:"string" required:"true"`

    // The DB cluster identifier of the DB cluster associated with the endpoint.
    // This parameter is stored as a lowercase string.
    //
    // DBClusterIdentifier is a required field
    DBClusterIdentifier *string `type:"string" required:"true"`

    // The type of the endpoint, one of: READER, WRITER, ANY.
    //
    // EndpointType is a required field
    EndpointType *string `type:"string" required:"true"`

    // List of DB instance identifiers that aren't part of the custom endpoint group.
    // All other eligible instances are reachable through the custom endpoint. This
    // parameter is relevant only if the list of static members is empty.
    ExcludedMembers []*string `type:"list"`

    // List of DB instance identifiers that are part of the custom endpoint group.
    StaticMembers []*string `type:"list"`

    // The tags to be assigned to the Amazon RDS resource.
    Tags []*Tag `locationNameList:"Tag" type:"list"`
    // contains filtered or unexported fields
}

func (CreateDBClusterEndpointInput) GoString

func (s CreateDBClusterEndpointInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBClusterEndpointInput) SetDBClusterEndpointIdentifier

func (s *CreateDBClusterEndpointInput) SetDBClusterEndpointIdentifier(v string) *CreateDBClusterEndpointInput

SetDBClusterEndpointIdentifier sets the DBClusterEndpointIdentifier field's value.

func (*CreateDBClusterEndpointInput) SetDBClusterIdentifier

func (s *CreateDBClusterEndpointInput) SetDBClusterIdentifier(v string) *CreateDBClusterEndpointInput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*CreateDBClusterEndpointInput) SetEndpointType

func (s *CreateDBClusterEndpointInput) SetEndpointType(v string) *CreateDBClusterEndpointInput

SetEndpointType sets the EndpointType field's value.

func (*CreateDBClusterEndpointInput) SetExcludedMembers

func (s *CreateDBClusterEndpointInput) SetExcludedMembers(v []*string) *CreateDBClusterEndpointInput

SetExcludedMembers sets the ExcludedMembers field's value.

func (*CreateDBClusterEndpointInput) SetStaticMembers

func (s *CreateDBClusterEndpointInput) SetStaticMembers(v []*string) *CreateDBClusterEndpointInput

SetStaticMembers sets the StaticMembers field's value.

func (*CreateDBClusterEndpointInput) SetTags

func (s *CreateDBClusterEndpointInput) SetTags(v []*Tag) *CreateDBClusterEndpointInput

SetTags sets the Tags field's value.

func (CreateDBClusterEndpointInput) String

func (s CreateDBClusterEndpointInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBClusterEndpointInput) Validate

func (s *CreateDBClusterEndpointInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateDBClusterEndpointOutput

type CreateDBClusterEndpointOutput struct {

    // The type associated with a custom endpoint. One of: READER, WRITER, ANY.
    CustomEndpointType *string `type:"string"`

    // The Amazon Resource Name (ARN) for the endpoint.
    DBClusterEndpointArn *string `type:"string"`

    // The identifier associated with the endpoint. This parameter is stored as
    // a lowercase string.
    DBClusterEndpointIdentifier *string `type:"string"`

    // A unique system-generated identifier for an endpoint. It remains the same
    // for the whole life of the endpoint.
    DBClusterEndpointResourceIdentifier *string `type:"string"`

    // The DB cluster identifier of the DB cluster associated with the endpoint.
    // This parameter is stored as a lowercase string.
    DBClusterIdentifier *string `type:"string"`

    // The DNS address of the endpoint.
    Endpoint *string `type:"string"`

    // The type of the endpoint. One of: READER, WRITER, CUSTOM.
    EndpointType *string `type:"string"`

    // List of DB instance identifiers that aren't part of the custom endpoint group.
    // All other eligible instances are reachable through the custom endpoint. Only
    // relevant if the list of static members is empty.
    ExcludedMembers []*string `type:"list"`

    // List of DB instance identifiers that are part of the custom endpoint group.
    StaticMembers []*string `type:"list"`

    // The current status of the endpoint. One of: creating, available, deleting,
    // inactive, modifying. The inactive state applies to an endpoint that can't
    // be used for a certain kind of cluster, such as a writer endpoint for a read-only
    // secondary cluster in a global database.
    Status *string `type:"string"`
    // contains filtered or unexported fields
}

This data type represents the information you need to connect to an Amazon Aurora DB cluster. This data type is used as a response element in the following actions:

  • CreateDBClusterEndpoint

  • DescribeDBClusterEndpoints

  • ModifyDBClusterEndpoint

  • DeleteDBClusterEndpoint

For the data structure that represents Amazon RDS DB instance endpoints, see Endpoint.

func (CreateDBClusterEndpointOutput) GoString

func (s CreateDBClusterEndpointOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBClusterEndpointOutput) SetCustomEndpointType

func (s *CreateDBClusterEndpointOutput) SetCustomEndpointType(v string) *CreateDBClusterEndpointOutput

SetCustomEndpointType sets the CustomEndpointType field's value.

func (*CreateDBClusterEndpointOutput) SetDBClusterEndpointArn

func (s *CreateDBClusterEndpointOutput) SetDBClusterEndpointArn(v string) *CreateDBClusterEndpointOutput

SetDBClusterEndpointArn sets the DBClusterEndpointArn field's value.

func (*CreateDBClusterEndpointOutput) SetDBClusterEndpointIdentifier

func (s *CreateDBClusterEndpointOutput) SetDBClusterEndpointIdentifier(v string) *CreateDBClusterEndpointOutput

SetDBClusterEndpointIdentifier sets the DBClusterEndpointIdentifier field's value.

func (*CreateDBClusterEndpointOutput) SetDBClusterEndpointResourceIdentifier

func (s *CreateDBClusterEndpointOutput) SetDBClusterEndpointResourceIdentifier(v string) *CreateDBClusterEndpointOutput

SetDBClusterEndpointResourceIdentifier sets the DBClusterEndpointResourceIdentifier field's value.

func (*CreateDBClusterEndpointOutput) SetDBClusterIdentifier

func (s *CreateDBClusterEndpointOutput) SetDBClusterIdentifier(v string) *CreateDBClusterEndpointOutput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*CreateDBClusterEndpointOutput) SetEndpoint

func (s *CreateDBClusterEndpointOutput) SetEndpoint(v string) *CreateDBClusterEndpointOutput

SetEndpoint sets the Endpoint field's value.

func (*CreateDBClusterEndpointOutput) SetEndpointType

func (s *CreateDBClusterEndpointOutput) SetEndpointType(v string) *CreateDBClusterEndpointOutput

SetEndpointType sets the EndpointType field's value.

func (*CreateDBClusterEndpointOutput) SetExcludedMembers

func (s *CreateDBClusterEndpointOutput) SetExcludedMembers(v []*string) *CreateDBClusterEndpointOutput

SetExcludedMembers sets the ExcludedMembers field's value.

func (*CreateDBClusterEndpointOutput) SetStaticMembers

func (s *CreateDBClusterEndpointOutput) SetStaticMembers(v []*string) *CreateDBClusterEndpointOutput

SetStaticMembers sets the StaticMembers field's value.

func (*CreateDBClusterEndpointOutput) SetStatus

func (s *CreateDBClusterEndpointOutput) SetStatus(v string) *CreateDBClusterEndpointOutput

SetStatus sets the Status field's value.

func (CreateDBClusterEndpointOutput) String

func (s CreateDBClusterEndpointOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CreateDBClusterInput

type CreateDBClusterInput struct {

    // The amount of storage in gibibytes (GiB) to allocate to each DB instance
    // in the Multi-AZ DB cluster.
    //
    // Valid for Cluster Type: Multi-AZ DB clusters only
    //
    // This setting is required to create a Multi-AZ DB cluster.
    AllocatedStorage *int64 `type:"integer"`

    // Specifies whether minor engine upgrades are applied automatically to the
    // DB cluster during the maintenance window. By default, minor engine upgrades
    // are applied automatically.
    //
    // Valid for Cluster Type: Multi-AZ DB clusters only
    AutoMinorVersionUpgrade *bool `type:"boolean"`

    // A list of Availability Zones (AZs) where DB instances in the DB cluster can
    // be created.
    //
    // For information on Amazon Web Services Regions and Availability Zones, see
    // Choosing the Regions and Availability Zones (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.RegionsAndAvailabilityZones.html)
    // in the Amazon Aurora User Guide.
    //
    // Valid for Cluster Type: Aurora DB clusters only
    AvailabilityZones []*string `locationNameList:"AvailabilityZone" type:"list"`

    // The target backtrack window, in seconds. To disable backtracking, set this
    // value to 0.
    //
    // Valid for Cluster Type: Aurora MySQL DB clusters only
    //
    // Default: 0
    //
    // Constraints:
    //
    //    * If specified, this value must be set to a number from 0 to 259,200 (72
    //    hours).
    BacktrackWindow *int64 `type:"long"`

    // The number of days for which automated backups are retained.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    //
    // Default: 1
    //
    // Constraints:
    //
    //    * Must be a value from 1 to 35.
    BackupRetentionPeriod *int64 `type:"integer"`

    // The CA certificate identifier to use for the DB cluster's server certificate.
    //
    // For more information, see Using SSL/TLS to encrypt a connection to a DB instance
    // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html)
    // in the Amazon RDS User Guide.
    //
    // Valid for Cluster Type: Multi-AZ DB clusters
    CACertificateIdentifier *string `type:"string"`

    // The name of the character set (CharacterSet) to associate the DB cluster
    // with.
    //
    // Valid for Cluster Type: Aurora DB clusters only
    CharacterSetName *string `type:"string"`

    // Specifies whether to copy all tags from the DB cluster to snapshots of the
    // DB cluster. The default is not to copy them.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    CopyTagsToSnapshot *bool `type:"boolean"`

    // The identifier for this DB cluster. This parameter is stored as a lowercase
    // string.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    //
    // Constraints:
    //
    //    * Must contain from 1 to 63 (for Aurora DB clusters) or 1 to 52 (for Multi-AZ
    //    DB clusters) letters, numbers, or hyphens.
    //
    //    * First character must be a letter.
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens.
    //
    // Example: my-cluster1
    //
    // DBClusterIdentifier is a required field
    DBClusterIdentifier *string `type:"string" required:"true"`

    // The compute and memory capacity of each DB instance in the Multi-AZ DB cluster,
    // for example db.m6gd.xlarge. Not all DB instance classes are available in
    // all Amazon Web Services Regions, or for all database engines.
    //
    // For the full list of DB instance classes and availability for your engine,
    // see DB instance class (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html)
    // in the Amazon RDS User Guide.
    //
    // This setting is required to create a Multi-AZ DB cluster.
    //
    // Valid for Cluster Type: Multi-AZ DB clusters only
    DBClusterInstanceClass *string `type:"string"`

    // The name of the DB cluster parameter group to associate with this DB cluster.
    // If you don't specify a value, then the default DB cluster parameter group
    // for the specified DB engine and version is used.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    //
    // Constraints:
    //
    //    * If supplied, must match the name of an existing DB cluster parameter
    //    group.
    DBClusterParameterGroupName *string `type:"string"`

    // A DB subnet group to associate with this DB cluster.
    //
    // This setting is required to create a Multi-AZ DB cluster.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    //
    // Constraints:
    //
    //    * Must match the name of an existing DB subnet group.
    //
    //    * Must not be default.
    //
    // Example: mydbsubnetgroup
    DBSubnetGroupName *string `type:"string"`

    // Reserved for future use.
    DBSystemId *string `type:"string"`

    // The name for your database of up to 64 alphanumeric characters. If you don't
    // provide a name, Amazon RDS doesn't create a database in the DB cluster you
    // are creating.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    DatabaseName *string `type:"string"`

    // Specifies whether the DB cluster has deletion protection enabled. The database
    // can't be deleted when deletion protection is enabled. By default, deletion
    // protection isn't enabled.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    DeletionProtection *bool `type:"boolean"`

    // DestinationRegion is used for presigning the request to a given region.
    DestinationRegion *string `type:"string"`

    // The Active Directory directory ID to create the DB cluster in.
    //
    // For Amazon Aurora DB clusters, Amazon RDS can use Kerberos authentication
    // to authenticate users that connect to the DB cluster.
    //
    // For more information, see Kerberos authentication (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/kerberos-authentication.html)
    // in the Amazon Aurora User Guide.
    //
    // Valid for Cluster Type: Aurora DB clusters only
    Domain *string `type:"string"`

    // The name of the IAM role to use when making API calls to the Directory Service.
    //
    // Valid for Cluster Type: Aurora DB clusters only
    DomainIAMRoleName *string `type:"string"`

    // The list of log types that need to be enabled for exporting to CloudWatch
    // Logs.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    //
    // The following values are valid for each DB engine:
    //
    //    * Aurora MySQL - audit | error | general | slowquery
    //
    //    * Aurora PostgreSQL - postgresql
    //
    //    * RDS for MySQL - error | general | slowquery
    //
    //    * RDS for PostgreSQL - postgresql | upgrade
    //
    // For more information about exporting CloudWatch Logs for Amazon RDS, see
    // Publishing Database Logs to Amazon CloudWatch Logs (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch)
    // in the Amazon RDS User Guide.
    //
    // For more information about exporting CloudWatch Logs for Amazon Aurora, see
    // Publishing Database Logs to Amazon CloudWatch Logs (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch)
    // in the Amazon Aurora User Guide.
    EnableCloudwatchLogsExports []*string `type:"list"`

    // Specifies whether to enable this DB cluster to forward write operations to
    // the primary cluster of a global cluster (Aurora global database). By default,
    // write operations are not allowed on Aurora DB clusters that are secondary
    // clusters in an Aurora global database.
    //
    // You can set this value only on Aurora DB clusters that are members of an
    // Aurora global database. With this parameter enabled, a secondary cluster
    // can forward writes to the current primary cluster, and the resulting changes
    // are replicated back to this cluster. For the primary DB cluster of an Aurora
    // global database, this value is used immediately if the primary is demoted
    // by a global cluster API operation, but it does nothing until then.
    //
    // Valid for Cluster Type: Aurora DB clusters only
    EnableGlobalWriteForwarding *bool `type:"boolean"`

    // Specifies whether to enable the HTTP endpoint for the DB cluster. By default,
    // the HTTP endpoint isn't enabled.
    //
    // When enabled, the HTTP endpoint provides a connectionless web service API
    // (RDS Data API) for running SQL queries on the DB cluster. You can also query
    // your database from inside the RDS console with the RDS query editor.
    //
    // RDS Data API is supported with the following DB clusters:
    //
    //    * Aurora PostgreSQL Serverless v2 and provisioned
    //
    //    * Aurora PostgreSQL and Aurora MySQL Serverless v1
    //
    // For more information, see Using RDS Data API (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html)
    // in the Amazon Aurora User Guide.
    //
    // Valid for Cluster Type: Aurora DB clusters only
    EnableHttpEndpoint *bool `type:"boolean"`

    // Specifies whether to enable mapping of Amazon Web Services Identity and Access
    // Management (IAM) accounts to database accounts. By default, mapping isn't
    // enabled.
    //
    // For more information, see IAM Database Authentication (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html)
    // in the Amazon Aurora User Guide.
    //
    // Valid for Cluster Type: Aurora DB clusters only
    EnableIAMDatabaseAuthentication *bool `type:"boolean"`

    // Specifies whether to enable Aurora Limitless Database. You must enable Aurora
    // Limitless Database to create a DB shard group.
    //
    // Valid for: Aurora DB clusters only
    EnableLimitlessDatabase *bool `type:"boolean"`

    // Specifies whether read replicas can forward write operations to the writer
    // DB instance in the DB cluster. By default, write operations aren't allowed
    // on reader DB instances.
    //
    // Valid for: Aurora DB clusters only
    EnableLocalWriteForwarding *bool `type:"boolean"`

    // Specifies whether to turn on Performance Insights for the DB cluster.
    //
    // For more information, see Using Amazon Performance Insights (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html)
    // in the Amazon RDS User Guide.
    //
    // Valid for Cluster Type: Multi-AZ DB clusters only
    EnablePerformanceInsights *bool `type:"boolean"`

    // The database engine to use for this DB cluster.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    //
    // Valid Values: aurora-mysql | aurora-postgresql | mysql | postgres
    //
    // Engine is a required field
    Engine *string `type:"string" required:"true"`

    // The DB engine mode of the DB cluster, either provisioned or serverless.
    //
    // The serverless engine mode only applies for Aurora Serverless v1 DB clusters.
    //
    // For information about limitations and requirements for Serverless DB clusters,
    // see the following sections in the Amazon Aurora User Guide:
    //
    //    * Limitations of Aurora Serverless v1 (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html#aurora-serverless.limitations)
    //
    //    * Requirements for Aurora Serverless v2 (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.requirements.html)
    //
    // Valid for Cluster Type: Aurora DB clusters only
    EngineMode *string `type:"string"`

    // The version number of the database engine to use.
    //
    // To list all of the available engine versions for Aurora MySQL version 2 (5.7-compatible)
    // and version 3 (MySQL 8.0-compatible), use the following command:
    //
    // aws rds describe-db-engine-versions --engine aurora-mysql --query "DBEngineVersions[].EngineVersion"
    //
    // You can supply either 5.7 or 8.0 to use the default engine version for Aurora
    // MySQL version 2 or version 3, respectively.
    //
    // To list all of the available engine versions for Aurora PostgreSQL, use the
    // following command:
    //
    // aws rds describe-db-engine-versions --engine aurora-postgresql --query "DBEngineVersions[].EngineVersion"
    //
    // To list all of the available engine versions for RDS for MySQL, use the following
    // command:
    //
    // aws rds describe-db-engine-versions --engine mysql --query "DBEngineVersions[].EngineVersion"
    //
    // To list all of the available engine versions for RDS for PostgreSQL, use
    // the following command:
    //
    // aws rds describe-db-engine-versions --engine postgres --query "DBEngineVersions[].EngineVersion"
    //
    // For information about a specific engine, see the following topics:
    //
    //    * Aurora MySQL - see Database engine updates for Amazon Aurora MySQL (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Updates.html)
    //    in the Amazon Aurora User Guide.
    //
    //    * Aurora PostgreSQL - see Amazon Aurora PostgreSQL releases and engine
    //    versions (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Updates.20180305.html)
    //    in the Amazon Aurora User Guide.
    //
    //    * RDS for MySQL - see Amazon RDS for MySQL (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt)
    //    in the Amazon RDS User Guide.
    //
    //    * RDS for PostgreSQL - see Amazon RDS for PostgreSQL (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts)
    //    in the Amazon RDS User Guide.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    EngineVersion *string `type:"string"`

    // The global cluster ID of an Aurora cluster that becomes the primary cluster
    // in the new global database cluster.
    //
    // Valid for Cluster Type: Aurora DB clusters only
    GlobalClusterIdentifier *string `type:"string"`

    // The amount of Provisioned IOPS (input/output operations per second) to be
    // initially allocated for each DB instance in the Multi-AZ DB cluster.
    //
    // For information about valid IOPS values, see Provisioned IOPS storage (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS)
    // in the Amazon RDS User Guide.
    //
    // This setting is required to create a Multi-AZ DB cluster.
    //
    // Valid for Cluster Type: Multi-AZ DB clusters only
    //
    // Constraints:
    //
    //    * Must be a multiple between .5 and 50 of the storage amount for the DB
    //    cluster.
    Iops *int64 `type:"integer"`

    // The Amazon Web Services KMS key identifier for an encrypted DB cluster.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key. To use a KMS key in a different Amazon
    // Web Services account, specify the key ARN or alias ARN.
    //
    // When a KMS key isn't specified in KmsKeyId:
    //
    //    * If ReplicationSourceIdentifier identifies an encrypted source, then
    //    Amazon RDS uses the KMS key used to encrypt the source. Otherwise, Amazon
    //    RDS uses your default KMS key.
    //
    //    * If the StorageEncrypted parameter is enabled and ReplicationSourceIdentifier
    //    isn't specified, then Amazon RDS uses your default KMS key.
    //
    // There is a default KMS key for your Amazon Web Services account. Your Amazon
    // Web Services account has a different default KMS key for each Amazon Web
    // Services Region.
    //
    // If you create a read replica of an encrypted DB cluster in another Amazon
    // Web Services Region, make sure to set KmsKeyId to a KMS key identifier that
    // is valid in the destination Amazon Web Services Region. This KMS key is used
    // to encrypt the read replica in that Amazon Web Services Region.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    KmsKeyId *string `type:"string"`

    // Specifies whether to manage the master user password with Amazon Web Services
    // Secrets Manager.
    //
    // For more information, see Password management with Amazon Web Services Secrets
    // Manager (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html)
    // in the Amazon RDS User Guide and Password management with Amazon Web Services
    // Secrets Manager (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-secrets-manager.html)
    // in the Amazon Aurora User Guide.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    //
    // Constraints:
    //
    //    * Can't manage the master user password with Amazon Web Services Secrets
    //    Manager if MasterUserPassword is specified.
    ManageMasterUserPassword *bool `type:"boolean"`

    // The password for the master database user.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    //
    // Constraints:
    //
    //    * Must contain from 8 to 41 characters.
    //
    //    * Can contain any printable ASCII character except "/", """, or "@".
    //
    //    * Can't be specified if ManageMasterUserPassword is turned on.
    MasterUserPassword *string `type:"string"`

    // The Amazon Web Services KMS key identifier to encrypt a secret that is automatically
    // generated and managed in Amazon Web Services Secrets Manager.
    //
    // This setting is valid only if the master user password is managed by RDS
    // in Amazon Web Services Secrets Manager for the DB cluster.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key. To use a KMS key in a different Amazon
    // Web Services account, specify the key ARN or alias ARN.
    //
    // If you don't specify MasterUserSecretKmsKeyId, then the aws/secretsmanager
    // KMS key is used to encrypt the secret. If the secret is in a different Amazon
    // Web Services account, then you can't use the aws/secretsmanager KMS key to
    // encrypt the secret, and you must use a customer managed KMS key.
    //
    // There is a default KMS key for your Amazon Web Services account. Your Amazon
    // Web Services account has a different default KMS key for each Amazon Web
    // Services Region.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    MasterUserSecretKmsKeyId *string `type:"string"`

    // The name of the master user for the DB cluster.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    //
    // Constraints:
    //
    //    * Must be 1 to 16 letters or numbers.
    //
    //    * First character must be a letter.
    //
    //    * Can't be a reserved word for the chosen database engine.
    MasterUsername *string `type:"string"`

    // The interval, in seconds, between points when Enhanced Monitoring metrics
    // are collected for the DB cluster. To turn off collecting Enhanced Monitoring
    // metrics, specify 0.
    //
    // If MonitoringRoleArn is specified, also set MonitoringInterval to a value
    // other than 0.
    //
    // Valid for Cluster Type: Multi-AZ DB clusters only
    //
    // Valid Values: 0 | 1 | 5 | 10 | 15 | 30 | 60
    //
    // Default: 0
    MonitoringInterval *int64 `type:"integer"`

    // The Amazon Resource Name (ARN) for the IAM role that permits RDS to send
    // Enhanced Monitoring metrics to Amazon CloudWatch Logs. An example is arn:aws:iam:123456789012:role/emaccess.
    // For information on creating a monitoring role, see Setting up and enabling
    // Enhanced Monitoring (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling)
    // in the Amazon RDS User Guide.
    //
    // If MonitoringInterval is set to a value other than 0, supply a MonitoringRoleArn
    // value.
    //
    // Valid for Cluster Type: Multi-AZ DB clusters only
    MonitoringRoleArn *string `type:"string"`

    // The network type of the DB cluster.
    //
    // The network type is determined by the DBSubnetGroup specified for the DB
    // cluster. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and
    // the IPv6 protocols (DUAL).
    //
    // For more information, see Working with a DB instance in a VPC (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html)
    // in the Amazon Aurora User Guide.
    //
    // Valid for Cluster Type: Aurora DB clusters only
    //
    // Valid Values: IPV4 | DUAL
    NetworkType *string `type:"string"`

    // The option group to associate the DB cluster with.
    //
    // DB clusters are associated with a default option group that can't be modified.
    OptionGroupName *string `type:"string"`

    // The Amazon Web Services KMS key identifier for encryption of Performance
    // Insights data.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key.
    //
    // If you don't specify a value for PerformanceInsightsKMSKeyId, then Amazon
    // RDS uses your default KMS key. There is a default KMS key for your Amazon
    // Web Services account. Your Amazon Web Services account has a different default
    // KMS key for each Amazon Web Services Region.
    //
    // Valid for Cluster Type: Multi-AZ DB clusters only
    PerformanceInsightsKMSKeyId *string `type:"string"`

    // The number of days to retain Performance Insights data.
    //
    // Valid for Cluster Type: Multi-AZ DB clusters only
    //
    // Valid Values:
    //
    //    * 7
    //
    //    * month * 31, where month is a number of months from 1-23. Examples: 93
    //    (3 months * 31), 341 (11 months * 31), 589 (19 months * 31)
    //
    //    * 731
    //
    // Default: 7 days
    //
    // If you specify a retention period that isn't valid, such as 94, Amazon RDS
    // issues an error.
    PerformanceInsightsRetentionPeriod *int64 `type:"integer"`

    // The port number on which the instances in the DB cluster accept connections.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    //
    // Valid Values: 1150-65535
    //
    // Default:
    //
    //    * RDS for MySQL and Aurora MySQL - 3306
    //
    //    * RDS for PostgreSQL and Aurora PostgreSQL - 5432
    Port *int64 `type:"integer"`

    // When you are replicating a DB cluster from one Amazon Web Services GovCloud
    // (US) Region to another, an URL that contains a Signature Version 4 signed
    // request for the CreateDBCluster operation to be called in the source Amazon
    // Web Services Region where the DB cluster is replicated from. Specify PreSignedUrl
    // only when you are performing cross-Region replication from an encrypted DB
    // cluster.
    //
    // The presigned URL must be a valid request for the CreateDBCluster API operation
    // that can run in the source Amazon Web Services Region that contains the encrypted
    // DB cluster to copy.
    //
    // The presigned URL request must contain the following parameter values:
    //
    //    * KmsKeyId - The KMS key identifier for the KMS key to use to encrypt
    //    the copy of the DB cluster in the destination Amazon Web Services Region.
    //    This should refer to the same KMS key for both the CreateDBCluster operation
    //    that is called in the destination Amazon Web Services Region, and the
    //    operation contained in the presigned URL.
    //
    //    * DestinationRegion - The name of the Amazon Web Services Region that
    //    Aurora read replica will be created in.
    //
    //    * ReplicationSourceIdentifier - The DB cluster identifier for the encrypted
    //    DB cluster to be copied. This identifier must be in the Amazon Resource
    //    Name (ARN) format for the source Amazon Web Services Region. For example,
    //    if you are copying an encrypted DB cluster from the us-west-2 Amazon Web
    //    Services Region, then your ReplicationSourceIdentifier would look like
    //    Example: arn:aws:rds:us-west-2:123456789012:cluster:aurora-cluster1.
    //
    // To learn how to generate a Signature Version 4 signed request, see Authenticating
    // Requests: Using Query Parameters (Amazon Web Services Signature Version 4)
    // (https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html)
    // and Signature Version 4 Signing Process (https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html).
    //
    // If you are using an Amazon Web Services SDK tool or the CLI, you can specify
    // SourceRegion (or --source-region for the CLI) instead of specifying PreSignedUrl
    // manually. Specifying SourceRegion autogenerates a presigned URL that is a
    // valid request for the operation that can run in the source Amazon Web Services
    // Region.
    //
    // Valid for Cluster Type: Aurora DB clusters only
    PreSignedUrl *string `type:"string"`

    // The daily time range during which automated backups are created if automated
    // backups are enabled using the BackupRetentionPeriod parameter.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    //
    // The default is a 30-minute window selected at random from an 8-hour block
    // of time for each Amazon Web Services Region. To view the time blocks available,
    // see Backup window (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.Backups.BackupWindow)
    // in the Amazon Aurora User Guide.
    //
    // Constraints:
    //
    //    * Must be in the format hh24:mi-hh24:mi.
    //
    //    * Must be in Universal Coordinated Time (UTC).
    //
    //    * Must not conflict with the preferred maintenance window.
    //
    //    * Must be at least 30 minutes.
    PreferredBackupWindow *string `type:"string"`

    // The weekly time range during which system maintenance can occur.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    //
    // The default is a 30-minute window selected at random from an 8-hour block
    // of time for each Amazon Web Services Region, occurring on a random day of
    // the week. To see the time blocks available, see Adjusting the Preferred DB
    // Cluster Maintenance Window (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora)
    // in the Amazon Aurora User Guide.
    //
    // Constraints:
    //
    //    * Must be in the format ddd:hh24:mi-ddd:hh24:mi.
    //
    //    * Days must be one of Mon | Tue | Wed | Thu | Fri | Sat | Sun.
    //
    //    * Must be in Universal Coordinated Time (UTC).
    //
    //    * Must be at least 30 minutes.
    PreferredMaintenanceWindow *string `type:"string"`

    // Specifies whether the DB cluster is publicly accessible.
    //
    // When the DB cluster is publicly accessible, its Domain Name System (DNS)
    // endpoint resolves to the private IP address from within the DB cluster's
    // virtual private cloud (VPC). It resolves to the public IP address from outside
    // of the DB cluster's VPC. Access to the DB cluster is ultimately controlled
    // by the security group it uses. That public access isn't permitted if the
    // security group assigned to the DB cluster doesn't permit it.
    //
    // When the DB cluster isn't publicly accessible, it is an internal DB cluster
    // with a DNS name that resolves to a private IP address.
    //
    // Valid for Cluster Type: Multi-AZ DB clusters only
    //
    // Default: The default behavior varies depending on whether DBSubnetGroupName
    // is specified.
    //
    // If DBSubnetGroupName isn't specified, and PubliclyAccessible isn't specified,
    // the following applies:
    //
    //    * If the default VPC in the target Region doesn’t have an internet gateway
    //    attached to it, the DB cluster is private.
    //
    //    * If the default VPC in the target Region has an internet gateway attached
    //    to it, the DB cluster is public.
    //
    // If DBSubnetGroupName is specified, and PubliclyAccessible isn't specified,
    // the following applies:
    //
    //    * If the subnets are part of a VPC that doesn’t have an internet gateway
    //    attached to it, the DB cluster is private.
    //
    //    * If the subnets are part of a VPC that has an internet gateway attached
    //    to it, the DB cluster is public.
    PubliclyAccessible *bool `type:"boolean"`

    // Reserved for future use.
    RdsCustomClusterConfiguration *RdsCustomClusterConfiguration `type:"structure"`

    // The Amazon Resource Name (ARN) of the source DB instance or DB cluster if
    // this DB cluster is created as a read replica.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    ReplicationSourceIdentifier *string `type:"string"`

    // For DB clusters in serverless DB engine mode, the scaling properties of the
    // DB cluster.
    //
    // Valid for Cluster Type: Aurora DB clusters only
    ScalingConfiguration *ScalingConfiguration `type:"structure"`

    // Contains the scaling configuration of an Aurora Serverless v2 DB cluster.
    //
    // For more information, see Using Amazon Aurora Serverless v2 (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html)
    // in the Amazon Aurora User Guide.
    ServerlessV2ScalingConfiguration *ServerlessV2ScalingConfiguration `type:"structure"`

    // SourceRegion is the source region where the resource exists. This is not
    // sent over the wire and is only used for presigning. This value should always
    // have the same region as the source ARN.
    SourceRegion *string `type:"string" ignore:"true"`

    // Specifies whether the DB cluster is encrypted.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    StorageEncrypted *bool `type:"boolean"`

    // The storage type to associate with the DB cluster.
    //
    // For information on storage types for Aurora DB clusters, see Storage configurations
    // for Amazon Aurora DB clusters (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Overview.StorageReliability.html#aurora-storage-type).
    // For information on storage types for Multi-AZ DB clusters, see Settings for
    // creating Multi-AZ DB clusters (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/create-multi-az-db-cluster.html#create-multi-az-db-cluster-settings).
    //
    // This setting is required to create a Multi-AZ DB cluster.
    //
    // When specified for a Multi-AZ DB cluster, a value for the Iops parameter
    // is required.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    //
    // Valid Values:
    //
    //    * Aurora DB clusters - aurora | aurora-iopt1
    //
    //    * Multi-AZ DB clusters - io1 | io2 | gp3
    //
    // Default:
    //
    //    * Aurora DB clusters - aurora
    //
    //    * Multi-AZ DB clusters - io1
    //
    // When you create an Aurora DB cluster with the storage type set to aurora-iopt1,
    // the storage type is returned in the response. The storage type isn't returned
    // when you set it to aurora.
    StorageType *string `type:"string"`

    // Tags to assign to the DB cluster.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    Tags []*Tag `locationNameList:"Tag" type:"list"`

    // A list of EC2 VPC security groups to associate with this DB cluster.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    VpcSecurityGroupIds []*string `locationNameList:"VpcSecurityGroupId" type:"list"`
    // contains filtered or unexported fields
}

func (CreateDBClusterInput) GoString

func (s CreateDBClusterInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBClusterInput) SetAllocatedStorage

func (s *CreateDBClusterInput) SetAllocatedStorage(v int64) *CreateDBClusterInput

SetAllocatedStorage sets the AllocatedStorage field's value.

func (*CreateDBClusterInput) SetAutoMinorVersionUpgrade

func (s *CreateDBClusterInput) SetAutoMinorVersionUpgrade(v bool) *CreateDBClusterInput

SetAutoMinorVersionUpgrade sets the AutoMinorVersionUpgrade field's value.

func (*CreateDBClusterInput) SetAvailabilityZones

func (s *CreateDBClusterInput) SetAvailabilityZones(v []*string) *CreateDBClusterInput

SetAvailabilityZones sets the AvailabilityZones field's value.

func (*CreateDBClusterInput) SetBacktrackWindow

func (s *CreateDBClusterInput) SetBacktrackWindow(v int64) *CreateDBClusterInput

SetBacktrackWindow sets the BacktrackWindow field's value.

func (*CreateDBClusterInput) SetBackupRetentionPeriod

func (s *CreateDBClusterInput) SetBackupRetentionPeriod(v int64) *CreateDBClusterInput

SetBackupRetentionPeriod sets the BackupRetentionPeriod field's value.

func (*CreateDBClusterInput) SetCACertificateIdentifier

func (s *CreateDBClusterInput) SetCACertificateIdentifier(v string) *CreateDBClusterInput

SetCACertificateIdentifier sets the CACertificateIdentifier field's value.

func (*CreateDBClusterInput) SetCharacterSetName

func (s *CreateDBClusterInput) SetCharacterSetName(v string) *CreateDBClusterInput

SetCharacterSetName sets the CharacterSetName field's value.

func (*CreateDBClusterInput) SetCopyTagsToSnapshot

func (s *CreateDBClusterInput) SetCopyTagsToSnapshot(v bool) *CreateDBClusterInput

SetCopyTagsToSnapshot sets the CopyTagsToSnapshot field's value.

func (*CreateDBClusterInput) SetDBClusterIdentifier

func (s *CreateDBClusterInput) SetDBClusterIdentifier(v string) *CreateDBClusterInput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*CreateDBClusterInput) SetDBClusterInstanceClass

func (s *CreateDBClusterInput) SetDBClusterInstanceClass(v string) *CreateDBClusterInput

SetDBClusterInstanceClass sets the DBClusterInstanceClass field's value.

func (*CreateDBClusterInput) SetDBClusterParameterGroupName

func (s *CreateDBClusterInput) SetDBClusterParameterGroupName(v string) *CreateDBClusterInput

SetDBClusterParameterGroupName sets the DBClusterParameterGroupName field's value.

func (*CreateDBClusterInput) SetDBSubnetGroupName

func (s *CreateDBClusterInput) SetDBSubnetGroupName(v string) *CreateDBClusterInput

SetDBSubnetGroupName sets the DBSubnetGroupName field's value.

func (*CreateDBClusterInput) SetDBSystemId

func (s *CreateDBClusterInput) SetDBSystemId(v string) *CreateDBClusterInput

SetDBSystemId sets the DBSystemId field's value.

func (*CreateDBClusterInput) SetDatabaseName

func (s *CreateDBClusterInput) SetDatabaseName(v string) *CreateDBClusterInput

SetDatabaseName sets the DatabaseName field's value.

func (*CreateDBClusterInput) SetDeletionProtection

func (s *CreateDBClusterInput) SetDeletionProtection(v bool) *CreateDBClusterInput

SetDeletionProtection sets the DeletionProtection field's value.

func (*CreateDBClusterInput) SetDestinationRegion

func (s *CreateDBClusterInput) SetDestinationRegion(v string) *CreateDBClusterInput

SetDestinationRegion sets the DestinationRegion field's value.

func (*CreateDBClusterInput) SetDomain

func (s *CreateDBClusterInput) SetDomain(v string) *CreateDBClusterInput

SetDomain sets the Domain field's value.

func (*CreateDBClusterInput) SetDomainIAMRoleName

func (s *CreateDBClusterInput) SetDomainIAMRoleName(v string) *CreateDBClusterInput

SetDomainIAMRoleName sets the DomainIAMRoleName field's value.

func (*CreateDBClusterInput) SetEnableCloudwatchLogsExports

func (s *CreateDBClusterInput) SetEnableCloudwatchLogsExports(v []*string) *CreateDBClusterInput

SetEnableCloudwatchLogsExports sets the EnableCloudwatchLogsExports field's value.

func (*CreateDBClusterInput) SetEnableGlobalWriteForwarding

func (s *CreateDBClusterInput) SetEnableGlobalWriteForwarding(v bool) *CreateDBClusterInput

SetEnableGlobalWriteForwarding sets the EnableGlobalWriteForwarding field's value.

func (*CreateDBClusterInput) SetEnableHttpEndpoint

func (s *CreateDBClusterInput) SetEnableHttpEndpoint(v bool) *CreateDBClusterInput

SetEnableHttpEndpoint sets the EnableHttpEndpoint field's value.

func (*CreateDBClusterInput) SetEnableIAMDatabaseAuthentication

func (s *CreateDBClusterInput) SetEnableIAMDatabaseAuthentication(v bool) *CreateDBClusterInput

SetEnableIAMDatabaseAuthentication sets the EnableIAMDatabaseAuthentication field's value.

func (*CreateDBClusterInput) SetEnableLimitlessDatabase

func (s *CreateDBClusterInput) SetEnableLimitlessDatabase(v bool) *CreateDBClusterInput

SetEnableLimitlessDatabase sets the EnableLimitlessDatabase field's value.

func (*CreateDBClusterInput) SetEnableLocalWriteForwarding

func (s *CreateDBClusterInput) SetEnableLocalWriteForwarding(v bool) *CreateDBClusterInput

SetEnableLocalWriteForwarding sets the EnableLocalWriteForwarding field's value.

func (*CreateDBClusterInput) SetEnablePerformanceInsights

func (s *CreateDBClusterInput) SetEnablePerformanceInsights(v bool) *CreateDBClusterInput

SetEnablePerformanceInsights sets the EnablePerformanceInsights field's value.

func (*CreateDBClusterInput) SetEngine

func (s *CreateDBClusterInput) SetEngine(v string) *CreateDBClusterInput

SetEngine sets the Engine field's value.

func (*CreateDBClusterInput) SetEngineMode

func (s *CreateDBClusterInput) SetEngineMode(v string) *CreateDBClusterInput

SetEngineMode sets the EngineMode field's value.

func (*CreateDBClusterInput) SetEngineVersion

func (s *CreateDBClusterInput) SetEngineVersion(v string) *CreateDBClusterInput

SetEngineVersion sets the EngineVersion field's value.

func (*CreateDBClusterInput) SetGlobalClusterIdentifier

func (s *CreateDBClusterInput) SetGlobalClusterIdentifier(v string) *CreateDBClusterInput

SetGlobalClusterIdentifier sets the GlobalClusterIdentifier field's value.

func (*CreateDBClusterInput) SetIops

func (s *CreateDBClusterInput) SetIops(v int64) *CreateDBClusterInput

SetIops sets the Iops field's value.

func (*CreateDBClusterInput) SetKmsKeyId

func (s *CreateDBClusterInput) SetKmsKeyId(v string) *CreateDBClusterInput

SetKmsKeyId sets the KmsKeyId field's value.

func (*CreateDBClusterInput) SetManageMasterUserPassword

func (s *CreateDBClusterInput) SetManageMasterUserPassword(v bool) *CreateDBClusterInput

SetManageMasterUserPassword sets the ManageMasterUserPassword field's value.

func (*CreateDBClusterInput) SetMasterUserPassword

func (s *CreateDBClusterInput) SetMasterUserPassword(v string) *CreateDBClusterInput

SetMasterUserPassword sets the MasterUserPassword field's value.

func (*CreateDBClusterInput) SetMasterUserSecretKmsKeyId

func (s *CreateDBClusterInput) SetMasterUserSecretKmsKeyId(v string) *CreateDBClusterInput

SetMasterUserSecretKmsKeyId sets the MasterUserSecretKmsKeyId field's value.

func (*CreateDBClusterInput) SetMasterUsername

func (s *CreateDBClusterInput) SetMasterUsername(v string) *CreateDBClusterInput

SetMasterUsername sets the MasterUsername field's value.

func (*CreateDBClusterInput) SetMonitoringInterval

func (s *CreateDBClusterInput) SetMonitoringInterval(v int64) *CreateDBClusterInput

SetMonitoringInterval sets the MonitoringInterval field's value.

func (*CreateDBClusterInput) SetMonitoringRoleArn

func (s *CreateDBClusterInput) SetMonitoringRoleArn(v string) *CreateDBClusterInput

SetMonitoringRoleArn sets the MonitoringRoleArn field's value.

func (*CreateDBClusterInput) SetNetworkType

func (s *CreateDBClusterInput) SetNetworkType(v string) *CreateDBClusterInput

SetNetworkType sets the NetworkType field's value.

func (*CreateDBClusterInput) SetOptionGroupName

func (s *CreateDBClusterInput) SetOptionGroupName(v string) *CreateDBClusterInput

SetOptionGroupName sets the OptionGroupName field's value.

func (*CreateDBClusterInput) SetPerformanceInsightsKMSKeyId

func (s *CreateDBClusterInput) SetPerformanceInsightsKMSKeyId(v string) *CreateDBClusterInput

SetPerformanceInsightsKMSKeyId sets the PerformanceInsightsKMSKeyId field's value.

func (*CreateDBClusterInput) SetPerformanceInsightsRetentionPeriod

func (s *CreateDBClusterInput) SetPerformanceInsightsRetentionPeriod(v int64) *CreateDBClusterInput

SetPerformanceInsightsRetentionPeriod sets the PerformanceInsightsRetentionPeriod field's value.

func (*CreateDBClusterInput) SetPort

func (s *CreateDBClusterInput) SetPort(v int64) *CreateDBClusterInput

SetPort sets the Port field's value.

func (*CreateDBClusterInput) SetPreSignedUrl

func (s *CreateDBClusterInput) SetPreSignedUrl(v string) *CreateDBClusterInput

SetPreSignedUrl sets the PreSignedUrl field's value.

func (*CreateDBClusterInput) SetPreferredBackupWindow

func (s *CreateDBClusterInput) SetPreferredBackupWindow(v string) *CreateDBClusterInput

SetPreferredBackupWindow sets the PreferredBackupWindow field's value.

func (*CreateDBClusterInput) SetPreferredMaintenanceWindow

func (s *CreateDBClusterInput) SetPreferredMaintenanceWindow(v string) *CreateDBClusterInput

SetPreferredMaintenanceWindow sets the PreferredMaintenanceWindow field's value.

func (*CreateDBClusterInput) SetPubliclyAccessible

func (s *CreateDBClusterInput) SetPubliclyAccessible(v bool) *CreateDBClusterInput

SetPubliclyAccessible sets the PubliclyAccessible field's value.

func (*CreateDBClusterInput) SetRdsCustomClusterConfiguration

func (s *CreateDBClusterInput) SetRdsCustomClusterConfiguration(v *RdsCustomClusterConfiguration) *CreateDBClusterInput

SetRdsCustomClusterConfiguration sets the RdsCustomClusterConfiguration field's value.

func (*CreateDBClusterInput) SetReplicationSourceIdentifier

func (s *CreateDBClusterInput) SetReplicationSourceIdentifier(v string) *CreateDBClusterInput

SetReplicationSourceIdentifier sets the ReplicationSourceIdentifier field's value.

func (*CreateDBClusterInput) SetScalingConfiguration

func (s *CreateDBClusterInput) SetScalingConfiguration(v *ScalingConfiguration) *CreateDBClusterInput

SetScalingConfiguration sets the ScalingConfiguration field's value.

func (*CreateDBClusterInput) SetServerlessV2ScalingConfiguration

func (s *CreateDBClusterInput) SetServerlessV2ScalingConfiguration(v *ServerlessV2ScalingConfiguration) *CreateDBClusterInput

SetServerlessV2ScalingConfiguration sets the ServerlessV2ScalingConfiguration field's value.

func (*CreateDBClusterInput) SetSourceRegion

func (s *CreateDBClusterInput) SetSourceRegion(v string) *CreateDBClusterInput

SetSourceRegion sets the SourceRegion field's value.

func (*CreateDBClusterInput) SetStorageEncrypted

func (s *CreateDBClusterInput) SetStorageEncrypted(v bool) *CreateDBClusterInput

SetStorageEncrypted sets the StorageEncrypted field's value.

func (*CreateDBClusterInput) SetStorageType

func (s *CreateDBClusterInput) SetStorageType(v string) *CreateDBClusterInput

SetStorageType sets the StorageType field's value.

func (*CreateDBClusterInput) SetTags

func (s *CreateDBClusterInput) SetTags(v []*Tag) *CreateDBClusterInput

SetTags sets the Tags field's value.

func (*CreateDBClusterInput) SetVpcSecurityGroupIds

func (s *CreateDBClusterInput) SetVpcSecurityGroupIds(v []*string) *CreateDBClusterInput

SetVpcSecurityGroupIds sets the VpcSecurityGroupIds field's value.

func (CreateDBClusterInput) String

func (s CreateDBClusterInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBClusterInput) Validate

func (s *CreateDBClusterInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateDBClusterOutput

type CreateDBClusterOutput struct {

    // Contains the details of an Amazon Aurora DB cluster or Multi-AZ DB cluster.
    //
    // For an Amazon Aurora DB cluster, this data type is used as a response element
    // in the operations CreateDBCluster, DeleteDBCluster, DescribeDBClusters, FailoverDBCluster,
    // ModifyDBCluster, PromoteReadReplicaDBCluster, RestoreDBClusterFromS3, RestoreDBClusterFromSnapshot,
    // RestoreDBClusterToPointInTime, StartDBCluster, and StopDBCluster.
    //
    // For a Multi-AZ DB cluster, this data type is used as a response element in
    // the operations CreateDBCluster, DeleteDBCluster, DescribeDBClusters, FailoverDBCluster,
    // ModifyDBCluster, RebootDBCluster, RestoreDBClusterFromSnapshot, and RestoreDBClusterToPointInTime.
    //
    // For more information on Amazon Aurora DB clusters, see What is Amazon Aurora?
    // (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html)
    // in the Amazon Aurora User Guide.
    //
    // For more information on Multi-AZ DB clusters, see Multi-AZ deployments with
    // two readable standby DB instances (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html)
    // in the Amazon RDS User Guide.
    DBCluster *DBCluster `type:"structure"`
    // contains filtered or unexported fields
}

func (CreateDBClusterOutput) GoString

func (s CreateDBClusterOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBClusterOutput) SetDBCluster

func (s *CreateDBClusterOutput) SetDBCluster(v *DBCluster) *CreateDBClusterOutput

SetDBCluster sets the DBCluster field's value.

func (CreateDBClusterOutput) String

func (s CreateDBClusterOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CreateDBClusterParameterGroupInput

type CreateDBClusterParameterGroupInput struct {

    // The name of the DB cluster parameter group.
    //
    // Constraints:
    //
    //    * Must not match the name of an existing DB cluster parameter group.
    //
    // This value is stored as a lowercase string.
    //
    // DBClusterParameterGroupName is a required field
    DBClusterParameterGroupName *string `type:"string" required:"true"`

    // The DB cluster parameter group family name. A DB cluster parameter group
    // can be associated with one and only one DB cluster parameter group family,
    // and can be applied only to a DB cluster running a database engine and engine
    // version compatible with that DB cluster parameter group family.
    //
    // Aurora MySQL
    //
    // Example: aurora-mysql5.7, aurora-mysql8.0
    //
    // Aurora PostgreSQL
    //
    // Example: aurora-postgresql14
    //
    // RDS for MySQL
    //
    // Example: mysql8.0
    //
    // RDS for PostgreSQL
    //
    // Example: postgres13
    //
    // To list all of the available parameter group families for a DB engine, use
    // the following command:
    //
    // aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily"
    // --engine <engine>
    //
    // For example, to list all of the available parameter group families for the
    // Aurora PostgreSQL DB engine, use the following command:
    //
    // aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily"
    // --engine aurora-postgresql
    //
    // The output contains duplicates.
    //
    // The following are the valid DB engine values:
    //
    //    * aurora-mysql
    //
    //    * aurora-postgresql
    //
    //    * mysql
    //
    //    * postgres
    //
    // DBParameterGroupFamily is a required field
    DBParameterGroupFamily *string `type:"string" required:"true"`

    // The description for the DB cluster parameter group.
    //
    // Description is a required field
    Description *string `type:"string" required:"true"`

    // Tags to assign to the DB cluster parameter group.
    Tags []*Tag `locationNameList:"Tag" type:"list"`
    // contains filtered or unexported fields
}

func (CreateDBClusterParameterGroupInput) GoString

func (s CreateDBClusterParameterGroupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBClusterParameterGroupInput) SetDBClusterParameterGroupName

func (s *CreateDBClusterParameterGroupInput) SetDBClusterParameterGroupName(v string) *CreateDBClusterParameterGroupInput

SetDBClusterParameterGroupName sets the DBClusterParameterGroupName field's value.

func (*CreateDBClusterParameterGroupInput) SetDBParameterGroupFamily

func (s *CreateDBClusterParameterGroupInput) SetDBParameterGroupFamily(v string) *CreateDBClusterParameterGroupInput

SetDBParameterGroupFamily sets the DBParameterGroupFamily field's value.

func (*CreateDBClusterParameterGroupInput) SetDescription

func (s *CreateDBClusterParameterGroupInput) SetDescription(v string) *CreateDBClusterParameterGroupInput

SetDescription sets the Description field's value.

func (*CreateDBClusterParameterGroupInput) SetTags

func (s *CreateDBClusterParameterGroupInput) SetTags(v []*Tag) *CreateDBClusterParameterGroupInput

SetTags sets the Tags field's value.

func (CreateDBClusterParameterGroupInput) String

func (s CreateDBClusterParameterGroupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBClusterParameterGroupInput) Validate

func (s *CreateDBClusterParameterGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateDBClusterParameterGroupOutput

type CreateDBClusterParameterGroupOutput struct {

    // Contains the details of an Amazon RDS DB cluster parameter group.
    //
    // This data type is used as a response element in the DescribeDBClusterParameterGroups
    // action.
    DBClusterParameterGroup *DBClusterParameterGroup `type:"structure"`
    // contains filtered or unexported fields
}

func (CreateDBClusterParameterGroupOutput) GoString

func (s CreateDBClusterParameterGroupOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBClusterParameterGroupOutput) SetDBClusterParameterGroup

func (s *CreateDBClusterParameterGroupOutput) SetDBClusterParameterGroup(v *DBClusterParameterGroup) *CreateDBClusterParameterGroupOutput

SetDBClusterParameterGroup sets the DBClusterParameterGroup field's value.

func (CreateDBClusterParameterGroupOutput) String

func (s CreateDBClusterParameterGroupOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CreateDBClusterSnapshotInput

type CreateDBClusterSnapshotInput struct {

    // The identifier of the DB cluster to create a snapshot for. This parameter
    // isn't case-sensitive.
    //
    // Constraints:
    //
    //    * Must match the identifier of an existing DBCluster.
    //
    // Example: my-cluster1
    //
    // DBClusterIdentifier is a required field
    DBClusterIdentifier *string `type:"string" required:"true"`

    // The identifier of the DB cluster snapshot. This parameter is stored as a
    // lowercase string.
    //
    // Constraints:
    //
    //    * Must contain from 1 to 63 letters, numbers, or hyphens.
    //
    //    * First character must be a letter.
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens.
    //
    // Example: my-cluster1-snapshot1
    //
    // DBClusterSnapshotIdentifier is a required field
    DBClusterSnapshotIdentifier *string `type:"string" required:"true"`

    // The tags to be assigned to the DB cluster snapshot.
    Tags []*Tag `locationNameList:"Tag" type:"list"`
    // contains filtered or unexported fields
}

func (CreateDBClusterSnapshotInput) GoString

func (s CreateDBClusterSnapshotInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBClusterSnapshotInput) SetDBClusterIdentifier

func (s *CreateDBClusterSnapshotInput) SetDBClusterIdentifier(v string) *CreateDBClusterSnapshotInput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*CreateDBClusterSnapshotInput) SetDBClusterSnapshotIdentifier

func (s *CreateDBClusterSnapshotInput) SetDBClusterSnapshotIdentifier(v string) *CreateDBClusterSnapshotInput

SetDBClusterSnapshotIdentifier sets the DBClusterSnapshotIdentifier field's value.

func (*CreateDBClusterSnapshotInput) SetTags

func (s *CreateDBClusterSnapshotInput) SetTags(v []*Tag) *CreateDBClusterSnapshotInput

SetTags sets the Tags field's value.

func (CreateDBClusterSnapshotInput) String

func (s CreateDBClusterSnapshotInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBClusterSnapshotInput) Validate

func (s *CreateDBClusterSnapshotInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateDBClusterSnapshotOutput

type CreateDBClusterSnapshotOutput struct {

    // Contains the details for an Amazon RDS DB cluster snapshot
    //
    // This data type is used as a response element in the DescribeDBClusterSnapshots
    // action.
    DBClusterSnapshot *DBClusterSnapshot `type:"structure"`
    // contains filtered or unexported fields
}

func (CreateDBClusterSnapshotOutput) GoString

func (s CreateDBClusterSnapshotOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBClusterSnapshotOutput) SetDBClusterSnapshot

func (s *CreateDBClusterSnapshotOutput) SetDBClusterSnapshot(v *DBClusterSnapshot) *CreateDBClusterSnapshotOutput

SetDBClusterSnapshot sets the DBClusterSnapshot field's value.

func (CreateDBClusterSnapshotOutput) String

func (s CreateDBClusterSnapshotOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CreateDBInstanceInput

type CreateDBInstanceInput struct {

    // The amount of storage in gibibytes (GiB) to allocate for the DB instance.
    //
    // This setting doesn't apply to Amazon Aurora DB instances. Aurora cluster
    // volumes automatically grow as the amount of data in your database increases,
    // though you are only charged for the space that you use in an Aurora cluster
    // volume.
    //
    // Amazon RDS Custom
    //
    // Constraints to the amount of storage for each storage type are the following:
    //
    //    * General Purpose (SSD) storage (gp2, gp3): Must be an integer from 40
    //    to 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL Server.
    //
    //    * Provisioned IOPS storage (io1, io2): Must be an integer from 40 to 65536
    //    for RDS Custom for Oracle, 16384 for RDS Custom for SQL Server.
    //
    // RDS for Db2
    //
    // Constraints to the amount of storage for each storage type are the following:
    //
    //    * General Purpose (SSD) storage (gp3): Must be an integer from 20 to 65536.
    //
    //    * Provisioned IOPS storage (io1, io2): Must be an integer from 100 to
    //    65536.
    //
    // RDS for MariaDB
    //
    // Constraints to the amount of storage for each storage type are the following:
    //
    //    * General Purpose (SSD) storage (gp2, gp3): Must be an integer from 20
    //    to 65536.
    //
    //    * Provisioned IOPS storage (io1, io2): Must be an integer from 100 to
    //    65536.
    //
    //    * Magnetic storage (standard): Must be an integer from 5 to 3072.
    //
    // RDS for MySQL
    //
    // Constraints to the amount of storage for each storage type are the following:
    //
    //    * General Purpose (SSD) storage (gp2, gp3): Must be an integer from 20
    //    to 65536.
    //
    //    * Provisioned IOPS storage (io1, io2): Must be an integer from 100 to
    //    65536.
    //
    //    * Magnetic storage (standard): Must be an integer from 5 to 3072.
    //
    // RDS for Oracle
    //
    // Constraints to the amount of storage for each storage type are the following:
    //
    //    * General Purpose (SSD) storage (gp2, gp3): Must be an integer from 20
    //    to 65536.
    //
    //    * Provisioned IOPS storage (io1, io2): Must be an integer from 100 to
    //    65536.
    //
    //    * Magnetic storage (standard): Must be an integer from 10 to 3072.
    //
    // RDS for PostgreSQL
    //
    // Constraints to the amount of storage for each storage type are the following:
    //
    //    * General Purpose (SSD) storage (gp2, gp3): Must be an integer from 20
    //    to 65536.
    //
    //    * Provisioned IOPS storage (io1, io2): Must be an integer from 100 to
    //    65536.
    //
    //    * Magnetic storage (standard): Must be an integer from 5 to 3072.
    //
    // RDS for SQL Server
    //
    // Constraints to the amount of storage for each storage type are the following:
    //
    //    * General Purpose (SSD) storage (gp2, gp3): Enterprise and Standard editions:
    //    Must be an integer from 20 to 16384. Web and Express editions: Must be
    //    an integer from 20 to 16384.
    //
    //    * Provisioned IOPS storage (io1, io2): Enterprise and Standard editions:
    //    Must be an integer from 100 to 16384. Web and Express editions: Must be
    //    an integer from 100 to 16384.
    //
    //    * Magnetic storage (standard): Enterprise and Standard editions: Must
    //    be an integer from 20 to 1024. Web and Express editions: Must be an integer
    //    from 20 to 1024.
    AllocatedStorage *int64 `type:"integer"`

    // Specifies whether minor engine upgrades are applied automatically to the
    // DB instance during the maintenance window. By default, minor engine upgrades
    // are applied automatically.
    //
    // If you create an RDS Custom DB instance, you must set AutoMinorVersionUpgrade
    // to false.
    AutoMinorVersionUpgrade *bool `type:"boolean"`

    // The Availability Zone (AZ) where the database will be created. For information
    // on Amazon Web Services Regions and Availability Zones, see Regions and Availability
    // Zones (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
    //
    // For Amazon Aurora, each Aurora DB cluster hosts copies of its storage in
    // three separate Availability Zones. Specify one of these Availability Zones.
    // Aurora automatically chooses an appropriate Availability Zone if you don't
    // specify one.
    //
    // Default: A random, system-chosen Availability Zone in the endpoint's Amazon
    // Web Services Region.
    //
    // Constraints:
    //
    //    * The AvailabilityZone parameter can't be specified if the DB instance
    //    is a Multi-AZ deployment.
    //
    //    * The specified Availability Zone must be in the same Amazon Web Services
    //    Region as the current endpoint.
    //
    // Example: us-east-1d
    AvailabilityZone *string `type:"string"`

    // The number of days for which automated backups are retained. Setting this
    // parameter to a positive number enables backups. Setting this parameter to
    // 0 disables automated backups.
    //
    // This setting doesn't apply to Amazon Aurora DB instances. The retention period
    // for automated backups is managed by the DB cluster.
    //
    // Default: 1
    //
    // Constraints:
    //
    //    * Must be a value from 0 to 35.
    //
    //    * Can't be set to 0 if the DB instance is a source to read replicas.
    //
    //    * Can't be set to 0 for an RDS Custom for Oracle DB instance.
    BackupRetentionPeriod *int64 `type:"integer"`

    // The location for storing automated backups and manual snapshots.
    //
    // Valid Values:
    //
    //    * outposts (Amazon Web Services Outposts)
    //
    //    * region (Amazon Web Services Region)
    //
    // Default: region
    //
    // For more information, see Working with Amazon RDS on Amazon Web Services
    // Outposts (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html)
    // in the Amazon RDS User Guide.
    BackupTarget *string `type:"string"`

    // The CA certificate identifier to use for the DB instance's server certificate.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    //
    // For more information, see Using SSL/TLS to encrypt a connection to a DB instance
    // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html)
    // in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to
    // a DB cluster (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html)
    // in the Amazon Aurora User Guide.
    CACertificateIdentifier *string `type:"string"`

    // For supported engines, the character set (CharacterSet) to associate the
    // DB instance with.
    //
    // This setting doesn't apply to the following DB instances:
    //
    //    * Amazon Aurora - The character set is managed by the DB cluster. For
    //    more information, see CreateDBCluster.
    //
    //    * RDS Custom - However, if you need to change the character set, you can
    //    change it on the database itself.
    CharacterSetName *string `type:"string"`

    // Specifies whether to copy tags from the DB instance to snapshots of the DB
    // instance. By default, tags are not copied.
    //
    // This setting doesn't apply to Amazon Aurora DB instances. Copying tags to
    // snapshots is managed by the DB cluster. Setting this value for an Aurora
    // DB instance has no effect on the DB cluster setting.
    CopyTagsToSnapshot *bool `type:"boolean"`

    // The instance profile associated with the underlying Amazon EC2 instance of
    // an RDS Custom DB instance.
    //
    // This setting is required for RDS Custom.
    //
    // Constraints:
    //
    //    * The profile must exist in your account.
    //
    //    * The profile must have an IAM role that Amazon EC2 has permissions to
    //    assume.
    //
    //    * The instance profile name and the associated IAM role name must start
    //    with the prefix AWSRDSCustom.
    //
    // For the list of permissions required for the IAM role, see Configure IAM
    // and your VPC (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc)
    // in the Amazon RDS User Guide.
    CustomIamInstanceProfile *string `type:"string"`

    // The identifier of the DB cluster that this DB instance will belong to.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    DBClusterIdentifier *string `type:"string"`

    // The compute and memory capacity of the DB instance, for example db.m5.large.
    // Not all DB instance classes are available in all Amazon Web Services Regions,
    // or for all database engines. For the full list of DB instance classes, and
    // availability for your engine, see DB instance classes (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html)
    // in the Amazon RDS User Guide or Aurora DB instance classes (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.DBInstanceClass.html)
    // in the Amazon Aurora User Guide.
    //
    // DBInstanceClass is a required field
    DBInstanceClass *string `type:"string" required:"true"`

    // The identifier for this DB instance. This parameter is stored as a lowercase
    // string.
    //
    // Constraints:
    //
    //    * Must contain from 1 to 63 letters, numbers, or hyphens.
    //
    //    * First character must be a letter.
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens.
    //
    // Example: mydbinstance
    //
    // DBInstanceIdentifier is a required field
    DBInstanceIdentifier *string `type:"string" required:"true"`

    // The meaning of this parameter differs according to the database engine you
    // use.
    //
    // Amazon Aurora MySQL
    //
    // The name of the database to create when the primary DB instance of the Aurora
    // MySQL DB cluster is created. If this parameter isn't specified for an Aurora
    // MySQL DB cluster, no database is created in the DB cluster.
    //
    // Constraints:
    //
    //    * Must contain 1 to 64 alphanumeric characters.
    //
    //    * Can't be a word reserved by the database engine.
    //
    // Amazon Aurora PostgreSQL
    //
    // The name of the database to create when the primary DB instance of the Aurora
    // PostgreSQL DB cluster is created. If this parameter isn't specified for an
    // Aurora PostgreSQL DB cluster, a database named postgres is created in the
    // DB cluster.
    //
    // Constraints:
    //
    //    * It must contain 1 to 63 alphanumeric characters.
    //
    //    * Must begin with a letter. Subsequent characters can be letters, underscores,
    //    or digits (0 to 9).
    //
    //    * Can't be a word reserved by the database engine.
    //
    // Amazon RDS Custom for Oracle
    //
    // The Oracle System ID (SID) of the created RDS Custom DB instance. If you
    // don't specify a value, the default value is ORCL for non-CDBs and RDSCDB
    // for CDBs.
    //
    // Default: ORCL
    //
    // Constraints:
    //
    //    * Must contain 1 to 8 alphanumeric characters.
    //
    //    * Must contain a letter.
    //
    //    * Can't be a word reserved by the database engine.
    //
    // Amazon RDS Custom for SQL Server
    //
    // Not applicable. Must be null.
    //
    // RDS for Db2
    //
    // The name of the database to create when the DB instance is created. If this
    // parameter isn't specified, no database is created in the DB instance. In
    // some cases, we recommend that you don't add a database name. For more information,
    // see Additional considerations (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-db-instance-prereqs.html#db2-prereqs-additional-considerations)
    // in the Amazon RDS User Guide.
    //
    // Constraints:
    //
    //    * Must contain 1 to 64 letters or numbers.
    //
    //    * Must begin with a letter. Subsequent characters can be letters, underscores,
    //    or digits (0-9).
    //
    //    * Can't be a word reserved by the specified database engine.
    //
    // RDS for MariaDB
    //
    // The name of the database to create when the DB instance is created. If this
    // parameter isn't specified, no database is created in the DB instance.
    //
    // Constraints:
    //
    //    * Must contain 1 to 64 letters or numbers.
    //
    //    * Must begin with a letter. Subsequent characters can be letters, underscores,
    //    or digits (0-9).
    //
    //    * Can't be a word reserved by the specified database engine.
    //
    // RDS for MySQL
    //
    // The name of the database to create when the DB instance is created. If this
    // parameter isn't specified, no database is created in the DB instance.
    //
    // Constraints:
    //
    //    * Must contain 1 to 64 letters or numbers.
    //
    //    * Must begin with a letter. Subsequent characters can be letters, underscores,
    //    or digits (0-9).
    //
    //    * Can't be a word reserved by the specified database engine.
    //
    // RDS for Oracle
    //
    // The Oracle System ID (SID) of the created DB instance. If you don't specify
    // a value, the default value is ORCL. You can't specify the string null, or
    // any other reserved word, for DBName.
    //
    // Default: ORCL
    //
    // Constraints:
    //
    //    * Can't be longer than 8 characters.
    //
    // RDS for PostgreSQL
    //
    // The name of the database to create when the DB instance is created. If this
    // parameter isn't specified, a database named postgres is created in the DB
    // instance.
    //
    // Constraints:
    //
    //    * Must contain 1 to 63 letters, numbers, or underscores.
    //
    //    * Must begin with a letter. Subsequent characters can be letters, underscores,
    //    or digits (0-9).
    //
    //    * Can't be a word reserved by the specified database engine.
    //
    // RDS for SQL Server
    //
    // Not applicable. Must be null.
    DBName *string `type:"string"`

    // The name of the DB parameter group to associate with this DB instance. If
    // you don't specify a value, then Amazon RDS uses the default DB parameter
    // group for the specified DB engine and version.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    //
    // Constraints:
    //
    //    * Must be 1 to 255 letters, numbers, or hyphens.
    //
    //    * The first character must be a letter.
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens.
    DBParameterGroupName *string `type:"string"`

    // A list of DB security groups to associate with this DB instance.
    //
    // This setting applies to the legacy EC2-Classic platform, which is no longer
    // used to create new DB instances. Use the VpcSecurityGroupIds setting instead.
    DBSecurityGroups []*string `locationNameList:"DBSecurityGroupName" type:"list"`

    // A DB subnet group to associate with this DB instance.
    //
    // Constraints:
    //
    //    * Must match the name of an existing DB subnet group.
    //
    //    * Must not be default.
    //
    // Example: mydbsubnetgroup
    DBSubnetGroupName *string `type:"string"`

    // The Oracle system identifier (SID), which is the name of the Oracle database
    // instance that manages your database files. In this context, the term "Oracle
    // database instance" refers exclusively to the system global area (SGA) and
    // Oracle background processes. If you don't specify a SID, the value defaults
    // to RDSCDB. The Oracle SID is also the name of your CDB.
    DBSystemId *string `type:"string"`

    // Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
    DedicatedLogVolume *bool `type:"boolean"`

    // Specifies whether the DB instance has deletion protection enabled. The database
    // can't be deleted when deletion protection is enabled. By default, deletion
    // protection isn't enabled. For more information, see Deleting a DB Instance
    // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html).
    //
    // This setting doesn't apply to Amazon Aurora DB instances. You can enable
    // or disable deletion protection for the DB cluster. For more information,
    // see CreateDBCluster. DB instances in a DB cluster can be deleted even when
    // deletion protection is enabled for the DB cluster.
    DeletionProtection *bool `type:"boolean"`

    // The Active Directory directory ID to create the DB instance in. Currently,
    // you can create only Db2, MySQL, Microsoft SQL Server, Oracle, and PostgreSQL
    // DB instances in an Active Directory Domain.
    //
    // For more information, see Kerberos Authentication (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html)
    // in the Amazon RDS User Guide.
    //
    // This setting doesn't apply to the following DB instances:
    //
    //    * Amazon Aurora (The domain is managed by the DB cluster.)
    //
    //    * RDS Custom
    Domain *string `type:"string"`

    // The ARN for the Secrets Manager secret with the credentials for the user
    // joining the domain.
    //
    // Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456
    DomainAuthSecretArn *string `type:"string"`

    // The IPv4 DNS IP addresses of your primary and secondary Active Directory
    // domain controllers.
    //
    // Constraints:
    //
    //    * Two IP addresses must be provided. If there isn't a secondary domain
    //    controller, use the IP address of the primary domain controller for both
    //    entries in the list.
    //
    // Example: 123.124.125.126,234.235.236.237
    DomainDnsIps []*string `type:"list"`

    // The fully qualified domain name (FQDN) of an Active Directory domain.
    //
    // Constraints:
    //
    //    * Can't be longer than 64 characters.
    //
    // Example: mymanagedADtest.mymanagedAD.mydomain
    DomainFqdn *string `type:"string"`

    // The name of the IAM role to use when making API calls to the Directory Service.
    //
    // This setting doesn't apply to the following DB instances:
    //
    //    * Amazon Aurora (The domain is managed by the DB cluster.)
    //
    //    * RDS Custom
    DomainIAMRoleName *string `type:"string"`

    // The Active Directory organizational unit for your DB instance to join.
    //
    // Constraints:
    //
    //    * Must be in the distinguished name format.
    //
    //    * Can't be longer than 64 characters.
    //
    // Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain
    DomainOu *string `type:"string"`

    // The list of log types to enable for exporting to CloudWatch Logs. For more
    // information, see Publishing Database Logs to Amazon CloudWatch Logs (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch)
    // in the Amazon RDS User Guide.
    //
    // This setting doesn't apply to the following DB instances:
    //
    //    * Amazon Aurora (CloudWatch Logs exports are managed by the DB cluster.)
    //
    //    * RDS Custom
    //
    // The following values are valid for each DB engine:
    //
    //    * RDS for Db2 - diag.log | notify.log
    //
    //    * RDS for MariaDB - audit | error | general | slowquery
    //
    //    * RDS for Microsoft SQL Server - agent | error
    //
    //    * RDS for MySQL - audit | error | general | slowquery
    //
    //    * RDS for Oracle - alert | audit | listener | trace | oemagent
    //
    //    * RDS for PostgreSQL - postgresql | upgrade
    EnableCloudwatchLogsExports []*string `type:"list"`

    // Specifies whether to enable a customer-owned IP address (CoIP) for an RDS
    // on Outposts DB instance.
    //
    // A CoIP provides local or external connectivity to resources in your Outpost
    // subnets through your on-premises network. For some use cases, a CoIP can
    // provide lower latency for connections to the DB instance from outside of
    // its virtual private cloud (VPC) on your local network.
    //
    // For more information about RDS on Outposts, see Working with Amazon RDS on
    // Amazon Web Services Outposts (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html)
    // in the Amazon RDS User Guide.
    //
    // For more information about CoIPs, see Customer-owned IP addresses (https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing)
    // in the Amazon Web Services Outposts User Guide.
    EnableCustomerOwnedIp *bool `type:"boolean"`

    // Specifies whether to enable mapping of Amazon Web Services Identity and Access
    // Management (IAM) accounts to database accounts. By default, mapping isn't
    // enabled.
    //
    // For more information, see IAM Database Authentication for MySQL and PostgreSQL
    // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html)
    // in the Amazon RDS User Guide.
    //
    // This setting doesn't apply to the following DB instances:
    //
    //    * Amazon Aurora (Mapping Amazon Web Services IAM accounts to database
    //    accounts is managed by the DB cluster.)
    //
    //    * RDS Custom
    EnableIAMDatabaseAuthentication *bool `type:"boolean"`

    // Specifies whether to enable Performance Insights for the DB instance. For
    // more information, see Using Amazon Performance Insights (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html)
    // in the Amazon RDS User Guide.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    EnablePerformanceInsights *bool `type:"boolean"`

    // The database engine to use for this DB instance.
    //
    // Not every database engine is available in every Amazon Web Services Region.
    //
    // Valid Values:
    //
    //    * aurora-mysql (for Aurora MySQL DB instances)
    //
    //    * aurora-postgresql (for Aurora PostgreSQL DB instances)
    //
    //    * custom-oracle-ee (for RDS Custom for Oracle DB instances)
    //
    //    * custom-oracle-ee-cdb (for RDS Custom for Oracle DB instances)
    //
    //    * custom-sqlserver-ee (for RDS Custom for SQL Server DB instances)
    //
    //    * custom-sqlserver-se (for RDS Custom for SQL Server DB instances)
    //
    //    * custom-sqlserver-web (for RDS Custom for SQL Server DB instances)
    //
    //    * db2-ae
    //
    //    * db2-se
    //
    //    * mariadb
    //
    //    * mysql
    //
    //    * oracle-ee
    //
    //    * oracle-ee-cdb
    //
    //    * oracle-se2
    //
    //    * oracle-se2-cdb
    //
    //    * postgres
    //
    //    * sqlserver-ee
    //
    //    * sqlserver-se
    //
    //    * sqlserver-ex
    //
    //    * sqlserver-web
    //
    // Engine is a required field
    Engine *string `type:"string" required:"true"`

    // The version number of the database engine to use.
    //
    // This setting doesn't apply to Amazon Aurora DB instances. The version number
    // of the database engine the DB instance uses is managed by the DB cluster.
    //
    // For a list of valid engine versions, use the DescribeDBEngineVersions operation.
    //
    // The following are the database engines and links to information about the
    // major and minor versions that are available with Amazon RDS. Not every database
    // engine is available for every Amazon Web Services Region.
    //
    // Amazon RDS Custom for Oracle
    //
    // A custom engine version (CEV) that you have previously created. This setting
    // is required for RDS Custom for Oracle. The CEV name has the following format:
    // 19.customized_string. A valid CEV name is 19.my_cev1. For more information,
    // see Creating an RDS Custom for Oracle DB instance (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-creating.html#custom-creating.create)
    // in the Amazon RDS User Guide.
    //
    // Amazon RDS Custom for SQL Server
    //
    // See RDS Custom for SQL Server general requirements (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits-MS.html)
    // in the Amazon RDS User Guide.
    //
    // RDS for Db2
    //
    // For information, see Db2 on Amazon RDS versions (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Db2.html#Db2.Concepts.VersionMgmt)
    // in the Amazon RDS User Guide.
    //
    // RDS for MariaDB
    //
    // For information, see MariaDB on Amazon RDS versions (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MariaDB.html#MariaDB.Concepts.VersionMgmt)
    // in the Amazon RDS User Guide.
    //
    // RDS for Microsoft SQL Server
    //
    // For information, see Microsoft SQL Server versions on Amazon RDS (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport)
    // in the Amazon RDS User Guide.
    //
    // RDS for MySQL
    //
    // For information, see MySQL on Amazon RDS versions (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt)
    // in the Amazon RDS User Guide.
    //
    // RDS for Oracle
    //
    // For information, see Oracle Database Engine release notes (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Appendix.Oracle.PatchComposition.html)
    // in the Amazon RDS User Guide.
    //
    // RDS for PostgreSQL
    //
    // For information, see Amazon RDS for PostgreSQL versions and extensions (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts)
    // in the Amazon RDS User Guide.
    EngineVersion *string `type:"string"`

    // The amount of Provisioned IOPS (input/output operations per second) to initially
    // allocate for the DB instance. For information about valid IOPS values, see
    // Amazon RDS DB instance storage (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html)
    // in the Amazon RDS User Guide.
    //
    // This setting doesn't apply to Amazon Aurora DB instances. Storage is managed
    // by the DB cluster.
    //
    // Constraints:
    //
    //    * For RDS for Db2, MariaDB, MySQL, Oracle, and PostgreSQL - Must be a
    //    multiple between .5 and 50 of the storage amount for the DB instance.
    //
    //    * For RDS for SQL Server - Must be a multiple between 1 and 50 of the
    //    storage amount for the DB instance.
    Iops *int64 `type:"integer"`

    // The Amazon Web Services KMS key identifier for an encrypted DB instance.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key. To use a KMS key in a different Amazon
    // Web Services account, specify the key ARN or alias ARN.
    //
    // This setting doesn't apply to Amazon Aurora DB instances. The Amazon Web
    // Services KMS key identifier is managed by the DB cluster. For more information,
    // see CreateDBCluster.
    //
    // If StorageEncrypted is enabled, and you do not specify a value for the KmsKeyId
    // parameter, then Amazon RDS uses your default KMS key. There is a default
    // KMS key for your Amazon Web Services account. Your Amazon Web Services account
    // has a different default KMS key for each Amazon Web Services Region.
    //
    // For Amazon RDS Custom, a KMS key is required for DB instances. For most RDS
    // engines, if you leave this parameter empty while enabling StorageEncrypted,
    // the engine uses the default KMS key. However, RDS Custom doesn't use the
    // default key when this parameter is empty. You must explicitly specify a key.
    KmsKeyId *string `type:"string"`

    // The license model information for this DB instance.
    //
    // This setting doesn't apply to Amazon Aurora or RDS Custom DB instances.
    //
    // Valid Values:
    //
    //    * RDS for Db2 - bring-your-own-license
    //
    //    * RDS for MariaDB - general-public-license
    //
    //    * RDS for Microsoft SQL Server - license-included
    //
    //    * RDS for MySQL - general-public-license
    //
    //    * RDS for Oracle - bring-your-own-license | license-included
    //
    //    * RDS for PostgreSQL - postgresql-license
    LicenseModel *string `type:"string"`

    // Specifies whether to manage the master user password with Amazon Web Services
    // Secrets Manager.
    //
    // For more information, see Password management with Amazon Web Services Secrets
    // Manager (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html)
    // in the Amazon RDS User Guide.
    //
    // Constraints:
    //
    //    * Can't manage the master user password with Amazon Web Services Secrets
    //    Manager if MasterUserPassword is specified.
    ManageMasterUserPassword *bool `type:"boolean"`

    // The password for the master user.
    //
    // This setting doesn't apply to Amazon Aurora DB instances. The password for
    // the master user is managed by the DB cluster.
    //
    // Constraints:
    //
    //    * Can't be specified if ManageMasterUserPassword is turned on.
    //
    //    * Can include any printable ASCII character except "/", """, or "@". For
    //    RDS for Oracle, can't include the "&" (ampersand) or the "'" (single quotes)
    //    character.
    //
    // Length Constraints:
    //
    //    * RDS for Db2 - Must contain from 8 to 255 characters.
    //
    //    * RDS for MariaDB - Must contain from 8 to 41 characters.
    //
    //    * RDS for Microsoft SQL Server - Must contain from 8 to 128 characters.
    //
    //    * RDS for MySQL - Must contain from 8 to 41 characters.
    //
    //    * RDS for Oracle - Must contain from 8 to 30 characters.
    //
    //    * RDS for PostgreSQL - Must contain from 8 to 128 characters.
    MasterUserPassword *string `type:"string"`

    // The Amazon Web Services KMS key identifier to encrypt a secret that is automatically
    // generated and managed in Amazon Web Services Secrets Manager.
    //
    // This setting is valid only if the master user password is managed by RDS
    // in Amazon Web Services Secrets Manager for the DB instance.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key. To use a KMS key in a different Amazon
    // Web Services account, specify the key ARN or alias ARN.
    //
    // If you don't specify MasterUserSecretKmsKeyId, then the aws/secretsmanager
    // KMS key is used to encrypt the secret. If the secret is in a different Amazon
    // Web Services account, then you can't use the aws/secretsmanager KMS key to
    // encrypt the secret, and you must use a customer managed KMS key.
    //
    // There is a default KMS key for your Amazon Web Services account. Your Amazon
    // Web Services account has a different default KMS key for each Amazon Web
    // Services Region.
    MasterUserSecretKmsKeyId *string `type:"string"`

    // The name for the master user.
    //
    // This setting doesn't apply to Amazon Aurora DB instances. The name for the
    // master user is managed by the DB cluster.
    //
    // This setting is required for RDS DB instances.
    //
    // Constraints:
    //
    //    * Must be 1 to 16 letters, numbers, or underscores.
    //
    //    * First character must be a letter.
    //
    //    * Can't be a reserved word for the chosen database engine.
    MasterUsername *string `type:"string"`

    // The upper limit in gibibytes (GiB) to which Amazon RDS can automatically
    // scale the storage of the DB instance.
    //
    // For more information about this setting, including limitations that apply
    // to it, see Managing capacity automatically with Amazon RDS storage autoscaling
    // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling)
    // in the Amazon RDS User Guide.
    //
    // This setting doesn't apply to the following DB instances:
    //
    //    * Amazon Aurora (Storage is managed by the DB cluster.)
    //
    //    * RDS Custom
    MaxAllocatedStorage *int64 `type:"integer"`

    // The interval, in seconds, between points when Enhanced Monitoring metrics
    // are collected for the DB instance. To disable collection of Enhanced Monitoring
    // metrics, specify 0.
    //
    // If MonitoringRoleArn is specified, then you must set MonitoringInterval to
    // a value other than 0.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    //
    // Valid Values: 0 | 1 | 5 | 10 | 15 | 30 | 60
    //
    // Default: 0
    MonitoringInterval *int64 `type:"integer"`

    // The ARN for the IAM role that permits RDS to send enhanced monitoring metrics
    // to Amazon CloudWatch Logs. For example, arn:aws:iam:123456789012:role/emaccess.
    // For information on creating a monitoring role, see Setting Up and Enabling
    // Enhanced Monitoring (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling)
    // in the Amazon RDS User Guide.
    //
    // If MonitoringInterval is set to a value other than 0, then you must supply
    // a MonitoringRoleArn value.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    MonitoringRoleArn *string `type:"string"`

    // Specifies whether the DB instance is a Multi-AZ deployment. You can't set
    // the AvailabilityZone parameter if the DB instance is a Multi-AZ deployment.
    //
    // This setting doesn't apply to the following DB instances:
    //
    //    * Amazon Aurora (DB instance Availability Zones (AZs) are managed by the
    //    DB cluster.)
    //
    //    * RDS Custom
    MultiAZ *bool `type:"boolean"`

    // Specifies whether to use the multi-tenant configuration or the single-tenant
    // configuration (default). This parameter only applies to RDS for Oracle container
    // database (CDB) engines.
    //
    // Note the following restrictions:
    //
    //    * The DB engine that you specify in the request must support the multi-tenant
    //    configuration. If you attempt to enable the multi-tenant configuration
    //    on a DB engine that doesn't support it, the request fails.
    //
    //    * If you specify the multi-tenant configuration when you create your DB
    //    instance, you can't later modify this DB instance to use the single-tenant
    //    configuration.
    MultiTenant *bool `type:"boolean"`

    // The name of the NCHAR character set for the Oracle DB instance.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    NcharCharacterSetName *string `type:"string"`

    // The network type of the DB instance.
    //
    // The network type is determined by the DBSubnetGroup specified for the DB
    // instance. A DBSubnetGroup can support only the IPv4 protocol or the IPv4
    // and the IPv6 protocols (DUAL).
    //
    // For more information, see Working with a DB instance in a VPC (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html)
    // in the Amazon RDS User Guide.
    //
    // Valid Values: IPV4 | DUAL
    NetworkType *string `type:"string"`

    // The option group to associate the DB instance with.
    //
    // Permanent options, such as the TDE option for Oracle Advanced Security TDE,
    // can't be removed from an option group. Also, that option group can't be removed
    // from a DB instance after it is associated with a DB instance.
    //
    // This setting doesn't apply to Amazon Aurora or RDS Custom DB instances.
    OptionGroupName *string `type:"string"`

    // The Amazon Web Services KMS key identifier for encryption of Performance
    // Insights data.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key.
    //
    // If you don't specify a value for PerformanceInsightsKMSKeyId, then Amazon
    // RDS uses your default KMS key. There is a default KMS key for your Amazon
    // Web Services account. Your Amazon Web Services account has a different default
    // KMS key for each Amazon Web Services Region.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    PerformanceInsightsKMSKeyId *string `type:"string"`

    // The number of days to retain Performance Insights data.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    //
    // Valid Values:
    //
    //    * 7
    //
    //    * month * 31, where month is a number of months from 1-23. Examples: 93
    //    (3 months * 31), 341 (11 months * 31), 589 (19 months * 31)
    //
    //    * 731
    //
    // Default: 7 days
    //
    // If you specify a retention period that isn't valid, such as 94, Amazon RDS
    // returns an error.
    PerformanceInsightsRetentionPeriod *int64 `type:"integer"`

    // The port number on which the database accepts connections.
    //
    // This setting doesn't apply to Aurora DB instances. The port number is managed
    // by the cluster.
    //
    // Valid Values: 1150-65535
    //
    // Default:
    //
    //    * RDS for Db2 - 50000
    //
    //    * RDS for MariaDB - 3306
    //
    //    * RDS for Microsoft SQL Server - 1433
    //
    //    * RDS for MySQL - 3306
    //
    //    * RDS for Oracle - 1521
    //
    //    * RDS for PostgreSQL - 5432
    //
    // Constraints:
    //
    //    * For RDS for Microsoft SQL Server, the value can't be 1234, 1434, 3260,
    //    3343, 3389, 47001, or 49152-49156.
    Port *int64 `type:"integer"`

    // The daily time range during which automated backups are created if automated
    // backups are enabled, using the BackupRetentionPeriod parameter. The default
    // is a 30-minute window selected at random from an 8-hour block of time for
    // each Amazon Web Services Region. For more information, see Backup window
    // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow)
    // in the Amazon RDS User Guide.
    //
    // This setting doesn't apply to Amazon Aurora DB instances. The daily time
    // range for creating automated backups is managed by the DB cluster.
    //
    // Constraints:
    //
    //    * Must be in the format hh24:mi-hh24:mi.
    //
    //    * Must be in Universal Coordinated Time (UTC).
    //
    //    * Must not conflict with the preferred maintenance window.
    //
    //    * Must be at least 30 minutes.
    PreferredBackupWindow *string `type:"string"`

    // The time range each week during which system maintenance can occur. For more
    // information, see Amazon RDS Maintenance Window (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#Concepts.DBMaintenance)
    // in the Amazon RDS User Guide.
    //
    // The default is a 30-minute window selected at random from an 8-hour block
    // of time for each Amazon Web Services Region, occurring on a random day of
    // the week.
    //
    // Constraints:
    //
    //    * Must be in the format ddd:hh24:mi-ddd:hh24:mi.
    //
    //    * The day values must be mon | tue | wed | thu | fri | sat | sun.
    //
    //    * Must be in Universal Coordinated Time (UTC).
    //
    //    * Must not conflict with the preferred backup window.
    //
    //    * Must be at least 30 minutes.
    PreferredMaintenanceWindow *string `type:"string"`

    // The number of CPU cores and the number of threads per core for the DB instance
    // class of the DB instance.
    //
    // This setting doesn't apply to Amazon Aurora or RDS Custom DB instances.
    ProcessorFeatures []*ProcessorFeature `locationNameList:"ProcessorFeature" type:"list"`

    // The order of priority in which an Aurora Replica is promoted to the primary
    // instance after a failure of the existing primary instance. For more information,
    // see Fault Tolerance for an Aurora DB Cluster (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.AuroraHighAvailability.html#Aurora.Managing.FaultTolerance)
    // in the Amazon Aurora User Guide.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    //
    // Default: 1
    //
    // Valid Values: 0 - 15
    PromotionTier *int64 `type:"integer"`

    // Specifies whether the DB instance is publicly accessible.
    //
    // When the DB instance is publicly accessible, its Domain Name System (DNS)
    // endpoint resolves to the private IP address from within the DB instance's
    // virtual private cloud (VPC). It resolves to the public IP address from outside
    // of the DB instance's VPC. Access to the DB instance is ultimately controlled
    // by the security group it uses. That public access is not permitted if the
    // security group assigned to the DB instance doesn't permit it.
    //
    // When the DB instance isn't publicly accessible, it is an internal DB instance
    // with a DNS name that resolves to a private IP address.
    //
    // Default: The default behavior varies depending on whether DBSubnetGroupName
    // is specified.
    //
    // If DBSubnetGroupName isn't specified, and PubliclyAccessible isn't specified,
    // the following applies:
    //
    //    * If the default VPC in the target Region doesn’t have an internet gateway
    //    attached to it, the DB instance is private.
    //
    //    * If the default VPC in the target Region has an internet gateway attached
    //    to it, the DB instance is public.
    //
    // If DBSubnetGroupName is specified, and PubliclyAccessible isn't specified,
    // the following applies:
    //
    //    * If the subnets are part of a VPC that doesn’t have an internet gateway
    //    attached to it, the DB instance is private.
    //
    //    * If the subnets are part of a VPC that has an internet gateway attached
    //    to it, the DB instance is public.
    PubliclyAccessible *bool `type:"boolean"`

    // Specifes whether the DB instance is encrypted. By default, it isn't encrypted.
    //
    // For RDS Custom DB instances, either enable this setting or leave it unset.
    // Otherwise, Amazon RDS reports an error.
    //
    // This setting doesn't apply to Amazon Aurora DB instances. The encryption
    // for DB instances is managed by the DB cluster.
    StorageEncrypted *bool `type:"boolean"`

    // The storage throughput value for the DB instance.
    //
    // This setting applies only to the gp3 storage type.
    //
    // This setting doesn't apply to Amazon Aurora or RDS Custom DB instances.
    StorageThroughput *int64 `type:"integer"`

    // The storage type to associate with the DB instance.
    //
    // If you specify io1, io2, or gp3, you must also include a value for the Iops
    // parameter.
    //
    // This setting doesn't apply to Amazon Aurora DB instances. Storage is managed
    // by the DB cluster.
    //
    // Valid Values: gp2 | gp3 | io1 | io2 | standard
    //
    // Default: io1, if the Iops parameter is specified. Otherwise, gp2.
    StorageType *string `type:"string"`

    // Tags to assign to the DB instance.
    Tags []*Tag `locationNameList:"Tag" type:"list"`

    // The ARN from the key store with which to associate the instance for TDE encryption.
    //
    // This setting doesn't apply to Amazon Aurora or RDS Custom DB instances.
    TdeCredentialArn *string `type:"string"`

    // The password for the given ARN from the key store in order to access the
    // device.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    TdeCredentialPassword *string `type:"string"`

    // The time zone of the DB instance. The time zone parameter is currently supported
    // only by Microsoft SQL Server (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.TimeZone).
    Timezone *string `type:"string"`

    // A list of Amazon EC2 VPC security groups to associate with this DB instance.
    //
    // This setting doesn't apply to Amazon Aurora DB instances. The associated
    // list of EC2 VPC security groups is managed by the DB cluster.
    //
    // Default: The default EC2 VPC security group for the DB subnet group's VPC.
    VpcSecurityGroupIds []*string `locationNameList:"VpcSecurityGroupId" type:"list"`
    // contains filtered or unexported fields
}

func (CreateDBInstanceInput) GoString

func (s CreateDBInstanceInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBInstanceInput) SetAllocatedStorage

func (s *CreateDBInstanceInput) SetAllocatedStorage(v int64) *CreateDBInstanceInput

SetAllocatedStorage sets the AllocatedStorage field's value.

func (*CreateDBInstanceInput) SetAutoMinorVersionUpgrade

func (s *CreateDBInstanceInput) SetAutoMinorVersionUpgrade(v bool) *CreateDBInstanceInput

SetAutoMinorVersionUpgrade sets the AutoMinorVersionUpgrade field's value.

func (*CreateDBInstanceInput) SetAvailabilityZone

func (s *CreateDBInstanceInput) SetAvailabilityZone(v string) *CreateDBInstanceInput

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*CreateDBInstanceInput) SetBackupRetentionPeriod

func (s *CreateDBInstanceInput) SetBackupRetentionPeriod(v int64) *CreateDBInstanceInput

SetBackupRetentionPeriod sets the BackupRetentionPeriod field's value.

func (*CreateDBInstanceInput) SetBackupTarget

func (s *CreateDBInstanceInput) SetBackupTarget(v string) *CreateDBInstanceInput

SetBackupTarget sets the BackupTarget field's value.

func (*CreateDBInstanceInput) SetCACertificateIdentifier

func (s *CreateDBInstanceInput) SetCACertificateIdentifier(v string) *CreateDBInstanceInput

SetCACertificateIdentifier sets the CACertificateIdentifier field's value.

func (*CreateDBInstanceInput) SetCharacterSetName

func (s *CreateDBInstanceInput) SetCharacterSetName(v string) *CreateDBInstanceInput

SetCharacterSetName sets the CharacterSetName field's value.

func (*CreateDBInstanceInput) SetCopyTagsToSnapshot

func (s *CreateDBInstanceInput) SetCopyTagsToSnapshot(v bool) *CreateDBInstanceInput

SetCopyTagsToSnapshot sets the CopyTagsToSnapshot field's value.

func (*CreateDBInstanceInput) SetCustomIamInstanceProfile

func (s *CreateDBInstanceInput) SetCustomIamInstanceProfile(v string) *CreateDBInstanceInput

SetCustomIamInstanceProfile sets the CustomIamInstanceProfile field's value.

func (*CreateDBInstanceInput) SetDBClusterIdentifier

func (s *CreateDBInstanceInput) SetDBClusterIdentifier(v string) *CreateDBInstanceInput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*CreateDBInstanceInput) SetDBInstanceClass

func (s *CreateDBInstanceInput) SetDBInstanceClass(v string) *CreateDBInstanceInput

SetDBInstanceClass sets the DBInstanceClass field's value.

func (*CreateDBInstanceInput) SetDBInstanceIdentifier

func (s *CreateDBInstanceInput) SetDBInstanceIdentifier(v string) *CreateDBInstanceInput

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*CreateDBInstanceInput) SetDBName

func (s *CreateDBInstanceInput) SetDBName(v string) *CreateDBInstanceInput

SetDBName sets the DBName field's value.

func (*CreateDBInstanceInput) SetDBParameterGroupName

func (s *CreateDBInstanceInput) SetDBParameterGroupName(v string) *CreateDBInstanceInput

SetDBParameterGroupName sets the DBParameterGroupName field's value.

func (*CreateDBInstanceInput) SetDBSecurityGroups

func (s *CreateDBInstanceInput) SetDBSecurityGroups(v []*string) *CreateDBInstanceInput

SetDBSecurityGroups sets the DBSecurityGroups field's value.

func (*CreateDBInstanceInput) SetDBSubnetGroupName

func (s *CreateDBInstanceInput) SetDBSubnetGroupName(v string) *CreateDBInstanceInput

SetDBSubnetGroupName sets the DBSubnetGroupName field's value.

func (*CreateDBInstanceInput) SetDBSystemId

func (s *CreateDBInstanceInput) SetDBSystemId(v string) *CreateDBInstanceInput

SetDBSystemId sets the DBSystemId field's value.

func (*CreateDBInstanceInput) SetDedicatedLogVolume

func (s *CreateDBInstanceInput) SetDedicatedLogVolume(v bool) *CreateDBInstanceInput

SetDedicatedLogVolume sets the DedicatedLogVolume field's value.

func (*CreateDBInstanceInput) SetDeletionProtection

func (s *CreateDBInstanceInput) SetDeletionProtection(v bool) *CreateDBInstanceInput

SetDeletionProtection sets the DeletionProtection field's value.

func (*CreateDBInstanceInput) SetDomain

func (s *CreateDBInstanceInput) SetDomain(v string) *CreateDBInstanceInput

SetDomain sets the Domain field's value.

func (*CreateDBInstanceInput) SetDomainAuthSecretArn

func (s *CreateDBInstanceInput) SetDomainAuthSecretArn(v string) *CreateDBInstanceInput

SetDomainAuthSecretArn sets the DomainAuthSecretArn field's value.

func (*CreateDBInstanceInput) SetDomainDnsIps

func (s *CreateDBInstanceInput) SetDomainDnsIps(v []*string) *CreateDBInstanceInput

SetDomainDnsIps sets the DomainDnsIps field's value.

func (*CreateDBInstanceInput) SetDomainFqdn

func (s *CreateDBInstanceInput) SetDomainFqdn(v string) *CreateDBInstanceInput

SetDomainFqdn sets the DomainFqdn field's value.

func (*CreateDBInstanceInput) SetDomainIAMRoleName

func (s *CreateDBInstanceInput) SetDomainIAMRoleName(v string) *CreateDBInstanceInput

SetDomainIAMRoleName sets the DomainIAMRoleName field's value.

func (*CreateDBInstanceInput) SetDomainOu

func (s *CreateDBInstanceInput) SetDomainOu(v string) *CreateDBInstanceInput

SetDomainOu sets the DomainOu field's value.

func (*CreateDBInstanceInput) SetEnableCloudwatchLogsExports

func (s *CreateDBInstanceInput) SetEnableCloudwatchLogsExports(v []*string) *CreateDBInstanceInput

SetEnableCloudwatchLogsExports sets the EnableCloudwatchLogsExports field's value.

func (*CreateDBInstanceInput) SetEnableCustomerOwnedIp

func (s *CreateDBInstanceInput) SetEnableCustomerOwnedIp(v bool) *CreateDBInstanceInput

SetEnableCustomerOwnedIp sets the EnableCustomerOwnedIp field's value.

func (*CreateDBInstanceInput) SetEnableIAMDatabaseAuthentication

func (s *CreateDBInstanceInput) SetEnableIAMDatabaseAuthentication(v bool) *CreateDBInstanceInput

SetEnableIAMDatabaseAuthentication sets the EnableIAMDatabaseAuthentication field's value.

func (*CreateDBInstanceInput) SetEnablePerformanceInsights

func (s *CreateDBInstanceInput) SetEnablePerformanceInsights(v bool) *CreateDBInstanceInput

SetEnablePerformanceInsights sets the EnablePerformanceInsights field's value.

func (*CreateDBInstanceInput) SetEngine

func (s *CreateDBInstanceInput) SetEngine(v string) *CreateDBInstanceInput

SetEngine sets the Engine field's value.

func (*CreateDBInstanceInput) SetEngineVersion

func (s *CreateDBInstanceInput) SetEngineVersion(v string) *CreateDBInstanceInput

SetEngineVersion sets the EngineVersion field's value.

func (*CreateDBInstanceInput) SetIops

func (s *CreateDBInstanceInput) SetIops(v int64) *CreateDBInstanceInput

SetIops sets the Iops field's value.

func (*CreateDBInstanceInput) SetKmsKeyId

func (s *CreateDBInstanceInput) SetKmsKeyId(v string) *CreateDBInstanceInput

SetKmsKeyId sets the KmsKeyId field's value.

func (*CreateDBInstanceInput) SetLicenseModel

func (s *CreateDBInstanceInput) SetLicenseModel(v string) *CreateDBInstanceInput

SetLicenseModel sets the LicenseModel field's value.

func (*CreateDBInstanceInput) SetManageMasterUserPassword

func (s *CreateDBInstanceInput) SetManageMasterUserPassword(v bool) *CreateDBInstanceInput

SetManageMasterUserPassword sets the ManageMasterUserPassword field's value.

func (*CreateDBInstanceInput) SetMasterUserPassword

func (s *CreateDBInstanceInput) SetMasterUserPassword(v string) *CreateDBInstanceInput

SetMasterUserPassword sets the MasterUserPassword field's value.

func (*CreateDBInstanceInput) SetMasterUserSecretKmsKeyId

func (s *CreateDBInstanceInput) SetMasterUserSecretKmsKeyId(v string) *CreateDBInstanceInput

SetMasterUserSecretKmsKeyId sets the MasterUserSecretKmsKeyId field's value.

func (*CreateDBInstanceInput) SetMasterUsername

func (s *CreateDBInstanceInput) SetMasterUsername(v string) *CreateDBInstanceInput

SetMasterUsername sets the MasterUsername field's value.

func (*CreateDBInstanceInput) SetMaxAllocatedStorage

func (s *CreateDBInstanceInput) SetMaxAllocatedStorage(v int64) *CreateDBInstanceInput

SetMaxAllocatedStorage sets the MaxAllocatedStorage field's value.

func (*CreateDBInstanceInput) SetMonitoringInterval

func (s *CreateDBInstanceInput) SetMonitoringInterval(v int64) *CreateDBInstanceInput

SetMonitoringInterval sets the MonitoringInterval field's value.

func (*CreateDBInstanceInput) SetMonitoringRoleArn

func (s *CreateDBInstanceInput) SetMonitoringRoleArn(v string) *CreateDBInstanceInput

SetMonitoringRoleArn sets the MonitoringRoleArn field's value.

func (*CreateDBInstanceInput) SetMultiAZ

func (s *CreateDBInstanceInput) SetMultiAZ(v bool) *CreateDBInstanceInput

SetMultiAZ sets the MultiAZ field's value.

func (*CreateDBInstanceInput) SetMultiTenant

func (s *CreateDBInstanceInput) SetMultiTenant(v bool) *CreateDBInstanceInput

SetMultiTenant sets the MultiTenant field's value.

func (*CreateDBInstanceInput) SetNcharCharacterSetName

func (s *CreateDBInstanceInput) SetNcharCharacterSetName(v string) *CreateDBInstanceInput

SetNcharCharacterSetName sets the NcharCharacterSetName field's value.

func (*CreateDBInstanceInput) SetNetworkType

func (s *CreateDBInstanceInput) SetNetworkType(v string) *CreateDBInstanceInput

SetNetworkType sets the NetworkType field's value.

func (*CreateDBInstanceInput) SetOptionGroupName

func (s *CreateDBInstanceInput) SetOptionGroupName(v string) *CreateDBInstanceInput

SetOptionGroupName sets the OptionGroupName field's value.

func (*CreateDBInstanceInput) SetPerformanceInsightsKMSKeyId

func (s *CreateDBInstanceInput) SetPerformanceInsightsKMSKeyId(v string) *CreateDBInstanceInput

SetPerformanceInsightsKMSKeyId sets the PerformanceInsightsKMSKeyId field's value.

func (*CreateDBInstanceInput) SetPerformanceInsightsRetentionPeriod

func (s *CreateDBInstanceInput) SetPerformanceInsightsRetentionPeriod(v int64) *CreateDBInstanceInput

SetPerformanceInsightsRetentionPeriod sets the PerformanceInsightsRetentionPeriod field's value.

func (*CreateDBInstanceInput) SetPort

func (s *CreateDBInstanceInput) SetPort(v int64) *CreateDBInstanceInput

SetPort sets the Port field's value.

func (*CreateDBInstanceInput) SetPreferredBackupWindow

func (s *CreateDBInstanceInput) SetPreferredBackupWindow(v string) *CreateDBInstanceInput

SetPreferredBackupWindow sets the PreferredBackupWindow field's value.

func (*CreateDBInstanceInput) SetPreferredMaintenanceWindow

func (s *CreateDBInstanceInput) SetPreferredMaintenanceWindow(v string) *CreateDBInstanceInput

SetPreferredMaintenanceWindow sets the PreferredMaintenanceWindow field's value.

func (*CreateDBInstanceInput) SetProcessorFeatures

func (s *CreateDBInstanceInput) SetProcessorFeatures(v []*ProcessorFeature) *CreateDBInstanceInput

SetProcessorFeatures sets the ProcessorFeatures field's value.

func (*CreateDBInstanceInput) SetPromotionTier

func (s *CreateDBInstanceInput) SetPromotionTier(v int64) *CreateDBInstanceInput

SetPromotionTier sets the PromotionTier field's value.

func (*CreateDBInstanceInput) SetPubliclyAccessible

func (s *CreateDBInstanceInput) SetPubliclyAccessible(v bool) *CreateDBInstanceInput

SetPubliclyAccessible sets the PubliclyAccessible field's value.

func (*CreateDBInstanceInput) SetStorageEncrypted

func (s *CreateDBInstanceInput) SetStorageEncrypted(v bool) *CreateDBInstanceInput

SetStorageEncrypted sets the StorageEncrypted field's value.

func (*CreateDBInstanceInput) SetStorageThroughput

func (s *CreateDBInstanceInput) SetStorageThroughput(v int64) *CreateDBInstanceInput

SetStorageThroughput sets the StorageThroughput field's value.

func (*CreateDBInstanceInput) SetStorageType

func (s *CreateDBInstanceInput) SetStorageType(v string) *CreateDBInstanceInput

SetStorageType sets the StorageType field's value.

func (*CreateDBInstanceInput) SetTags

func (s *CreateDBInstanceInput) SetTags(v []*Tag) *CreateDBInstanceInput

SetTags sets the Tags field's value.

func (*CreateDBInstanceInput) SetTdeCredentialArn

func (s *CreateDBInstanceInput) SetTdeCredentialArn(v string) *CreateDBInstanceInput

SetTdeCredentialArn sets the TdeCredentialArn field's value.

func (*CreateDBInstanceInput) SetTdeCredentialPassword

func (s *CreateDBInstanceInput) SetTdeCredentialPassword(v string) *CreateDBInstanceInput

SetTdeCredentialPassword sets the TdeCredentialPassword field's value.

func (*CreateDBInstanceInput) SetTimezone

func (s *CreateDBInstanceInput) SetTimezone(v string) *CreateDBInstanceInput

SetTimezone sets the Timezone field's value.

func (*CreateDBInstanceInput) SetVpcSecurityGroupIds

func (s *CreateDBInstanceInput) SetVpcSecurityGroupIds(v []*string) *CreateDBInstanceInput

SetVpcSecurityGroupIds sets the VpcSecurityGroupIds field's value.

func (CreateDBInstanceInput) String

func (s CreateDBInstanceInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBInstanceInput) Validate

func (s *CreateDBInstanceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateDBInstanceOutput

type CreateDBInstanceOutput struct {

    // Contains the details of an Amazon RDS DB instance.
    //
    // This data type is used as a response element in the operations CreateDBInstance,
    // CreateDBInstanceReadReplica, DeleteDBInstance, DescribeDBInstances, ModifyDBInstance,
    // PromoteReadReplica, RebootDBInstance, RestoreDBInstanceFromDBSnapshot, RestoreDBInstanceFromS3,
    // RestoreDBInstanceToPointInTime, StartDBInstance, and StopDBInstance.
    DBInstance *DBInstance `type:"structure"`
    // contains filtered or unexported fields
}

func (CreateDBInstanceOutput) GoString

func (s CreateDBInstanceOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBInstanceOutput) SetDBInstance

func (s *CreateDBInstanceOutput) SetDBInstance(v *DBInstance) *CreateDBInstanceOutput

SetDBInstance sets the DBInstance field's value.

func (CreateDBInstanceOutput) String

func (s CreateDBInstanceOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CreateDBInstanceReadReplicaInput

type CreateDBInstanceReadReplicaInput struct {

    // The amount of storage (in gibibytes) to allocate initially for the read replica.
    // Follow the allocation rules specified in CreateDBInstance.
    //
    // Be sure to allocate enough storage for your read replica so that the create
    // operation can succeed. You can also allocate additional storage for future
    // growth.
    AllocatedStorage *int64 `type:"integer"`

    // Specifies whether to automatically apply minor engine upgrades to the read
    // replica during the maintenance window.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    //
    // Default: Inherits the value from the source DB instance.
    AutoMinorVersionUpgrade *bool `type:"boolean"`

    // The Availability Zone (AZ) where the read replica will be created.
    //
    // Default: A random, system-chosen Availability Zone in the endpoint's Amazon
    // Web Services Region.
    //
    // Example: us-east-1d
    AvailabilityZone *string `type:"string"`

    // Specifies whether to copy all tags from the read replica to snapshots of
    // the read replica. By default, tags aren't copied.
    CopyTagsToSnapshot *bool `type:"boolean"`

    // The instance profile associated with the underlying Amazon EC2 instance of
    // an RDS Custom DB instance. The instance profile must meet the following requirements:
    //
    //    * The profile must exist in your account.
    //
    //    * The profile must have an IAM role that Amazon EC2 has permissions to
    //    assume.
    //
    //    * The instance profile name and the associated IAM role name must start
    //    with the prefix AWSRDSCustom.
    //
    // For the list of permissions required for the IAM role, see Configure IAM
    // and your VPC (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc)
    // in the Amazon RDS User Guide.
    //
    // This setting is required for RDS Custom DB instances.
    CustomIamInstanceProfile *string `type:"string"`

    // The compute and memory capacity of the read replica, for example db.m4.large.
    // Not all DB instance classes are available in all Amazon Web Services Regions,
    // or for all database engines. For the full list of DB instance classes, and
    // availability for your engine, see DB Instance Class (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html)
    // in the Amazon RDS User Guide.
    //
    // Default: Inherits the value from the source DB instance.
    DBInstanceClass *string `type:"string"`

    // The DB instance identifier of the read replica. This identifier is the unique
    // key that identifies a DB instance. This parameter is stored as a lowercase
    // string.
    //
    // DBInstanceIdentifier is a required field
    DBInstanceIdentifier *string `type:"string" required:"true"`

    // The name of the DB parameter group to associate with this DB instance.
    //
    // If you don't specify a value for DBParameterGroupName, then Amazon RDS uses
    // the DBParameterGroup of the source DB instance for a same Region read replica,
    // or the default DBParameterGroup for the specified DB engine for a cross-Region
    // read replica.
    //
    // Specifying a parameter group for this operation is only supported for MySQL
    // DB instances for cross-Region read replicas and for Oracle DB instances.
    // It isn't supported for MySQL DB instances for same Region read replicas or
    // for RDS Custom.
    //
    // Constraints:
    //
    //    * Must be 1 to 255 letters, numbers, or hyphens.
    //
    //    * First character must be a letter.
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens.
    DBParameterGroupName *string `type:"string"`

    // A DB subnet group for the DB instance. The new DB instance is created in
    // the VPC associated with the DB subnet group. If no DB subnet group is specified,
    // then the new DB instance isn't created in a VPC.
    //
    // Constraints:
    //
    //    * If supplied, must match the name of an existing DB subnet group.
    //
    //    * The specified DB subnet group must be in the same Amazon Web Services
    //    Region in which the operation is running.
    //
    //    * All read replicas in one Amazon Web Services Region that are created
    //    from the same source DB instance must either: Specify DB subnet groups
    //    from the same VPC. All these read replicas are created in the same VPC.
    //    Not specify a DB subnet group. All these read replicas are created outside
    //    of any VPC.
    //
    // Example: mydbsubnetgroup
    DBSubnetGroupName *string `type:"string"`

    // Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
    DedicatedLogVolume *bool `type:"boolean"`

    // Specifies whether to enable deletion protection for the DB instance. The
    // database can't be deleted when deletion protection is enabled. By default,
    // deletion protection isn't enabled. For more information, see Deleting a DB
    // Instance (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html).
    DeletionProtection *bool `type:"boolean"`

    // DestinationRegion is used for presigning the request to a given region.
    DestinationRegion *string `type:"string"`

    // The Active Directory directory ID to create the DB instance in. Currently,
    // only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances can
    // be created in an Active Directory Domain.
    //
    // For more information, see Kerberos Authentication (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html)
    // in the Amazon RDS User Guide.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    Domain *string `type:"string"`

    // The ARN for the Secrets Manager secret with the credentials for the user
    // joining the domain.
    //
    // Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456
    DomainAuthSecretArn *string `type:"string"`

    // The IPv4 DNS IP addresses of your primary and secondary Active Directory
    // domain controllers.
    //
    // Constraints:
    //
    //    * Two IP addresses must be provided. If there isn't a secondary domain
    //    controller, use the IP address of the primary domain controller for both
    //    entries in the list.
    //
    // Example: 123.124.125.126,234.235.236.237
    DomainDnsIps []*string `type:"list"`

    // The fully qualified domain name (FQDN) of an Active Directory domain.
    //
    // Constraints:
    //
    //    * Can't be longer than 64 characters.
    //
    // Example: mymanagedADtest.mymanagedAD.mydomain
    DomainFqdn *string `type:"string"`

    // The name of the IAM role to use when making API calls to the Directory Service.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    DomainIAMRoleName *string `type:"string"`

    // The Active Directory organizational unit for your DB instance to join.
    //
    // Constraints:
    //
    //    * Must be in the distinguished name format.
    //
    //    * Can't be longer than 64 characters.
    //
    // Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain
    DomainOu *string `type:"string"`

    // The list of logs that the new DB instance is to export to CloudWatch Logs.
    // The values in the list depend on the DB engine being used. For more information,
    // see Publishing Database Logs to Amazon CloudWatch Logs (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch)
    // in the Amazon RDS User Guide.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    EnableCloudwatchLogsExports []*string `type:"list"`

    // Specifies whether to enable a customer-owned IP address (CoIP) for an RDS
    // on Outposts read replica.
    //
    // A CoIP provides local or external connectivity to resources in your Outpost
    // subnets through your on-premises network. For some use cases, a CoIP can
    // provide lower latency for connections to the read replica from outside of
    // its virtual private cloud (VPC) on your local network.
    //
    // For more information about RDS on Outposts, see Working with Amazon RDS on
    // Amazon Web Services Outposts (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html)
    // in the Amazon RDS User Guide.
    //
    // For more information about CoIPs, see Customer-owned IP addresses (https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing)
    // in the Amazon Web Services Outposts User Guide.
    EnableCustomerOwnedIp *bool `type:"boolean"`

    // Specifies whether to enable mapping of Amazon Web Services Identity and Access
    // Management (IAM) accounts to database accounts. By default, mapping isn't
    // enabled.
    //
    // For more information about IAM database authentication, see IAM Database
    // Authentication for MySQL and PostgreSQL (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html)
    // in the Amazon RDS User Guide.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    EnableIAMDatabaseAuthentication *bool `type:"boolean"`

    // Specifies whether to enable Performance Insights for the read replica.
    //
    // For more information, see Using Amazon Performance Insights (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html)
    // in the Amazon RDS User Guide.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    EnablePerformanceInsights *bool `type:"boolean"`

    // The amount of Provisioned IOPS (input/output operations per second) to initially
    // allocate for the DB instance.
    Iops *int64 `type:"integer"`

    // The Amazon Web Services KMS key identifier for an encrypted read replica.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key.
    //
    // If you create an encrypted read replica in the same Amazon Web Services Region
    // as the source DB instance or Multi-AZ DB cluster, don't specify a value for
    // this parameter. A read replica in the same Amazon Web Services Region is
    // always encrypted with the same KMS key as the source DB instance or cluster.
    //
    // If you create an encrypted read replica in a different Amazon Web Services
    // Region, then you must specify a KMS key identifier for the destination Amazon
    // Web Services Region. KMS keys are specific to the Amazon Web Services Region
    // that they are created in, and you can't use KMS keys from one Amazon Web
    // Services Region in another Amazon Web Services Region.
    //
    // You can't create an encrypted read replica from an unencrypted DB instance
    // or Multi-AZ DB cluster.
    //
    // This setting doesn't apply to RDS Custom, which uses the same KMS key as
    // the primary replica.
    KmsKeyId *string `type:"string"`

    // The upper limit in gibibytes (GiB) to which Amazon RDS can automatically
    // scale the storage of the DB instance.
    //
    // For more information about this setting, including limitations that apply
    // to it, see Managing capacity automatically with Amazon RDS storage autoscaling
    // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling)
    // in the Amazon RDS User Guide.
    MaxAllocatedStorage *int64 `type:"integer"`

    // The interval, in seconds, between points when Enhanced Monitoring metrics
    // are collected for the read replica. To disable collection of Enhanced Monitoring
    // metrics, specify 0. The default is 0.
    //
    // If MonitoringRoleArn is specified, then you must set MonitoringInterval to
    // a value other than 0.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    //
    // Valid Values: 0, 1, 5, 10, 15, 30, 60
    //
    // Default: 0
    MonitoringInterval *int64 `type:"integer"`

    // The ARN for the IAM role that permits RDS to send enhanced monitoring metrics
    // to Amazon CloudWatch Logs. For example, arn:aws:iam:123456789012:role/emaccess.
    // For information on creating a monitoring role, go to To create an IAM role
    // for Amazon RDS Enhanced Monitoring (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.html#USER_Monitoring.OS.IAMRole)
    // in the Amazon RDS User Guide.
    //
    // If MonitoringInterval is set to a value other than 0, then you must supply
    // a MonitoringRoleArn value.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    MonitoringRoleArn *string `type:"string"`

    // Specifies whether the read replica is in a Multi-AZ deployment.
    //
    // You can create a read replica as a Multi-AZ DB instance. RDS creates a standby
    // of your replica in another Availability Zone for failover support for the
    // replica. Creating your read replica as a Multi-AZ DB instance is independent
    // of whether the source is a Multi-AZ DB instance or a Multi-AZ DB cluster.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    MultiAZ *bool `type:"boolean"`

    // The network type of the DB instance.
    //
    // Valid Values:
    //
    //    * IPV4
    //
    //    * DUAL
    //
    // The network type is determined by the DBSubnetGroup specified for read replica.
    // A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6
    // protocols (DUAL).
    //
    // For more information, see Working with a DB instance in a VPC (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html)
    // in the Amazon RDS User Guide.
    NetworkType *string `type:"string"`

    // The option group to associate the DB instance with. If not specified, RDS
    // uses the option group associated with the source DB instance or cluster.
    //
    // For SQL Server, you must use the option group associated with the source.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    OptionGroupName *string `type:"string"`

    // The Amazon Web Services KMS key identifier for encryption of Performance
    // Insights data.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key.
    //
    // If you do not specify a value for PerformanceInsightsKMSKeyId, then Amazon
    // RDS uses your default KMS key. There is a default KMS key for your Amazon
    // Web Services account. Your Amazon Web Services account has a different default
    // KMS key for each Amazon Web Services Region.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    PerformanceInsightsKMSKeyId *string `type:"string"`

    // The number of days to retain Performance Insights data.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    //
    // Valid Values:
    //
    //    * 7
    //
    //    * month * 31, where month is a number of months from 1-23. Examples: 93
    //    (3 months * 31), 341 (11 months * 31), 589 (19 months * 31)
    //
    //    * 731
    //
    // Default: 7 days
    //
    // If you specify a retention period that isn't valid, such as 94, Amazon RDS
    // returns an error.
    PerformanceInsightsRetentionPeriod *int64 `type:"integer"`

    // The port number that the DB instance uses for connections.
    //
    // Valid Values: 1150-65535
    //
    // Default: Inherits the value from the source DB instance.
    Port *int64 `type:"integer"`

    // When you are creating a read replica from one Amazon Web Services GovCloud
    // (US) Region to another or from one China Amazon Web Services Region to another,
    // the URL that contains a Signature Version 4 signed request for the CreateDBInstanceReadReplica
    // API operation in the source Amazon Web Services Region that contains the
    // source DB instance.
    //
    // This setting applies only to Amazon Web Services GovCloud (US) Regions and
    // China Amazon Web Services Regions. It's ignored in other Amazon Web Services
    // Regions.
    //
    // This setting applies only when replicating from a source DB instance. Source
    // DB clusters aren't supported in Amazon Web Services GovCloud (US) Regions
    // and China Amazon Web Services Regions.
    //
    // You must specify this parameter when you create an encrypted read replica
    // from another Amazon Web Services Region by using the Amazon RDS API. Don't
    // specify PreSignedUrl when you are creating an encrypted read replica in the
    // same Amazon Web Services Region.
    //
    // The presigned URL must be a valid request for the CreateDBInstanceReadReplica
    // API operation that can run in the source Amazon Web Services Region that
    // contains the encrypted source DB instance. The presigned URL request must
    // contain the following parameter values:
    //
    //    * DestinationRegion - The Amazon Web Services Region that the encrypted
    //    read replica is created in. This Amazon Web Services Region is the same
    //    one where the CreateDBInstanceReadReplica operation is called that contains
    //    this presigned URL. For example, if you create an encrypted DB instance
    //    in the us-west-1 Amazon Web Services Region, from a source DB instance
    //    in the us-east-2 Amazon Web Services Region, then you call the CreateDBInstanceReadReplica
    //    operation in the us-east-1 Amazon Web Services Region and provide a presigned
    //    URL that contains a call to the CreateDBInstanceReadReplica operation
    //    in the us-west-2 Amazon Web Services Region. For this example, the DestinationRegion
    //    in the presigned URL must be set to the us-east-1 Amazon Web Services
    //    Region.
    //
    //    * KmsKeyId - The KMS key identifier for the key to use to encrypt the
    //    read replica in the destination Amazon Web Services Region. This is the
    //    same identifier for both the CreateDBInstanceReadReplica operation that
    //    is called in the destination Amazon Web Services Region, and the operation
    //    contained in the presigned URL.
    //
    //    * SourceDBInstanceIdentifier - The DB instance identifier for the encrypted
    //    DB instance to be replicated. This identifier must be in the Amazon Resource
    //    Name (ARN) format for the source Amazon Web Services Region. For example,
    //    if you are creating an encrypted read replica from a DB instance in the
    //    us-west-2 Amazon Web Services Region, then your SourceDBInstanceIdentifier
    //    looks like the following example: arn:aws:rds:us-west-2:123456789012:instance:mysql-instance1-20161115.
    //
    // To learn how to generate a Signature Version 4 signed request, see Authenticating
    // Requests: Using Query Parameters (Amazon Web Services Signature Version 4)
    // (https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html)
    // and Signature Version 4 Signing Process (https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html).
    //
    // If you are using an Amazon Web Services SDK tool or the CLI, you can specify
    // SourceRegion (or --source-region for the CLI) instead of specifying PreSignedUrl
    // manually. Specifying SourceRegion autogenerates a presigned URL that is a
    // valid request for the operation that can run in the source Amazon Web Services
    // Region.
    //
    // SourceRegion isn't supported for SQL Server, because Amazon RDS for SQL Server
    // doesn't support cross-Region read replicas.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    PreSignedUrl *string `type:"string"`

    // The number of CPU cores and the number of threads per core for the DB instance
    // class of the DB instance.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    ProcessorFeatures []*ProcessorFeature `locationNameList:"ProcessorFeature" type:"list"`

    // Specifies whether the DB instance is publicly accessible.
    //
    // When the DB cluster is publicly accessible, its Domain Name System (DNS)
    // endpoint resolves to the private IP address from within the DB cluster's
    // virtual private cloud (VPC). It resolves to the public IP address from outside
    // of the DB cluster's VPC. Access to the DB cluster is ultimately controlled
    // by the security group it uses. That public access isn't permitted if the
    // security group assigned to the DB cluster doesn't permit it.
    //
    // When the DB instance isn't publicly accessible, it is an internal DB instance
    // with a DNS name that resolves to a private IP address.
    //
    // For more information, see CreateDBInstance.
    PubliclyAccessible *bool `type:"boolean"`

    // The open mode of the replica database: mounted or read-only.
    //
    // This parameter is only supported for Oracle DB instances.
    //
    // Mounted DB replicas are included in Oracle Database Enterprise Edition. The
    // main use case for mounted replicas is cross-Region disaster recovery. The
    // primary database doesn't use Active Data Guard to transmit information to
    // the mounted replica. Because it doesn't accept user connections, a mounted
    // replica can't serve a read-only workload.
    //
    // You can create a combination of mounted and read-only DB replicas for the
    // same primary DB instance. For more information, see Working with Oracle Read
    // Replicas for Amazon RDS (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html)
    // in the Amazon RDS User Guide.
    //
    // For RDS Custom, you must specify this parameter and set it to mounted. The
    // value won't be set by default. After replica creation, you can manage the
    // open mode manually.
    ReplicaMode *string `type:"string" enum:"ReplicaMode"`

    // The identifier of the Multi-AZ DB cluster that will act as the source for
    // the read replica. Each DB cluster can have up to 15 read replicas.
    //
    // Constraints:
    //
    //    * Must be the identifier of an existing Multi-AZ DB cluster.
    //
    //    * Can't be specified if the SourceDBInstanceIdentifier parameter is also
    //    specified.
    //
    //    * The specified DB cluster must have automatic backups enabled, that is,
    //    its backup retention period must be greater than 0.
    //
    //    * The source DB cluster must be in the same Amazon Web Services Region
    //    as the read replica. Cross-Region replication isn't supported.
    SourceDBClusterIdentifier *string `type:"string"`

    // The identifier of the DB instance that will act as the source for the read
    // replica. Each DB instance can have up to 15 read replicas, with the exception
    // of Oracle and SQL Server, which can have up to five.
    //
    // Constraints:
    //
    //    * Must be the identifier of an existing Db2, MariaDB, MySQL, Oracle, PostgreSQL,
    //    or SQL Server DB instance.
    //
    //    * Can't be specified if the SourceDBClusterIdentifier parameter is also
    //    specified.
    //
    //    * For the limitations of Oracle read replicas, see Version and licensing
    //    considerations for RDS for Oracle replicas (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.limitations.html#oracle-read-replicas.limitations.versions-and-licenses)
    //    in the Amazon RDS User Guide.
    //
    //    * For the limitations of SQL Server read replicas, see Read replica limitations
    //    with SQL Server (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/SQLServer.ReadReplicas.html#SQLServer.ReadReplicas.Limitations)
    //    in the Amazon RDS User Guide.
    //
    //    * The specified DB instance must have automatic backups enabled, that
    //    is, its backup retention period must be greater than 0.
    //
    //    * If the source DB instance is in the same Amazon Web Services Region
    //    as the read replica, specify a valid DB instance identifier.
    //
    //    * If the source DB instance is in a different Amazon Web Services Region
    //    from the read replica, specify a valid DB instance ARN. For more information,
    //    see Constructing an ARN for Amazon RDS (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing)
    //    in the Amazon RDS User Guide. This doesn't apply to SQL Server or RDS
    //    Custom, which don't support cross-Region replicas.
    SourceDBInstanceIdentifier *string `type:"string"`

    // SourceRegion is the source region where the resource exists. This is not
    // sent over the wire and is only used for presigning. This value should always
    // have the same region as the source ARN.
    SourceRegion *string `type:"string" ignore:"true"`

    // Specifies the storage throughput value for the read replica.
    //
    // This setting doesn't apply to RDS Custom or Amazon Aurora DB instances.
    StorageThroughput *int64 `type:"integer"`

    // The storage type to associate with the read replica.
    //
    // If you specify io1, io2, or gp3, you must also include a value for the Iops
    // parameter.
    //
    // Valid Values: gp2 | gp3 | io1 | io2 | standard
    //
    // Default: io1 if the Iops parameter is specified. Otherwise, gp2.
    StorageType *string `type:"string"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    Tags []*Tag `locationNameList:"Tag" type:"list"`

    // Whether to upgrade the storage file system configuration on the read replica.
    // This option migrates the read replica from the old storage file system layout
    // to the preferred layout.
    UpgradeStorageConfig *bool `type:"boolean"`

    // Specifies whether the DB instance class of the DB instance uses its default
    // processor features.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    UseDefaultProcessorFeatures *bool `type:"boolean"`

    // A list of Amazon EC2 VPC security groups to associate with the read replica.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    //
    // Default: The default EC2 VPC security group for the DB subnet group's VPC.
    VpcSecurityGroupIds []*string `locationNameList:"VpcSecurityGroupId" type:"list"`
    // contains filtered or unexported fields
}

func (CreateDBInstanceReadReplicaInput) GoString

func (s CreateDBInstanceReadReplicaInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBInstanceReadReplicaInput) SetAllocatedStorage

func (s *CreateDBInstanceReadReplicaInput) SetAllocatedStorage(v int64) *CreateDBInstanceReadReplicaInput

SetAllocatedStorage sets the AllocatedStorage field's value.

func (*CreateDBInstanceReadReplicaInput) SetAutoMinorVersionUpgrade

func (s *CreateDBInstanceReadReplicaInput) SetAutoMinorVersionUpgrade(v bool) *CreateDBInstanceReadReplicaInput

SetAutoMinorVersionUpgrade sets the AutoMinorVersionUpgrade field's value.

func (*CreateDBInstanceReadReplicaInput) SetAvailabilityZone

func (s *CreateDBInstanceReadReplicaInput) SetAvailabilityZone(v string) *CreateDBInstanceReadReplicaInput

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*CreateDBInstanceReadReplicaInput) SetCopyTagsToSnapshot

func (s *CreateDBInstanceReadReplicaInput) SetCopyTagsToSnapshot(v bool) *CreateDBInstanceReadReplicaInput

SetCopyTagsToSnapshot sets the CopyTagsToSnapshot field's value.

func (*CreateDBInstanceReadReplicaInput) SetCustomIamInstanceProfile

func (s *CreateDBInstanceReadReplicaInput) SetCustomIamInstanceProfile(v string) *CreateDBInstanceReadReplicaInput

SetCustomIamInstanceProfile sets the CustomIamInstanceProfile field's value.

func (*CreateDBInstanceReadReplicaInput) SetDBInstanceClass

func (s *CreateDBInstanceReadReplicaInput) SetDBInstanceClass(v string) *CreateDBInstanceReadReplicaInput

SetDBInstanceClass sets the DBInstanceClass field's value.

func (*CreateDBInstanceReadReplicaInput) SetDBInstanceIdentifier

func (s *CreateDBInstanceReadReplicaInput) SetDBInstanceIdentifier(v string) *CreateDBInstanceReadReplicaInput

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*CreateDBInstanceReadReplicaInput) SetDBParameterGroupName

func (s *CreateDBInstanceReadReplicaInput) SetDBParameterGroupName(v string) *CreateDBInstanceReadReplicaInput

SetDBParameterGroupName sets the DBParameterGroupName field's value.

func (*CreateDBInstanceReadReplicaInput) SetDBSubnetGroupName

func (s *CreateDBInstanceReadReplicaInput) SetDBSubnetGroupName(v string) *CreateDBInstanceReadReplicaInput

SetDBSubnetGroupName sets the DBSubnetGroupName field's value.

func (*CreateDBInstanceReadReplicaInput) SetDedicatedLogVolume

func (s *CreateDBInstanceReadReplicaInput) SetDedicatedLogVolume(v bool) *CreateDBInstanceReadReplicaInput

SetDedicatedLogVolume sets the DedicatedLogVolume field's value.

func (*CreateDBInstanceReadReplicaInput) SetDeletionProtection

func (s *CreateDBInstanceReadReplicaInput) SetDeletionProtection(v bool) *CreateDBInstanceReadReplicaInput

SetDeletionProtection sets the DeletionProtection field's value.

func (*CreateDBInstanceReadReplicaInput) SetDestinationRegion

func (s *CreateDBInstanceReadReplicaInput) SetDestinationRegion(v string) *CreateDBInstanceReadReplicaInput

SetDestinationRegion sets the DestinationRegion field's value.

func (*CreateDBInstanceReadReplicaInput) SetDomain

func (s *CreateDBInstanceReadReplicaInput) SetDomain(v string) *CreateDBInstanceReadReplicaInput

SetDomain sets the Domain field's value.

func (*CreateDBInstanceReadReplicaInput) SetDomainAuthSecretArn

func (s *CreateDBInstanceReadReplicaInput) SetDomainAuthSecretArn(v string) *CreateDBInstanceReadReplicaInput

SetDomainAuthSecretArn sets the DomainAuthSecretArn field's value.

func (*CreateDBInstanceReadReplicaInput) SetDomainDnsIps

func (s *CreateDBInstanceReadReplicaInput) SetDomainDnsIps(v []*string) *CreateDBInstanceReadReplicaInput

SetDomainDnsIps sets the DomainDnsIps field's value.

func (*CreateDBInstanceReadReplicaInput) SetDomainFqdn

func (s *CreateDBInstanceReadReplicaInput) SetDomainFqdn(v string) *CreateDBInstanceReadReplicaInput

SetDomainFqdn sets the DomainFqdn field's value.

func (*CreateDBInstanceReadReplicaInput) SetDomainIAMRoleName

func (s *CreateDBInstanceReadReplicaInput) SetDomainIAMRoleName(v string) *CreateDBInstanceReadReplicaInput

SetDomainIAMRoleName sets the DomainIAMRoleName field's value.

func (*CreateDBInstanceReadReplicaInput) SetDomainOu

func (s *CreateDBInstanceReadReplicaInput) SetDomainOu(v string) *CreateDBInstanceReadReplicaInput

SetDomainOu sets the DomainOu field's value.

func (*CreateDBInstanceReadReplicaInput) SetEnableCloudwatchLogsExports

func (s *CreateDBInstanceReadReplicaInput) SetEnableCloudwatchLogsExports(v []*string) *CreateDBInstanceReadReplicaInput

SetEnableCloudwatchLogsExports sets the EnableCloudwatchLogsExports field's value.

func (*CreateDBInstanceReadReplicaInput) SetEnableCustomerOwnedIp

func (s *CreateDBInstanceReadReplicaInput) SetEnableCustomerOwnedIp(v bool) *CreateDBInstanceReadReplicaInput

SetEnableCustomerOwnedIp sets the EnableCustomerOwnedIp field's value.

func (*CreateDBInstanceReadReplicaInput) SetEnableIAMDatabaseAuthentication

func (s *CreateDBInstanceReadReplicaInput) SetEnableIAMDatabaseAuthentication(v bool) *CreateDBInstanceReadReplicaInput

SetEnableIAMDatabaseAuthentication sets the EnableIAMDatabaseAuthentication field's value.

func (*CreateDBInstanceReadReplicaInput) SetEnablePerformanceInsights

func (s *CreateDBInstanceReadReplicaInput) SetEnablePerformanceInsights(v bool) *CreateDBInstanceReadReplicaInput

SetEnablePerformanceInsights sets the EnablePerformanceInsights field's value.

func (*CreateDBInstanceReadReplicaInput) SetIops

func (s *CreateDBInstanceReadReplicaInput) SetIops(v int64) *CreateDBInstanceReadReplicaInput

SetIops sets the Iops field's value.

func (*CreateDBInstanceReadReplicaInput) SetKmsKeyId

func (s *CreateDBInstanceReadReplicaInput) SetKmsKeyId(v string) *CreateDBInstanceReadReplicaInput

SetKmsKeyId sets the KmsKeyId field's value.

func (*CreateDBInstanceReadReplicaInput) SetMaxAllocatedStorage

func (s *CreateDBInstanceReadReplicaInput) SetMaxAllocatedStorage(v int64) *CreateDBInstanceReadReplicaInput

SetMaxAllocatedStorage sets the MaxAllocatedStorage field's value.

func (*CreateDBInstanceReadReplicaInput) SetMonitoringInterval

func (s *CreateDBInstanceReadReplicaInput) SetMonitoringInterval(v int64) *CreateDBInstanceReadReplicaInput

SetMonitoringInterval sets the MonitoringInterval field's value.

func (*CreateDBInstanceReadReplicaInput) SetMonitoringRoleArn

func (s *CreateDBInstanceReadReplicaInput) SetMonitoringRoleArn(v string) *CreateDBInstanceReadReplicaInput

SetMonitoringRoleArn sets the MonitoringRoleArn field's value.

func (*CreateDBInstanceReadReplicaInput) SetMultiAZ

func (s *CreateDBInstanceReadReplicaInput) SetMultiAZ(v bool) *CreateDBInstanceReadReplicaInput

SetMultiAZ sets the MultiAZ field's value.

func (*CreateDBInstanceReadReplicaInput) SetNetworkType

func (s *CreateDBInstanceReadReplicaInput) SetNetworkType(v string) *CreateDBInstanceReadReplicaInput

SetNetworkType sets the NetworkType field's value.

func (*CreateDBInstanceReadReplicaInput) SetOptionGroupName

func (s *CreateDBInstanceReadReplicaInput) SetOptionGroupName(v string) *CreateDBInstanceReadReplicaInput

SetOptionGroupName sets the OptionGroupName field's value.

func (*CreateDBInstanceReadReplicaInput) SetPerformanceInsightsKMSKeyId

func (s *CreateDBInstanceReadReplicaInput) SetPerformanceInsightsKMSKeyId(v string) *CreateDBInstanceReadReplicaInput

SetPerformanceInsightsKMSKeyId sets the PerformanceInsightsKMSKeyId field's value.

func (*CreateDBInstanceReadReplicaInput) SetPerformanceInsightsRetentionPeriod

func (s *CreateDBInstanceReadReplicaInput) SetPerformanceInsightsRetentionPeriod(v int64) *CreateDBInstanceReadReplicaInput

SetPerformanceInsightsRetentionPeriod sets the PerformanceInsightsRetentionPeriod field's value.

func (*CreateDBInstanceReadReplicaInput) SetPort

func (s *CreateDBInstanceReadReplicaInput) SetPort(v int64) *CreateDBInstanceReadReplicaInput

SetPort sets the Port field's value.

func (*CreateDBInstanceReadReplicaInput) SetPreSignedUrl

func (s *CreateDBInstanceReadReplicaInput) SetPreSignedUrl(v string) *CreateDBInstanceReadReplicaInput

SetPreSignedUrl sets the PreSignedUrl field's value.

func (*CreateDBInstanceReadReplicaInput) SetProcessorFeatures

func (s *CreateDBInstanceReadReplicaInput) SetProcessorFeatures(v []*ProcessorFeature) *CreateDBInstanceReadReplicaInput

SetProcessorFeatures sets the ProcessorFeatures field's value.

func (*CreateDBInstanceReadReplicaInput) SetPubliclyAccessible

func (s *CreateDBInstanceReadReplicaInput) SetPubliclyAccessible(v bool) *CreateDBInstanceReadReplicaInput

SetPubliclyAccessible sets the PubliclyAccessible field's value.

func (*CreateDBInstanceReadReplicaInput) SetReplicaMode

func (s *CreateDBInstanceReadReplicaInput) SetReplicaMode(v string) *CreateDBInstanceReadReplicaInput

SetReplicaMode sets the ReplicaMode field's value.

func (*CreateDBInstanceReadReplicaInput) SetSourceDBClusterIdentifier

func (s *CreateDBInstanceReadReplicaInput) SetSourceDBClusterIdentifier(v string) *CreateDBInstanceReadReplicaInput

SetSourceDBClusterIdentifier sets the SourceDBClusterIdentifier field's value.

func (*CreateDBInstanceReadReplicaInput) SetSourceDBInstanceIdentifier

func (s *CreateDBInstanceReadReplicaInput) SetSourceDBInstanceIdentifier(v string) *CreateDBInstanceReadReplicaInput

SetSourceDBInstanceIdentifier sets the SourceDBInstanceIdentifier field's value.

func (*CreateDBInstanceReadReplicaInput) SetSourceRegion

func (s *CreateDBInstanceReadReplicaInput) SetSourceRegion(v string) *CreateDBInstanceReadReplicaInput

SetSourceRegion sets the SourceRegion field's value.

func (*CreateDBInstanceReadReplicaInput) SetStorageThroughput

func (s *CreateDBInstanceReadReplicaInput) SetStorageThroughput(v int64) *CreateDBInstanceReadReplicaInput

SetStorageThroughput sets the StorageThroughput field's value.

func (*CreateDBInstanceReadReplicaInput) SetStorageType

func (s *CreateDBInstanceReadReplicaInput) SetStorageType(v string) *CreateDBInstanceReadReplicaInput

SetStorageType sets the StorageType field's value.

func (*CreateDBInstanceReadReplicaInput) SetTags

func (s *CreateDBInstanceReadReplicaInput) SetTags(v []*Tag) *CreateDBInstanceReadReplicaInput

SetTags sets the Tags field's value.

func (*CreateDBInstanceReadReplicaInput) SetUpgradeStorageConfig

func (s *CreateDBInstanceReadReplicaInput) SetUpgradeStorageConfig(v bool) *CreateDBInstanceReadReplicaInput

SetUpgradeStorageConfig sets the UpgradeStorageConfig field's value.

func (*CreateDBInstanceReadReplicaInput) SetUseDefaultProcessorFeatures

func (s *CreateDBInstanceReadReplicaInput) SetUseDefaultProcessorFeatures(v bool) *CreateDBInstanceReadReplicaInput

SetUseDefaultProcessorFeatures sets the UseDefaultProcessorFeatures field's value.

func (*CreateDBInstanceReadReplicaInput) SetVpcSecurityGroupIds

func (s *CreateDBInstanceReadReplicaInput) SetVpcSecurityGroupIds(v []*string) *CreateDBInstanceReadReplicaInput

SetVpcSecurityGroupIds sets the VpcSecurityGroupIds field's value.

func (CreateDBInstanceReadReplicaInput) String

func (s CreateDBInstanceReadReplicaInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBInstanceReadReplicaInput) Validate

func (s *CreateDBInstanceReadReplicaInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateDBInstanceReadReplicaOutput

type CreateDBInstanceReadReplicaOutput struct {

    // Contains the details of an Amazon RDS DB instance.
    //
    // This data type is used as a response element in the operations CreateDBInstance,
    // CreateDBInstanceReadReplica, DeleteDBInstance, DescribeDBInstances, ModifyDBInstance,
    // PromoteReadReplica, RebootDBInstance, RestoreDBInstanceFromDBSnapshot, RestoreDBInstanceFromS3,
    // RestoreDBInstanceToPointInTime, StartDBInstance, and StopDBInstance.
    DBInstance *DBInstance `type:"structure"`
    // contains filtered or unexported fields
}

func (CreateDBInstanceReadReplicaOutput) GoString

func (s CreateDBInstanceReadReplicaOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBInstanceReadReplicaOutput) SetDBInstance

func (s *CreateDBInstanceReadReplicaOutput) SetDBInstance(v *DBInstance) *CreateDBInstanceReadReplicaOutput

SetDBInstance sets the DBInstance field's value.

func (CreateDBInstanceReadReplicaOutput) String

func (s CreateDBInstanceReadReplicaOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CreateDBParameterGroupInput

type CreateDBParameterGroupInput struct {

    // The DB parameter group family name. A DB parameter group can be associated
    // with one and only one DB parameter group family, and can be applied only
    // to a DB instance running a database engine and engine version compatible
    // with that DB parameter group family.
    //
    // To list all of the available parameter group families for a DB engine, use
    // the following command:
    //
    // aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily"
    // --engine <engine>
    //
    // For example, to list all of the available parameter group families for the
    // MySQL DB engine, use the following command:
    //
    // aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily"
    // --engine mysql
    //
    // The output contains duplicates.
    //
    // The following are the valid DB engine values:
    //
    //    * aurora-mysql
    //
    //    * aurora-postgresql
    //
    //    * db2-ae
    //
    //    * db2-se
    //
    //    * mysql
    //
    //    * oracle-ee
    //
    //    * oracle-ee-cdb
    //
    //    * oracle-se2
    //
    //    * oracle-se2-cdb
    //
    //    * postgres
    //
    //    * sqlserver-ee
    //
    //    * sqlserver-se
    //
    //    * sqlserver-ex
    //
    //    * sqlserver-web
    //
    // DBParameterGroupFamily is a required field
    DBParameterGroupFamily *string `type:"string" required:"true"`

    // The name of the DB parameter group.
    //
    // Constraints:
    //
    //    * Must be 1 to 255 letters, numbers, or hyphens.
    //
    //    * First character must be a letter
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens
    //
    // This value is stored as a lowercase string.
    //
    // DBParameterGroupName is a required field
    DBParameterGroupName *string `type:"string" required:"true"`

    // The description for the DB parameter group.
    //
    // Description is a required field
    Description *string `type:"string" required:"true"`

    // Tags to assign to the DB parameter group.
    Tags []*Tag `locationNameList:"Tag" type:"list"`
    // contains filtered or unexported fields
}

func (CreateDBParameterGroupInput) GoString

func (s CreateDBParameterGroupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBParameterGroupInput) SetDBParameterGroupFamily

func (s *CreateDBParameterGroupInput) SetDBParameterGroupFamily(v string) *CreateDBParameterGroupInput

SetDBParameterGroupFamily sets the DBParameterGroupFamily field's value.

func (*CreateDBParameterGroupInput) SetDBParameterGroupName

func (s *CreateDBParameterGroupInput) SetDBParameterGroupName(v string) *CreateDBParameterGroupInput

SetDBParameterGroupName sets the DBParameterGroupName field's value.

func (*CreateDBParameterGroupInput) SetDescription

func (s *CreateDBParameterGroupInput) SetDescription(v string) *CreateDBParameterGroupInput

SetDescription sets the Description field's value.

func (*CreateDBParameterGroupInput) SetTags

func (s *CreateDBParameterGroupInput) SetTags(v []*Tag) *CreateDBParameterGroupInput

SetTags sets the Tags field's value.

func (CreateDBParameterGroupInput) String

func (s CreateDBParameterGroupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBParameterGroupInput) Validate

func (s *CreateDBParameterGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateDBParameterGroupOutput

type CreateDBParameterGroupOutput struct {

    // Contains the details of an Amazon RDS DB parameter group.
    //
    // This data type is used as a response element in the DescribeDBParameterGroups
    // action.
    DBParameterGroup *DBParameterGroup `type:"structure"`
    // contains filtered or unexported fields
}

func (CreateDBParameterGroupOutput) GoString

func (s CreateDBParameterGroupOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBParameterGroupOutput) SetDBParameterGroup

func (s *CreateDBParameterGroupOutput) SetDBParameterGroup(v *DBParameterGroup) *CreateDBParameterGroupOutput

SetDBParameterGroup sets the DBParameterGroup field's value.

func (CreateDBParameterGroupOutput) String

func (s CreateDBParameterGroupOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CreateDBProxyEndpointInput

type CreateDBProxyEndpointInput struct {

    // The name of the DB proxy endpoint to create.
    //
    // DBProxyEndpointName is a required field
    DBProxyEndpointName *string `min:"1" type:"string" required:"true"`

    // The name of the DB proxy associated with the DB proxy endpoint that you create.
    //
    // DBProxyName is a required field
    DBProxyName *string `min:"1" type:"string" required:"true"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    Tags []*Tag `locationNameList:"Tag" type:"list"`

    // The role of the DB proxy endpoint. The role determines whether the endpoint
    // can be used for read/write or only read operations. The default is READ_WRITE.
    // The only role that proxies for RDS for Microsoft SQL Server support is READ_WRITE.
    TargetRole *string `type:"string" enum:"DBProxyEndpointTargetRole"`

    // The VPC security group IDs for the DB proxy endpoint that you create. You
    // can specify a different set of security group IDs than for the original DB
    // proxy. The default is the default security group for the VPC.
    VpcSecurityGroupIds []*string `type:"list"`

    // The VPC subnet IDs for the DB proxy endpoint that you create. You can specify
    // a different set of subnet IDs than for the original DB proxy.
    //
    // VpcSubnetIds is a required field
    VpcSubnetIds []*string `type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (CreateDBProxyEndpointInput) GoString

func (s CreateDBProxyEndpointInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBProxyEndpointInput) SetDBProxyEndpointName

func (s *CreateDBProxyEndpointInput) SetDBProxyEndpointName(v string) *CreateDBProxyEndpointInput

SetDBProxyEndpointName sets the DBProxyEndpointName field's value.

func (*CreateDBProxyEndpointInput) SetDBProxyName

func (s *CreateDBProxyEndpointInput) SetDBProxyName(v string) *CreateDBProxyEndpointInput

SetDBProxyName sets the DBProxyName field's value.

func (*CreateDBProxyEndpointInput) SetTags

func (s *CreateDBProxyEndpointInput) SetTags(v []*Tag) *CreateDBProxyEndpointInput

SetTags sets the Tags field's value.

func (*CreateDBProxyEndpointInput) SetTargetRole

func (s *CreateDBProxyEndpointInput) SetTargetRole(v string) *CreateDBProxyEndpointInput

SetTargetRole sets the TargetRole field's value.

func (*CreateDBProxyEndpointInput) SetVpcSecurityGroupIds

func (s *CreateDBProxyEndpointInput) SetVpcSecurityGroupIds(v []*string) *CreateDBProxyEndpointInput

SetVpcSecurityGroupIds sets the VpcSecurityGroupIds field's value.

func (*CreateDBProxyEndpointInput) SetVpcSubnetIds

func (s *CreateDBProxyEndpointInput) SetVpcSubnetIds(v []*string) *CreateDBProxyEndpointInput

SetVpcSubnetIds sets the VpcSubnetIds field's value.

func (CreateDBProxyEndpointInput) String

func (s CreateDBProxyEndpointInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBProxyEndpointInput) Validate

func (s *CreateDBProxyEndpointInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateDBProxyEndpointOutput

type CreateDBProxyEndpointOutput struct {

    // The DBProxyEndpoint object that is created by the API operation. The DB proxy
    // endpoint that you create might provide capabilities such as read/write or
    // read-only operations, or using a different VPC than the proxy's default VPC.
    DBProxyEndpoint *DBProxyEndpoint `type:"structure"`
    // contains filtered or unexported fields
}

func (CreateDBProxyEndpointOutput) GoString

func (s CreateDBProxyEndpointOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBProxyEndpointOutput) SetDBProxyEndpoint

func (s *CreateDBProxyEndpointOutput) SetDBProxyEndpoint(v *DBProxyEndpoint) *CreateDBProxyEndpointOutput

SetDBProxyEndpoint sets the DBProxyEndpoint field's value.

func (CreateDBProxyEndpointOutput) String

func (s CreateDBProxyEndpointOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CreateDBProxyInput

type CreateDBProxyInput struct {

    // The authorization mechanism that the proxy uses.
    //
    // Auth is a required field
    Auth []*UserAuthConfig `type:"list" required:"true"`

    // The identifier for the proxy. This name must be unique for all proxies owned
    // by your Amazon Web Services account in the specified Amazon Web Services
    // Region. An identifier must begin with a letter and must contain only ASCII
    // letters, digits, and hyphens; it can't end with a hyphen or contain two consecutive
    // hyphens.
    //
    // DBProxyName is a required field
    DBProxyName *string `type:"string" required:"true"`

    // Specifies whether the proxy includes detailed information about SQL statements
    // in its logs. This information helps you to debug issues involving SQL behavior
    // or the performance and scalability of the proxy connections. The debug information
    // includes the text of SQL statements that you submit through the proxy. Thus,
    // only enable this setting when needed for debugging, and only when you have
    // security measures in place to safeguard any sensitive information that appears
    // in the logs.
    DebugLogging *bool `type:"boolean"`

    // The kinds of databases that the proxy can connect to. This value determines
    // which database network protocol the proxy recognizes when it interprets network
    // traffic to and from the database. For Aurora MySQL, RDS for MariaDB, and
    // RDS for MySQL databases, specify MYSQL. For Aurora PostgreSQL and RDS for
    // PostgreSQL databases, specify POSTGRESQL. For RDS for Microsoft SQL Server,
    // specify SQLSERVER.
    //
    // EngineFamily is a required field
    EngineFamily *string `type:"string" required:"true" enum:"EngineFamily"`

    // The number of seconds that a connection to the proxy can be inactive before
    // the proxy disconnects it. You can set this value higher or lower than the
    // connection timeout limit for the associated database.
    IdleClientTimeout *int64 `type:"integer"`

    // Specifies whether Transport Layer Security (TLS) encryption is required for
    // connections to the proxy. By enabling this setting, you can enforce encrypted
    // TLS connections to the proxy.
    RequireTLS *bool `type:"boolean"`

    // The Amazon Resource Name (ARN) of the IAM role that the proxy uses to access
    // secrets in Amazon Web Services Secrets Manager.
    //
    // RoleArn is a required field
    RoleArn *string `type:"string" required:"true"`

    // An optional set of key-value pairs to associate arbitrary data of your choosing
    // with the proxy.
    Tags []*Tag `locationNameList:"Tag" type:"list"`

    // One or more VPC security group IDs to associate with the new proxy.
    VpcSecurityGroupIds []*string `type:"list"`

    // One or more VPC subnet IDs to associate with the new proxy.
    //
    // VpcSubnetIds is a required field
    VpcSubnetIds []*string `type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (CreateDBProxyInput) GoString

func (s CreateDBProxyInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBProxyInput) SetAuth

func (s *CreateDBProxyInput) SetAuth(v []*UserAuthConfig) *CreateDBProxyInput

SetAuth sets the Auth field's value.

func (*CreateDBProxyInput) SetDBProxyName

func (s *CreateDBProxyInput) SetDBProxyName(v string) *CreateDBProxyInput

SetDBProxyName sets the DBProxyName field's value.

func (*CreateDBProxyInput) SetDebugLogging

func (s *CreateDBProxyInput) SetDebugLogging(v bool) *CreateDBProxyInput

SetDebugLogging sets the DebugLogging field's value.

func (*CreateDBProxyInput) SetEngineFamily

func (s *CreateDBProxyInput) SetEngineFamily(v string) *CreateDBProxyInput

SetEngineFamily sets the EngineFamily field's value.

func (*CreateDBProxyInput) SetIdleClientTimeout

func (s *CreateDBProxyInput) SetIdleClientTimeout(v int64) *CreateDBProxyInput

SetIdleClientTimeout sets the IdleClientTimeout field's value.

func (*CreateDBProxyInput) SetRequireTLS

func (s *CreateDBProxyInput) SetRequireTLS(v bool) *CreateDBProxyInput

SetRequireTLS sets the RequireTLS field's value.

func (*CreateDBProxyInput) SetRoleArn

func (s *CreateDBProxyInput) SetRoleArn(v string) *CreateDBProxyInput

SetRoleArn sets the RoleArn field's value.

func (*CreateDBProxyInput) SetTags

func (s *CreateDBProxyInput) SetTags(v []*Tag) *CreateDBProxyInput

SetTags sets the Tags field's value.

func (*CreateDBProxyInput) SetVpcSecurityGroupIds

func (s *CreateDBProxyInput) SetVpcSecurityGroupIds(v []*string) *CreateDBProxyInput

SetVpcSecurityGroupIds sets the VpcSecurityGroupIds field's value.

func (*CreateDBProxyInput) SetVpcSubnetIds

func (s *CreateDBProxyInput) SetVpcSubnetIds(v []*string) *CreateDBProxyInput

SetVpcSubnetIds sets the VpcSubnetIds field's value.

func (CreateDBProxyInput) String

func (s CreateDBProxyInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBProxyInput) Validate

func (s *CreateDBProxyInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateDBProxyOutput

type CreateDBProxyOutput struct {

    // The DBProxy structure corresponding to the new proxy.
    DBProxy *DBProxy `type:"structure"`
    // contains filtered or unexported fields
}

func (CreateDBProxyOutput) GoString

func (s CreateDBProxyOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBProxyOutput) SetDBProxy

func (s *CreateDBProxyOutput) SetDBProxy(v *DBProxy) *CreateDBProxyOutput

SetDBProxy sets the DBProxy field's value.

func (CreateDBProxyOutput) String

func (s CreateDBProxyOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CreateDBSecurityGroupInput

type CreateDBSecurityGroupInput struct {

    // The description for the DB security group.
    //
    // DBSecurityGroupDescription is a required field
    DBSecurityGroupDescription *string `type:"string" required:"true"`

    // The name for the DB security group. This value is stored as a lowercase string.
    //
    // Constraints:
    //
    //    * Must be 1 to 255 letters, numbers, or hyphens.
    //
    //    * First character must be a letter
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens
    //
    //    * Must not be "Default"
    //
    // Example: mysecuritygroup
    //
    // DBSecurityGroupName is a required field
    DBSecurityGroupName *string `type:"string" required:"true"`

    // Tags to assign to the DB security group.
    Tags []*Tag `locationNameList:"Tag" type:"list"`
    // contains filtered or unexported fields
}

func (CreateDBSecurityGroupInput) GoString

func (s CreateDBSecurityGroupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBSecurityGroupInput) SetDBSecurityGroupDescription

func (s *CreateDBSecurityGroupInput) SetDBSecurityGroupDescription(v string) *CreateDBSecurityGroupInput

SetDBSecurityGroupDescription sets the DBSecurityGroupDescription field's value.

func (*CreateDBSecurityGroupInput) SetDBSecurityGroupName

func (s *CreateDBSecurityGroupInput) SetDBSecurityGroupName(v string) *CreateDBSecurityGroupInput

SetDBSecurityGroupName sets the DBSecurityGroupName field's value.

func (*CreateDBSecurityGroupInput) SetTags

func (s *CreateDBSecurityGroupInput) SetTags(v []*Tag) *CreateDBSecurityGroupInput

SetTags sets the Tags field's value.

func (CreateDBSecurityGroupInput) String

func (s CreateDBSecurityGroupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBSecurityGroupInput) Validate

func (s *CreateDBSecurityGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateDBSecurityGroupOutput

type CreateDBSecurityGroupOutput struct {

    // Contains the details for an Amazon RDS DB security group.
    //
    // This data type is used as a response element in the DescribeDBSecurityGroups
    // action.
    DBSecurityGroup *DBSecurityGroup `type:"structure"`
    // contains filtered or unexported fields
}

func (CreateDBSecurityGroupOutput) GoString

func (s CreateDBSecurityGroupOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBSecurityGroupOutput) SetDBSecurityGroup

func (s *CreateDBSecurityGroupOutput) SetDBSecurityGroup(v *DBSecurityGroup) *CreateDBSecurityGroupOutput

SetDBSecurityGroup sets the DBSecurityGroup field's value.

func (CreateDBSecurityGroupOutput) String

func (s CreateDBSecurityGroupOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CreateDBShardGroupInput

type CreateDBShardGroupInput struct {

    // Specifies whether to create standby instances for the DB shard group. Valid
    // values are the following:
    //
    //    * 0 - Creates a single, primary DB instance for each physical shard. This
    //    is the default value, and the only one supported for the preview.
    //
    //    * 1 - Creates a primary DB instance and a standby instance in a different
    //    Availability Zone (AZ) for each physical shard.
    //
    //    * 2 - Creates a primary DB instance and two standby instances in different
    //    AZs for each physical shard.
    ComputeRedundancy *int64 `type:"integer"`

    // The name of the primary DB cluster for the DB shard group.
    //
    // DBClusterIdentifier is a required field
    DBClusterIdentifier *string `type:"string" required:"true"`

    // The name of the DB shard group.
    //
    // DBShardGroupIdentifier is a required field
    DBShardGroupIdentifier *string `type:"string" required:"true"`

    // The maximum capacity of the DB shard group in Aurora capacity units (ACUs).
    //
    // MaxACU is a required field
    MaxACU *float64 `type:"double" required:"true"`

    // Specifies whether the DB shard group is publicly accessible.
    //
    // When the DB shard group is publicly accessible, its Domain Name System (DNS)
    // endpoint resolves to the private IP address from within the DB shard group's
    // virtual private cloud (VPC). It resolves to the public IP address from outside
    // of the DB shard group's VPC. Access to the DB shard group is ultimately controlled
    // by the security group it uses. That public access is not permitted if the
    // security group assigned to the DB shard group doesn't permit it.
    //
    // When the DB shard group isn't publicly accessible, it is an internal DB shard
    // group with a DNS name that resolves to a private IP address.
    //
    // Default: The default behavior varies depending on whether DBSubnetGroupName
    // is specified.
    //
    // If DBSubnetGroupName isn't specified, and PubliclyAccessible isn't specified,
    // the following applies:
    //
    //    * If the default VPC in the target Region doesn’t have an internet gateway
    //    attached to it, the DB shard group is private.
    //
    //    * If the default VPC in the target Region has an internet gateway attached
    //    to it, the DB shard group is public.
    //
    // If DBSubnetGroupName is specified, and PubliclyAccessible isn't specified,
    // the following applies:
    //
    //    * If the subnets are part of a VPC that doesn’t have an internet gateway
    //    attached to it, the DB shard group is private.
    //
    //    * If the subnets are part of a VPC that has an internet gateway attached
    //    to it, the DB shard group is public.
    PubliclyAccessible *bool `type:"boolean"`
    // contains filtered or unexported fields
}

func (CreateDBShardGroupInput) GoString

func (s CreateDBShardGroupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBShardGroupInput) SetComputeRedundancy

func (s *CreateDBShardGroupInput) SetComputeRedundancy(v int64) *CreateDBShardGroupInput

SetComputeRedundancy sets the ComputeRedundancy field's value.

func (*CreateDBShardGroupInput) SetDBClusterIdentifier

func (s *CreateDBShardGroupInput) SetDBClusterIdentifier(v string) *CreateDBShardGroupInput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*CreateDBShardGroupInput) SetDBShardGroupIdentifier

func (s *CreateDBShardGroupInput) SetDBShardGroupIdentifier(v string) *CreateDBShardGroupInput

SetDBShardGroupIdentifier sets the DBShardGroupIdentifier field's value.

func (*CreateDBShardGroupInput) SetMaxACU

func (s *CreateDBShardGroupInput) SetMaxACU(v float64) *CreateDBShardGroupInput

SetMaxACU sets the MaxACU field's value.

func (*CreateDBShardGroupInput) SetPubliclyAccessible

func (s *CreateDBShardGroupInput) SetPubliclyAccessible(v bool) *CreateDBShardGroupInput

SetPubliclyAccessible sets the PubliclyAccessible field's value.

func (CreateDBShardGroupInput) String

func (s CreateDBShardGroupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBShardGroupInput) Validate

func (s *CreateDBShardGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateDBShardGroupOutput

type CreateDBShardGroupOutput struct {

    // Specifies whether to create standby instances for the DB shard group. Valid
    // values are the following:
    //
    //    * 0 - Creates a single, primary DB instance for each physical shard. This
    //    is the default value, and the only one supported for the preview.
    //
    //    * 1 - Creates a primary DB instance and a standby instance in a different
    //    Availability Zone (AZ) for each physical shard.
    //
    //    * 2 - Creates a primary DB instance and two standby instances in different
    //    AZs for each physical shard.
    ComputeRedundancy *int64 `type:"integer"`

    // The name of the primary DB cluster for the DB shard group.
    DBClusterIdentifier *string `type:"string"`

    // The name of the DB shard group.
    DBShardGroupIdentifier *string `min:"1" type:"string"`

    // The Amazon Web Services Region-unique, immutable identifier for the DB shard
    // group.
    DBShardGroupResourceId *string `type:"string"`

    // The connection endpoint for the DB shard group.
    Endpoint *string `type:"string"`

    // The maximum capacity of the DB shard group in Aurora capacity units (ACUs).
    MaxACU *float64 `type:"double"`

    // Indicates whether the DB shard group is publicly accessible.
    //
    // When the DB shard group is publicly accessible, its Domain Name System (DNS)
    // endpoint resolves to the private IP address from within the DB shard group's
    // virtual private cloud (VPC). It resolves to the public IP address from outside
    // of the DB shard group's VPC. Access to the DB shard group is ultimately controlled
    // by the security group it uses. That public access isn't permitted if the
    // security group assigned to the DB shard group doesn't permit it.
    //
    // When the DB shard group isn't publicly accessible, it is an internal DB shard
    // group with a DNS name that resolves to a private IP address.
    //
    // For more information, see CreateDBShardGroup.
    //
    // This setting is only for Aurora Limitless Database.
    PubliclyAccessible *bool `type:"boolean"`

    // The status of the DB shard group.
    Status *string `type:"string"`
    // contains filtered or unexported fields
}

func (CreateDBShardGroupOutput) GoString

func (s CreateDBShardGroupOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBShardGroupOutput) SetComputeRedundancy

func (s *CreateDBShardGroupOutput) SetComputeRedundancy(v int64) *CreateDBShardGroupOutput

SetComputeRedundancy sets the ComputeRedundancy field's value.

func (*CreateDBShardGroupOutput) SetDBClusterIdentifier

func (s *CreateDBShardGroupOutput) SetDBClusterIdentifier(v string) *CreateDBShardGroupOutput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*CreateDBShardGroupOutput) SetDBShardGroupIdentifier

func (s *CreateDBShardGroupOutput) SetDBShardGroupIdentifier(v string) *CreateDBShardGroupOutput

SetDBShardGroupIdentifier sets the DBShardGroupIdentifier field's value.

func (*CreateDBShardGroupOutput) SetDBShardGroupResourceId

func (s *CreateDBShardGroupOutput) SetDBShardGroupResourceId(v string) *CreateDBShardGroupOutput

SetDBShardGroupResourceId sets the DBShardGroupResourceId field's value.

func (*CreateDBShardGroupOutput) SetEndpoint

func (s *CreateDBShardGroupOutput) SetEndpoint(v string) *CreateDBShardGroupOutput

SetEndpoint sets the Endpoint field's value.

func (*CreateDBShardGroupOutput) SetMaxACU

func (s *CreateDBShardGroupOutput) SetMaxACU(v float64) *CreateDBShardGroupOutput

SetMaxACU sets the MaxACU field's value.

func (*CreateDBShardGroupOutput) SetPubliclyAccessible

func (s *CreateDBShardGroupOutput) SetPubliclyAccessible(v bool) *CreateDBShardGroupOutput

SetPubliclyAccessible sets the PubliclyAccessible field's value.

func (*CreateDBShardGroupOutput) SetStatus

func (s *CreateDBShardGroupOutput) SetStatus(v string) *CreateDBShardGroupOutput

SetStatus sets the Status field's value.

func (CreateDBShardGroupOutput) String

func (s CreateDBShardGroupOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CreateDBSnapshotInput

type CreateDBSnapshotInput struct {

    // The identifier of the DB instance that you want to create the snapshot of.
    //
    // Constraints:
    //
    //    * Must match the identifier of an existing DBInstance.
    //
    // DBInstanceIdentifier is a required field
    DBInstanceIdentifier *string `type:"string" required:"true"`

    // The identifier for the DB snapshot.
    //
    // Constraints:
    //
    //    * Can't be null, empty, or blank
    //
    //    * Must contain from 1 to 255 letters, numbers, or hyphens
    //
    //    * First character must be a letter
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens
    //
    // Example: my-snapshot-id
    //
    // DBSnapshotIdentifier is a required field
    DBSnapshotIdentifier *string `type:"string" required:"true"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    Tags []*Tag `locationNameList:"Tag" type:"list"`
    // contains filtered or unexported fields
}

func (CreateDBSnapshotInput) GoString

func (s CreateDBSnapshotInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBSnapshotInput) SetDBInstanceIdentifier

func (s *CreateDBSnapshotInput) SetDBInstanceIdentifier(v string) *CreateDBSnapshotInput

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*CreateDBSnapshotInput) SetDBSnapshotIdentifier

func (s *CreateDBSnapshotInput) SetDBSnapshotIdentifier(v string) *CreateDBSnapshotInput

SetDBSnapshotIdentifier sets the DBSnapshotIdentifier field's value.

func (*CreateDBSnapshotInput) SetTags

func (s *CreateDBSnapshotInput) SetTags(v []*Tag) *CreateDBSnapshotInput

SetTags sets the Tags field's value.

func (CreateDBSnapshotInput) String

func (s CreateDBSnapshotInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBSnapshotInput) Validate

func (s *CreateDBSnapshotInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateDBSnapshotOutput

type CreateDBSnapshotOutput struct {

    // Contains the details of an Amazon RDS DB snapshot.
    //
    // This data type is used as a response element in the DescribeDBSnapshots action.
    DBSnapshot *DBSnapshot `type:"structure"`
    // contains filtered or unexported fields
}

func (CreateDBSnapshotOutput) GoString

func (s CreateDBSnapshotOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBSnapshotOutput) SetDBSnapshot

func (s *CreateDBSnapshotOutput) SetDBSnapshot(v *DBSnapshot) *CreateDBSnapshotOutput

SetDBSnapshot sets the DBSnapshot field's value.

func (CreateDBSnapshotOutput) String

func (s CreateDBSnapshotOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CreateDBSubnetGroupInput

type CreateDBSubnetGroupInput struct {

    // The description for the DB subnet group.
    //
    // DBSubnetGroupDescription is a required field
    DBSubnetGroupDescription *string `type:"string" required:"true"`

    // The name for the DB subnet group. This value is stored as a lowercase string.
    //
    // Constraints:
    //
    //    * Must contain no more than 255 letters, numbers, periods, underscores,
    //    spaces, or hyphens.
    //
    //    * Must not be default.
    //
    //    * First character must be a letter.
    //
    // Example: mydbsubnetgroup
    //
    // DBSubnetGroupName is a required field
    DBSubnetGroupName *string `type:"string" required:"true"`

    // The EC2 Subnet IDs for the DB subnet group.
    //
    // SubnetIds is a required field
    SubnetIds []*string `locationNameList:"SubnetIdentifier" type:"list" required:"true"`

    // Tags to assign to the DB subnet group.
    Tags []*Tag `locationNameList:"Tag" type:"list"`
    // contains filtered or unexported fields
}

func (CreateDBSubnetGroupInput) GoString

func (s CreateDBSubnetGroupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBSubnetGroupInput) SetDBSubnetGroupDescription

func (s *CreateDBSubnetGroupInput) SetDBSubnetGroupDescription(v string) *CreateDBSubnetGroupInput

SetDBSubnetGroupDescription sets the DBSubnetGroupDescription field's value.

func (*CreateDBSubnetGroupInput) SetDBSubnetGroupName

func (s *CreateDBSubnetGroupInput) SetDBSubnetGroupName(v string) *CreateDBSubnetGroupInput

SetDBSubnetGroupName sets the DBSubnetGroupName field's value.

func (*CreateDBSubnetGroupInput) SetSubnetIds

func (s *CreateDBSubnetGroupInput) SetSubnetIds(v []*string) *CreateDBSubnetGroupInput

SetSubnetIds sets the SubnetIds field's value.

func (*CreateDBSubnetGroupInput) SetTags

func (s *CreateDBSubnetGroupInput) SetTags(v []*Tag) *CreateDBSubnetGroupInput

SetTags sets the Tags field's value.

func (CreateDBSubnetGroupInput) String

func (s CreateDBSubnetGroupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBSubnetGroupInput) Validate

func (s *CreateDBSubnetGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateDBSubnetGroupOutput

type CreateDBSubnetGroupOutput struct {

    // Contains the details of an Amazon RDS DB subnet group.
    //
    // This data type is used as a response element in the DescribeDBSubnetGroups
    // action.
    DBSubnetGroup *DBSubnetGroup `type:"structure"`
    // contains filtered or unexported fields
}

func (CreateDBSubnetGroupOutput) GoString

func (s CreateDBSubnetGroupOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateDBSubnetGroupOutput) SetDBSubnetGroup

func (s *CreateDBSubnetGroupOutput) SetDBSubnetGroup(v *DBSubnetGroup) *CreateDBSubnetGroupOutput

SetDBSubnetGroup sets the DBSubnetGroup field's value.

func (CreateDBSubnetGroupOutput) String

func (s CreateDBSubnetGroupOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CreateEventSubscriptionInput

type CreateEventSubscriptionInput struct {

    // Specifies whether to activate the subscription. If the event notification
    // subscription isn't activated, the subscription is created but not active.
    Enabled *bool `type:"boolean"`

    // A list of event categories for a particular source type (SourceType) that
    // you want to subscribe to. You can see a list of the categories for a given
    // source type in the "Amazon RDS event categories and event messages" section
    // of the Amazon RDS User Guide (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.Messages.html)
    // or the Amazon Aurora User Guide (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Events.Messages.html).
    // You can also see this list by using the DescribeEventCategories operation.
    EventCategories []*string `locationNameList:"EventCategory" type:"list"`

    // The Amazon Resource Name (ARN) of the SNS topic created for event notification.
    // SNS automatically creates the ARN when you create a topic and subscribe to
    // it.
    //
    // RDS doesn't support FIFO (first in, first out) topics. For more information,
    // see Message ordering and deduplication (FIFO topics) (https://docs.aws.amazon.com/sns/latest/dg/sns-fifo-topics.html)
    // in the Amazon Simple Notification Service Developer Guide.
    //
    // SnsTopicArn is a required field
    SnsTopicArn *string `type:"string" required:"true"`

    // The list of identifiers of the event sources for which events are returned.
    // If not specified, then all sources are included in the response. An identifier
    // must begin with a letter and must contain only ASCII letters, digits, and
    // hyphens. It can't end with a hyphen or contain two consecutive hyphens.
    //
    // Constraints:
    //
    //    * If SourceIds are supplied, SourceType must also be provided.
    //
    //    * If the source type is a DB instance, a DBInstanceIdentifier value must
    //    be supplied.
    //
    //    * If the source type is a DB cluster, a DBClusterIdentifier value must
    //    be supplied.
    //
    //    * If the source type is a DB parameter group, a DBParameterGroupName value
    //    must be supplied.
    //
    //    * If the source type is a DB security group, a DBSecurityGroupName value
    //    must be supplied.
    //
    //    * If the source type is a DB snapshot, a DBSnapshotIdentifier value must
    //    be supplied.
    //
    //    * If the source type is a DB cluster snapshot, a DBClusterSnapshotIdentifier
    //    value must be supplied.
    //
    //    * If the source type is an RDS Proxy, a DBProxyName value must be supplied.
    SourceIds []*string `locationNameList:"SourceId" type:"list"`

    // The type of source that is generating the events. For example, if you want
    // to be notified of events generated by a DB instance, you set this parameter
    // to db-instance. For RDS Proxy events, specify db-proxy. If this value isn't
    // specified, all events are returned.
    //
    // Valid Values: db-instance | db-cluster | db-parameter-group | db-security-group
    // | db-snapshot | db-cluster-snapshot | db-proxy
    SourceType *string `type:"string"`

    // The name of the subscription.
    //
    // Constraints: The name must be less than 255 characters.
    //
    // SubscriptionName is a required field
    SubscriptionName *string `type:"string" required:"true"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    Tags []*Tag `locationNameList:"Tag" type:"list"`
    // contains filtered or unexported fields
}

func (CreateEventSubscriptionInput) GoString

func (s CreateEventSubscriptionInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateEventSubscriptionInput) SetEnabled

func (s *CreateEventSubscriptionInput) SetEnabled(v bool) *CreateEventSubscriptionInput

SetEnabled sets the Enabled field's value.

func (*CreateEventSubscriptionInput) SetEventCategories

func (s *CreateEventSubscriptionInput) SetEventCategories(v []*string) *CreateEventSubscriptionInput

SetEventCategories sets the EventCategories field's value.

func (*CreateEventSubscriptionInput) SetSnsTopicArn

func (s *CreateEventSubscriptionInput) SetSnsTopicArn(v string) *CreateEventSubscriptionInput

SetSnsTopicArn sets the SnsTopicArn field's value.

func (*CreateEventSubscriptionInput) SetSourceIds

func (s *CreateEventSubscriptionInput) SetSourceIds(v []*string) *CreateEventSubscriptionInput

SetSourceIds sets the SourceIds field's value.

func (*CreateEventSubscriptionInput) SetSourceType

func (s *CreateEventSubscriptionInput) SetSourceType(v string) *CreateEventSubscriptionInput

SetSourceType sets the SourceType field's value.

func (*CreateEventSubscriptionInput) SetSubscriptionName

func (s *CreateEventSubscriptionInput) SetSubscriptionName(v string) *CreateEventSubscriptionInput

SetSubscriptionName sets the SubscriptionName field's value.

func (*CreateEventSubscriptionInput) SetTags

func (s *CreateEventSubscriptionInput) SetTags(v []*Tag) *CreateEventSubscriptionInput

SetTags sets the Tags field's value.

func (CreateEventSubscriptionInput) String

func (s CreateEventSubscriptionInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateEventSubscriptionInput) Validate

func (s *CreateEventSubscriptionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateEventSubscriptionOutput

type CreateEventSubscriptionOutput struct {

    // Contains the results of a successful invocation of the DescribeEventSubscriptions
    // action.
    EventSubscription *EventSubscription `type:"structure"`
    // contains filtered or unexported fields
}

func (CreateEventSubscriptionOutput) GoString

func (s CreateEventSubscriptionOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateEventSubscriptionOutput) SetEventSubscription

func (s *CreateEventSubscriptionOutput) SetEventSubscription(v *EventSubscription) *CreateEventSubscriptionOutput

SetEventSubscription sets the EventSubscription field's value.

func (CreateEventSubscriptionOutput) String

func (s CreateEventSubscriptionOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CreateGlobalClusterInput

type CreateGlobalClusterInput struct {

    // The name for your database of up to 64 alphanumeric characters. If you don't
    // specify a name, Amazon Aurora doesn't create a database in the global database
    // cluster.
    //
    // Constraints:
    //
    //    * Can't be specified if SourceDBClusterIdentifier is specified. In this
    //    case, Amazon Aurora uses the database name from the source DB cluster.
    DatabaseName *string `type:"string"`

    // Specifies whether to enable deletion protection for the new global database
    // cluster. The global database can't be deleted when deletion protection is
    // enabled.
    DeletionProtection *bool `type:"boolean"`

    // The database engine to use for this global database cluster.
    //
    // Valid Values: aurora-mysql | aurora-postgresql
    //
    // Constraints:
    //
    //    * Can't be specified if SourceDBClusterIdentifier is specified. In this
    //    case, Amazon Aurora uses the engine of the source DB cluster.
    Engine *string `type:"string"`

    // The engine version to use for this global database cluster.
    //
    // Constraints:
    //
    //    * Can't be specified if SourceDBClusterIdentifier is specified. In this
    //    case, Amazon Aurora uses the engine version of the source DB cluster.
    EngineVersion *string `type:"string"`

    // The cluster identifier for this global database cluster. This parameter is
    // stored as a lowercase string.
    GlobalClusterIdentifier *string `type:"string"`

    // The Amazon Resource Name (ARN) to use as the primary cluster of the global
    // database.
    //
    // If you provide a value for this parameter, don't specify values for the following
    // settings because Amazon Aurora uses the values from the specified source
    // DB cluster:
    //
    //    * DatabaseName
    //
    //    * Engine
    //
    //    * EngineVersion
    //
    //    * StorageEncrypted
    SourceDBClusterIdentifier *string `type:"string"`

    // Specifies whether to enable storage encryption for the new global database
    // cluster.
    //
    // Constraints:
    //
    //    * Can't be specified if SourceDBClusterIdentifier is specified. In this
    //    case, Amazon Aurora uses the setting from the source DB cluster.
    StorageEncrypted *bool `type:"boolean"`
    // contains filtered or unexported fields
}

func (CreateGlobalClusterInput) GoString

func (s CreateGlobalClusterInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateGlobalClusterInput) SetDatabaseName

func (s *CreateGlobalClusterInput) SetDatabaseName(v string) *CreateGlobalClusterInput

SetDatabaseName sets the DatabaseName field's value.

func (*CreateGlobalClusterInput) SetDeletionProtection

func (s *CreateGlobalClusterInput) SetDeletionProtection(v bool) *CreateGlobalClusterInput

SetDeletionProtection sets the DeletionProtection field's value.

func (*CreateGlobalClusterInput) SetEngine

func (s *CreateGlobalClusterInput) SetEngine(v string) *CreateGlobalClusterInput

SetEngine sets the Engine field's value.

func (*CreateGlobalClusterInput) SetEngineVersion

func (s *CreateGlobalClusterInput) SetEngineVersion(v string) *CreateGlobalClusterInput

SetEngineVersion sets the EngineVersion field's value.

func (*CreateGlobalClusterInput) SetGlobalClusterIdentifier

func (s *CreateGlobalClusterInput) SetGlobalClusterIdentifier(v string) *CreateGlobalClusterInput

SetGlobalClusterIdentifier sets the GlobalClusterIdentifier field's value.

func (*CreateGlobalClusterInput) SetSourceDBClusterIdentifier

func (s *CreateGlobalClusterInput) SetSourceDBClusterIdentifier(v string) *CreateGlobalClusterInput

SetSourceDBClusterIdentifier sets the SourceDBClusterIdentifier field's value.

func (*CreateGlobalClusterInput) SetStorageEncrypted

func (s *CreateGlobalClusterInput) SetStorageEncrypted(v bool) *CreateGlobalClusterInput

SetStorageEncrypted sets the StorageEncrypted field's value.

func (CreateGlobalClusterInput) String

func (s CreateGlobalClusterInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CreateGlobalClusterOutput

type CreateGlobalClusterOutput struct {

    // A data type representing an Aurora global database.
    GlobalCluster *GlobalCluster `type:"structure"`
    // contains filtered or unexported fields
}

func (CreateGlobalClusterOutput) GoString

func (s CreateGlobalClusterOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateGlobalClusterOutput) SetGlobalCluster

func (s *CreateGlobalClusterOutput) SetGlobalCluster(v *GlobalCluster) *CreateGlobalClusterOutput

SetGlobalCluster sets the GlobalCluster field's value.

func (CreateGlobalClusterOutput) String

func (s CreateGlobalClusterOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CreateIntegrationInput

type CreateIntegrationInput struct {

    // An optional set of non-secret key–value pairs that contains additional
    // contextual information about the data. For more information, see Encryption
    // context (https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context)
    // in the Amazon Web Services Key Management Service Developer Guide.
    //
    // You can only include this parameter if you specify the KMSKeyId parameter.
    AdditionalEncryptionContext map[string]*string `type:"map"`

    // Data filtering options for the integration. For more information, see Data
    // filtering for Aurora zero-ETL integrations with Amazon Redshift (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/zero-etl.filtering.html).
    //
    // Valid for: Integrations with Aurora MySQL source DB clusters only
    DataFilter *string `min:"1" type:"string"`

    // A description of the integration.
    Description *string `type:"string"`

    // The name of the integration.
    //
    // IntegrationName is a required field
    IntegrationName *string `min:"1" type:"string" required:"true"`

    // The Amazon Web Services Key Management System (Amazon Web Services KMS) key
    // identifier for the key to use to encrypt the integration. If you don't specify
    // an encryption key, RDS uses a default Amazon Web Services owned key.
    KMSKeyId *string `type:"string"`

    // The Amazon Resource Name (ARN) of the database to use as the source for replication.
    //
    // SourceArn is a required field
    SourceArn *string `min:"1" type:"string" required:"true"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    Tags []*Tag `locationNameList:"Tag" type:"list"`

    // The ARN of the Redshift data warehouse to use as the target for replication.
    //
    // TargetArn is a required field
    TargetArn *string `min:"20" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CreateIntegrationInput) GoString

func (s CreateIntegrationInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateIntegrationInput) SetAdditionalEncryptionContext

func (s *CreateIntegrationInput) SetAdditionalEncryptionContext(v map[string]*string) *CreateIntegrationInput

SetAdditionalEncryptionContext sets the AdditionalEncryptionContext field's value.

func (*CreateIntegrationInput) SetDataFilter

func (s *CreateIntegrationInput) SetDataFilter(v string) *CreateIntegrationInput

SetDataFilter sets the DataFilter field's value.

func (*CreateIntegrationInput) SetDescription

func (s *CreateIntegrationInput) SetDescription(v string) *CreateIntegrationInput

SetDescription sets the Description field's value.

func (*CreateIntegrationInput) SetIntegrationName

func (s *CreateIntegrationInput) SetIntegrationName(v string) *CreateIntegrationInput

SetIntegrationName sets the IntegrationName field's value.

func (*CreateIntegrationInput) SetKMSKeyId

func (s *CreateIntegrationInput) SetKMSKeyId(v string) *CreateIntegrationInput

SetKMSKeyId sets the KMSKeyId field's value.

func (*CreateIntegrationInput) SetSourceArn

func (s *CreateIntegrationInput) SetSourceArn(v string) *CreateIntegrationInput

SetSourceArn sets the SourceArn field's value.

func (*CreateIntegrationInput) SetTags

func (s *CreateIntegrationInput) SetTags(v []*Tag) *CreateIntegrationInput

SetTags sets the Tags field's value.

func (*CreateIntegrationInput) SetTargetArn

func (s *CreateIntegrationInput) SetTargetArn(v string) *CreateIntegrationInput

SetTargetArn sets the TargetArn field's value.

func (CreateIntegrationInput) String

func (s CreateIntegrationInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateIntegrationInput) Validate

func (s *CreateIntegrationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateIntegrationOutput

type CreateIntegrationOutput struct {

    // The encryption context for the integration. For more information, see Encryption
    // context (https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context)
    // in the Amazon Web Services Key Management Service Developer Guide.
    AdditionalEncryptionContext map[string]*string `type:"map"`

    // The time when the integration was created, in Universal Coordinated Time
    // (UTC).
    CreateTime *time.Time `type:"timestamp"`

    // Data filters for the integration. These filters determine which tables from
    // the source database are sent to the target Amazon Redshift data warehouse.
    DataFilter *string `min:"1" type:"string"`

    // A description of the integration.
    Description *string `type:"string"`

    // Any errors associated with the integration.
    Errors []*IntegrationError `locationNameList:"IntegrationError" type:"list"`

    // The ARN of the integration.
    IntegrationArn *string `min:"1" type:"string"`

    // The name of the integration.
    IntegrationName *string `min:"1" type:"string"`

    // The Amazon Web Services Key Management System (Amazon Web Services KMS) key
    // identifier for the key used to to encrypt the integration.
    KMSKeyId *string `type:"string"`

    // The Amazon Resource Name (ARN) of the database used as the source for replication.
    SourceArn *string `min:"1" type:"string"`

    // The current status of the integration.
    Status *string `type:"string" enum:"IntegrationStatus"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    Tags []*Tag `locationNameList:"Tag" type:"list"`

    // The ARN of the Redshift data warehouse used as the target for replication.
    TargetArn *string `min:"20" type:"string"`
    // contains filtered or unexported fields
}

A zero-ETL integration with Amazon Redshift.

func (CreateIntegrationOutput) GoString

func (s CreateIntegrationOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateIntegrationOutput) SetAdditionalEncryptionContext

func (s *CreateIntegrationOutput) SetAdditionalEncryptionContext(v map[string]*string) *CreateIntegrationOutput

SetAdditionalEncryptionContext sets the AdditionalEncryptionContext field's value.

func (*CreateIntegrationOutput) SetCreateTime

func (s *CreateIntegrationOutput) SetCreateTime(v time.Time) *CreateIntegrationOutput

SetCreateTime sets the CreateTime field's value.

func (*CreateIntegrationOutput) SetDataFilter

func (s *CreateIntegrationOutput) SetDataFilter(v string) *CreateIntegrationOutput

SetDataFilter sets the DataFilter field's value.

func (*CreateIntegrationOutput) SetDescription

func (s *CreateIntegrationOutput) SetDescription(v string) *CreateIntegrationOutput

SetDescription sets the Description field's value.

func (*CreateIntegrationOutput) SetErrors

func (s *CreateIntegrationOutput) SetErrors(v []*IntegrationError) *CreateIntegrationOutput

SetErrors sets the Errors field's value.

func (*CreateIntegrationOutput) SetIntegrationArn

func (s *CreateIntegrationOutput) SetIntegrationArn(v string) *CreateIntegrationOutput

SetIntegrationArn sets the IntegrationArn field's value.

func (*CreateIntegrationOutput) SetIntegrationName

func (s *CreateIntegrationOutput) SetIntegrationName(v string) *CreateIntegrationOutput

SetIntegrationName sets the IntegrationName field's value.

func (*CreateIntegrationOutput) SetKMSKeyId

func (s *CreateIntegrationOutput) SetKMSKeyId(v string) *CreateIntegrationOutput

SetKMSKeyId sets the KMSKeyId field's value.

func (*CreateIntegrationOutput) SetSourceArn

func (s *CreateIntegrationOutput) SetSourceArn(v string) *CreateIntegrationOutput

SetSourceArn sets the SourceArn field's value.

func (*CreateIntegrationOutput) SetStatus

func (s *CreateIntegrationOutput) SetStatus(v string) *CreateIntegrationOutput

SetStatus sets the Status field's value.

func (*CreateIntegrationOutput) SetTags

func (s *CreateIntegrationOutput) SetTags(v []*Tag) *CreateIntegrationOutput

SetTags sets the Tags field's value.

func (*CreateIntegrationOutput) SetTargetArn

func (s *CreateIntegrationOutput) SetTargetArn(v string) *CreateIntegrationOutput

SetTargetArn sets the TargetArn field's value.

func (CreateIntegrationOutput) String

func (s CreateIntegrationOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CreateOptionGroupInput

type CreateOptionGroupInput struct {

    // The name of the engine to associate this option group with.
    //
    // Valid Values:
    //
    //    * db2-ae
    //
    //    * db2-se
    //
    //    * mariadb
    //
    //    * mysql
    //
    //    * oracle-ee
    //
    //    * oracle-ee-cdb
    //
    //    * oracle-se2
    //
    //    * oracle-se2-cdb
    //
    //    * postgres
    //
    //    * sqlserver-ee
    //
    //    * sqlserver-se
    //
    //    * sqlserver-ex
    //
    //    * sqlserver-web
    //
    // EngineName is a required field
    EngineName *string `type:"string" required:"true"`

    // Specifies the major version of the engine that this option group should be
    // associated with.
    //
    // MajorEngineVersion is a required field
    MajorEngineVersion *string `type:"string" required:"true"`

    // The description of the option group.
    //
    // OptionGroupDescription is a required field
    OptionGroupDescription *string `type:"string" required:"true"`

    // Specifies the name of the option group to be created.
    //
    // Constraints:
    //
    //    * Must be 1 to 255 letters, numbers, or hyphens
    //
    //    * First character must be a letter
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens
    //
    // Example: myoptiongroup
    //
    // OptionGroupName is a required field
    OptionGroupName *string `type:"string" required:"true"`

    // Tags to assign to the option group.
    Tags []*Tag `locationNameList:"Tag" type:"list"`
    // contains filtered or unexported fields
}

func (CreateOptionGroupInput) GoString

func (s CreateOptionGroupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateOptionGroupInput) SetEngineName

func (s *CreateOptionGroupInput) SetEngineName(v string) *CreateOptionGroupInput

SetEngineName sets the EngineName field's value.

func (*CreateOptionGroupInput) SetMajorEngineVersion

func (s *CreateOptionGroupInput) SetMajorEngineVersion(v string) *CreateOptionGroupInput

SetMajorEngineVersion sets the MajorEngineVersion field's value.

func (*CreateOptionGroupInput) SetOptionGroupDescription

func (s *CreateOptionGroupInput) SetOptionGroupDescription(v string) *CreateOptionGroupInput

SetOptionGroupDescription sets the OptionGroupDescription field's value.

func (*CreateOptionGroupInput) SetOptionGroupName

func (s *CreateOptionGroupInput) SetOptionGroupName(v string) *CreateOptionGroupInput

SetOptionGroupName sets the OptionGroupName field's value.

func (*CreateOptionGroupInput) SetTags

func (s *CreateOptionGroupInput) SetTags(v []*Tag) *CreateOptionGroupInput

SetTags sets the Tags field's value.

func (CreateOptionGroupInput) String

func (s CreateOptionGroupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateOptionGroupInput) Validate

func (s *CreateOptionGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateOptionGroupOutput

type CreateOptionGroupOutput struct {
    OptionGroup *OptionGroup `type:"structure"`
    // contains filtered or unexported fields
}

func (CreateOptionGroupOutput) GoString

func (s CreateOptionGroupOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateOptionGroupOutput) SetOptionGroup

func (s *CreateOptionGroupOutput) SetOptionGroup(v *OptionGroup) *CreateOptionGroupOutput

SetOptionGroup sets the OptionGroup field's value.

func (CreateOptionGroupOutput) String

func (s CreateOptionGroupOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CreateTenantDatabaseInput

type CreateTenantDatabaseInput struct {

    // The character set for your tenant database. If you don't specify a value,
    // the character set name defaults to AL32UTF8.
    CharacterSetName *string `type:"string"`

    // The user-supplied DB instance identifier. RDS creates your tenant database
    // in this DB instance. This parameter isn't case-sensitive.
    //
    // DBInstanceIdentifier is a required field
    DBInstanceIdentifier *string `type:"string" required:"true"`

    // The password for the master user in your tenant database.
    //
    // Constraints:
    //
    //    * Must be 8 to 30 characters.
    //
    //    * Can include any printable ASCII character except forward slash (/),
    //    double quote ("), at symbol (@), ampersand (&), or single quote (').
    //
    // MasterUserPassword is a sensitive parameter and its value will be
    // replaced with "sensitive" in string returned by CreateTenantDatabaseInput's
    // String and GoString methods.
    //
    // MasterUserPassword is a required field
    MasterUserPassword *string `type:"string" required:"true" sensitive:"true"`

    // The name for the master user account in your tenant database. RDS creates
    // this user account in the tenant database and grants privileges to the master
    // user. This parameter is case-sensitive.
    //
    // Constraints:
    //
    //    * Must be 1 to 16 letters, numbers, or underscores.
    //
    //    * First character must be a letter.
    //
    //    * Can't be a reserved word for the chosen database engine.
    //
    // MasterUsername is a required field
    MasterUsername *string `type:"string" required:"true"`

    // The NCHAR value for the tenant database.
    NcharCharacterSetName *string `type:"string"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    Tags []*Tag `locationNameList:"Tag" type:"list"`

    // The user-supplied name of the tenant database that you want to create in
    // your DB instance. This parameter has the same constraints as DBName in CreateDBInstance.
    //
    // TenantDBName is a required field
    TenantDBName *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CreateTenantDatabaseInput) GoString

func (s CreateTenantDatabaseInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateTenantDatabaseInput) SetCharacterSetName

func (s *CreateTenantDatabaseInput) SetCharacterSetName(v string) *CreateTenantDatabaseInput

SetCharacterSetName sets the CharacterSetName field's value.

func (*CreateTenantDatabaseInput) SetDBInstanceIdentifier

func (s *CreateTenantDatabaseInput) SetDBInstanceIdentifier(v string) *CreateTenantDatabaseInput

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*CreateTenantDatabaseInput) SetMasterUserPassword

func (s *CreateTenantDatabaseInput) SetMasterUserPassword(v string) *CreateTenantDatabaseInput

SetMasterUserPassword sets the MasterUserPassword field's value.

func (*CreateTenantDatabaseInput) SetMasterUsername

func (s *CreateTenantDatabaseInput) SetMasterUsername(v string) *CreateTenantDatabaseInput

SetMasterUsername sets the MasterUsername field's value.

func (*CreateTenantDatabaseInput) SetNcharCharacterSetName

func (s *CreateTenantDatabaseInput) SetNcharCharacterSetName(v string) *CreateTenantDatabaseInput

SetNcharCharacterSetName sets the NcharCharacterSetName field's value.

func (*CreateTenantDatabaseInput) SetTags

func (s *CreateTenantDatabaseInput) SetTags(v []*Tag) *CreateTenantDatabaseInput

SetTags sets the Tags field's value.

func (*CreateTenantDatabaseInput) SetTenantDBName

func (s *CreateTenantDatabaseInput) SetTenantDBName(v string) *CreateTenantDatabaseInput

SetTenantDBName sets the TenantDBName field's value.

func (CreateTenantDatabaseInput) String

func (s CreateTenantDatabaseInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateTenantDatabaseInput) Validate

func (s *CreateTenantDatabaseInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateTenantDatabaseOutput

type CreateTenantDatabaseOutput struct {

    // A tenant database in the DB instance. This data type is an element in the
    // response to the DescribeTenantDatabases action.
    TenantDatabase *TenantDatabase `type:"structure"`
    // contains filtered or unexported fields
}

func (CreateTenantDatabaseOutput) GoString

func (s CreateTenantDatabaseOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateTenantDatabaseOutput) SetTenantDatabase

func (s *CreateTenantDatabaseOutput) SetTenantDatabase(v *TenantDatabase) *CreateTenantDatabaseOutput

SetTenantDatabase sets the TenantDatabase field's value.

func (CreateTenantDatabaseOutput) String

func (s CreateTenantDatabaseOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CustomDBEngineVersionAMI

type CustomDBEngineVersionAMI struct {

    // A value that indicates the ID of the AMI.
    ImageId *string `type:"string"`

    // A value that indicates the status of a custom engine version (CEV).
    Status *string `type:"string"`
    // contains filtered or unexported fields
}

A value that indicates the AMI information.

func (CustomDBEngineVersionAMI) GoString

func (s CustomDBEngineVersionAMI) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CustomDBEngineVersionAMI) SetImageId

func (s *CustomDBEngineVersionAMI) SetImageId(v string) *CustomDBEngineVersionAMI

SetImageId sets the ImageId field's value.

func (*CustomDBEngineVersionAMI) SetStatus

func (s *CustomDBEngineVersionAMI) SetStatus(v string) *CustomDBEngineVersionAMI

SetStatus sets the Status field's value.

func (CustomDBEngineVersionAMI) String

func (s CustomDBEngineVersionAMI) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBCluster

type DBCluster struct {

    // The name of the Amazon Kinesis data stream used for the database activity
    // stream.
    ActivityStreamKinesisStreamName *string `type:"string"`

    // The Amazon Web Services KMS key identifier used for encrypting messages in
    // the database activity stream.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key.
    ActivityStreamKmsKeyId *string `type:"string"`

    // The mode of the database activity stream. Database events such as a change
    // or access generate an activity stream event. The database session can handle
    // these events either synchronously or asynchronously.
    ActivityStreamMode *string `type:"string" enum:"ActivityStreamMode"`

    // The status of the database activity stream.
    ActivityStreamStatus *string `type:"string" enum:"ActivityStreamStatus"`

    // For all database engines except Amazon Aurora, AllocatedStorage specifies
    // the allocated storage size in gibibytes (GiB). For Aurora, AllocatedStorage
    // always returns 1, because Aurora DB cluster storage size isn't fixed, but
    // instead automatically adjusts as needed.
    AllocatedStorage *int64 `type:"integer"`

    // A list of the Amazon Web Services Identity and Access Management (IAM) roles
    // that are associated with the DB cluster. IAM roles that are associated with
    // a DB cluster grant permission for the DB cluster to access other Amazon Web
    // Services on your behalf.
    AssociatedRoles []*DBClusterRole `locationNameList:"DBClusterRole" type:"list"`

    // Indicates whether minor version patches are applied automatically.
    //
    // This setting is only for non-Aurora Multi-AZ DB clusters.
    AutoMinorVersionUpgrade *bool `type:"boolean"`

    // The time when a stopped DB cluster is restarted automatically.
    AutomaticRestartTime *time.Time `type:"timestamp"`

    // The list of Availability Zones (AZs) where instances in the DB cluster can
    // be created.
    AvailabilityZones []*string `locationNameList:"AvailabilityZone" type:"list"`

    // The Amazon Resource Name (ARN) of the recovery point in Amazon Web Services
    // Backup.
    AwsBackupRecoveryPointArn *string `type:"string"`

    // The number of change records stored for Backtrack.
    BacktrackConsumedChangeRecords *int64 `type:"long"`

    // The target backtrack window, in seconds. If this value is set to 0, backtracking
    // is disabled for the DB cluster. Otherwise, backtracking is enabled.
    BacktrackWindow *int64 `type:"long"`

    // The number of days for which automatic DB snapshots are retained.
    BackupRetentionPeriod *int64 `type:"integer"`

    // The current capacity of an Aurora Serverless v1 DB cluster. The capacity
    // is 0 (zero) when the cluster is paused.
    //
    // For more information about Aurora Serverless v1, see Using Amazon Aurora
    // Serverless v1 (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html)
    // in the Amazon Aurora User Guide.
    Capacity *int64 `type:"integer"`

    // Returns the details of the DB instance’s server certificate.
    //
    // For more information, see Using SSL/TLS to encrypt a connection to a DB instance
    // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html)
    // in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to
    // a DB cluster (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html)
    // in the Amazon Aurora User Guide.
    CertificateDetails *CertificateDetails `type:"structure"`

    // If present, specifies the name of the character set that this cluster is
    // associated with.
    CharacterSetName *string `type:"string"`

    // The ID of the clone group with which the DB cluster is associated.
    CloneGroupId *string `type:"string"`

    // The time when the DB cluster was created, in Universal Coordinated Time (UTC).
    ClusterCreateTime *time.Time `type:"timestamp"`

    // Indicates whether tags are copied from the DB cluster to snapshots of the
    // DB cluster.
    CopyTagsToSnapshot *bool `type:"boolean"`

    // Indicates whether the DB cluster is a clone of a DB cluster owned by a different
    // Amazon Web Services account.
    CrossAccountClone *bool `type:"boolean"`

    // The custom endpoints associated with the DB cluster.
    CustomEndpoints []*string `type:"list"`

    // The Amazon Resource Name (ARN) for the DB cluster.
    DBClusterArn *string `type:"string"`

    // The user-supplied identifier for the DB cluster. This identifier is the unique
    // key that identifies a DB cluster.
    DBClusterIdentifier *string `type:"string"`

    // The name of the compute and memory capacity class of the DB instance.
    //
    // This setting is only for non-Aurora Multi-AZ DB clusters.
    DBClusterInstanceClass *string `type:"string"`

    // The list of DB instances that make up the DB cluster.
    DBClusterMembers []*DBClusterMember `locationNameList:"DBClusterMember" type:"list"`

    // The list of option group memberships for this DB cluster.
    DBClusterOptionGroupMemberships []*DBClusterOptionGroupStatus `locationNameList:"DBClusterOptionGroup" type:"list"`

    // The name of the DB cluster parameter group for the DB cluster.
    DBClusterParameterGroup *string `type:"string"`

    // Information about the subnet group associated with the DB cluster, including
    // the name, description, and subnets in the subnet group.
    DBSubnetGroup *string `type:"string"`

    // Reserved for future use.
    DBSystemId *string `type:"string"`

    // The name of the initial database that was specified for the DB cluster when
    // it was created, if one was provided. This same name is returned for the life
    // of the DB cluster.
    DatabaseName *string `type:"string"`

    // The Amazon Web Services Region-unique, immutable identifier for the DB cluster.
    // This identifier is found in Amazon Web Services CloudTrail log entries whenever
    // the KMS key for the DB cluster is accessed.
    DbClusterResourceId *string `type:"string"`

    // Indicates whether the DB cluster has deletion protection enabled. The database
    // can't be deleted when deletion protection is enabled.
    DeletionProtection *bool `type:"boolean"`

    // The Active Directory Domain membership records associated with the DB cluster.
    DomainMemberships []*DomainMembership `locationNameList:"DomainMembership" type:"list"`

    // The earliest time to which a DB cluster can be backtracked.
    EarliestBacktrackTime *time.Time `type:"timestamp"`

    // The earliest time to which a database can be restored with point-in-time
    // restore.
    EarliestRestorableTime *time.Time `type:"timestamp"`

    // A list of log types that this DB cluster is configured to export to CloudWatch
    // Logs.
    //
    // Log types vary by DB engine. For information about the log types for each
    // DB engine, see Amazon RDS Database Log Files (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html)
    // in the Amazon Aurora User Guide.
    EnabledCloudwatchLogsExports []*string `type:"list"`

    // The connection endpoint for the primary instance of the DB cluster.
    Endpoint *string `type:"string"`

    // The database engine used for this DB cluster.
    Engine *string `type:"string"`

    // The DB engine mode of the DB cluster, either provisioned or serverless.
    //
    // For more information, see CreateDBCluster (https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBCluster.html).
    EngineMode *string `type:"string"`

    // The version of the database engine.
    EngineVersion *string `type:"string"`

    // Indicates whether write forwarding is enabled for a secondary cluster in
    // an Aurora global database. Because write forwarding takes time to enable,
    // check the value of GlobalWriteForwardingStatus to confirm that the request
    // has completed before using the write forwarding feature for this cluster.
    GlobalWriteForwardingRequested *bool `type:"boolean"`

    // The status of write forwarding for a secondary cluster in an Aurora global
    // database.
    GlobalWriteForwardingStatus *string `type:"string" enum:"WriteForwardingStatus"`

    // The ID that Amazon Route 53 assigns when you create a hosted zone.
    HostedZoneId *string `type:"string"`

    // Indicates whether the HTTP endpoint is enabled for an Aurora DB cluster.
    //
    // When enabled, the HTTP endpoint provides a connectionless web service API
    // (RDS Data API) for running SQL queries on the DB cluster. You can also query
    // your database from inside the RDS console with the RDS query editor.
    //
    // For more information, see Using RDS Data API (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html)
    // in the Amazon Aurora User Guide.
    HttpEndpointEnabled *bool `type:"boolean"`

    // Indicates whether the mapping of Amazon Web Services Identity and Access
    // Management (IAM) accounts to database accounts is enabled.
    IAMDatabaseAuthenticationEnabled *bool `type:"boolean"`

    // The next time you can modify the DB cluster to use the aurora-iopt1 storage
    // type.
    //
    // This setting is only for Aurora DB clusters.
    IOOptimizedNextAllowedModificationTime *time.Time `type:"timestamp"`

    // The Provisioned IOPS (I/O operations per second) value.
    //
    // This setting is only for non-Aurora Multi-AZ DB clusters.
    Iops *int64 `type:"integer"`

    // If StorageEncrypted is enabled, the Amazon Web Services KMS key identifier
    // for the encrypted DB cluster.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key.
    KmsKeyId *string `type:"string"`

    // The latest time to which a database can be restored with point-in-time restore.
    LatestRestorableTime *time.Time `type:"timestamp"`

    // The details for Aurora Limitless Database.
    LimitlessDatabase *LimitlessDatabase `type:"structure"`

    // Indicates whether an Aurora DB cluster has in-cluster write forwarding enabled,
    // not enabled, requested, or is in the process of enabling it.
    LocalWriteForwardingStatus *string `type:"string" enum:"LocalWriteForwardingStatus"`

    // The secret managed by RDS in Amazon Web Services Secrets Manager for the
    // master user password.
    //
    // For more information, see Password management with Amazon Web Services Secrets
    // Manager (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html)
    // in the Amazon RDS User Guide and Password management with Amazon Web Services
    // Secrets Manager (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-secrets-manager.html)
    // in the Amazon Aurora User Guide.
    MasterUserSecret *MasterUserSecret `type:"structure"`

    // The master username for the DB cluster.
    MasterUsername *string `type:"string"`

    // The interval, in seconds, between points when Enhanced Monitoring metrics
    // are collected for the DB cluster.
    //
    // This setting is only for non-Aurora Multi-AZ DB clusters.
    MonitoringInterval *int64 `type:"integer"`

    // The ARN for the IAM role that permits RDS to send Enhanced Monitoring metrics
    // to Amazon CloudWatch Logs.
    //
    // This setting is only for non-Aurora Multi-AZ DB clusters.
    MonitoringRoleArn *string `type:"string"`

    // Indicates whether the DB cluster has instances in multiple Availability Zones.
    MultiAZ *bool `type:"boolean"`

    // The network type of the DB instance.
    //
    // The network type is determined by the DBSubnetGroup specified for the DB
    // cluster. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and
    // the IPv6 protocols (DUAL).
    //
    // For more information, see Working with a DB instance in a VPC (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html)
    // in the Amazon Aurora User Guide.
    //
    // This setting is only for Aurora DB clusters.
    //
    // Valid Values: IPV4 | DUAL
    NetworkType *string `type:"string"`

    // Information about pending changes to the DB cluster. This information is
    // returned only when there are pending changes. Specific changes are identified
    // by subelements.
    PendingModifiedValues *ClusterPendingModifiedValues `type:"structure"`

    // The progress of the operation as a percentage.
    PercentProgress *string `type:"string"`

    // Indicates whether Performance Insights is enabled for the DB cluster.
    //
    // This setting is only for non-Aurora Multi-AZ DB clusters.
    PerformanceInsightsEnabled *bool `type:"boolean"`

    // The Amazon Web Services KMS key identifier for encryption of Performance
    // Insights data.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key.
    //
    // This setting is only for non-Aurora Multi-AZ DB clusters.
    PerformanceInsightsKMSKeyId *string `type:"string"`

    // The number of days to retain Performance Insights data.
    //
    // This setting is only for non-Aurora Multi-AZ DB clusters.
    //
    // Valid Values:
    //
    //    * 7
    //
    //    * month * 31, where month is a number of months from 1-23. Examples: 93
    //    (3 months * 31), 341 (11 months * 31), 589 (19 months * 31)
    //
    //    * 731
    //
    // Default: 7 days
    PerformanceInsightsRetentionPeriod *int64 `type:"integer"`

    // The port that the database engine is listening on.
    Port *int64 `type:"integer"`

    // The daily time range during which automated backups are created if automated
    // backups are enabled, as determined by the BackupRetentionPeriod.
    PreferredBackupWindow *string `type:"string"`

    // The weekly time range during which system maintenance can occur, in Universal
    // Coordinated Time (UTC).
    PreferredMaintenanceWindow *string `type:"string"`

    // Indicates whether the DB cluster is publicly accessible.
    //
    // When the DB cluster is publicly accessible, its Domain Name System (DNS)
    // endpoint resolves to the private IP address from within the DB cluster's
    // virtual private cloud (VPC). It resolves to the public IP address from outside
    // of the DB cluster's VPC. Access to the DB cluster is ultimately controlled
    // by the security group it uses. That public access isn't permitted if the
    // security group assigned to the DB cluster doesn't permit it.
    //
    // When the DB cluster isn't publicly accessible, it is an internal DB cluster
    // with a DNS name that resolves to a private IP address.
    //
    // For more information, see CreateDBCluster.
    //
    // This setting is only for non-Aurora Multi-AZ DB clusters.
    PubliclyAccessible *bool `type:"boolean"`

    // Reserved for future use.
    RdsCustomClusterConfiguration *RdsCustomClusterConfiguration `type:"structure"`

    // Contains one or more identifiers of the read replicas associated with this
    // DB cluster.
    ReadReplicaIdentifiers []*string `locationNameList:"ReadReplicaIdentifier" type:"list"`

    // The reader endpoint for the DB cluster. The reader endpoint for a DB cluster
    // load-balances connections across the Aurora Replicas that are available in
    // a DB cluster. As clients request new connections to the reader endpoint,
    // Aurora distributes the connection requests among the Aurora Replicas in the
    // DB cluster. This functionality can help balance your read workload across
    // multiple Aurora Replicas in your DB cluster.
    //
    // If a failover occurs, and the Aurora Replica that you are connected to is
    // promoted to be the primary instance, your connection is dropped. To continue
    // sending your read workload to other Aurora Replicas in the cluster, you can
    // then reconnect to the reader endpoint.
    ReaderEndpoint *string `type:"string"`

    // The identifier of the source DB cluster if this DB cluster is a read replica.
    ReplicationSourceIdentifier *string `type:"string"`

    // The scaling configuration for an Aurora DB cluster in serverless DB engine
    // mode.
    //
    // For more information, see Using Amazon Aurora Serverless v1 (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html)
    // in the Amazon Aurora User Guide.
    ScalingConfigurationInfo *ScalingConfigurationInfo `type:"structure"`

    // The scaling configuration for an Aurora Serverless v2 DB cluster.
    //
    // For more information, see Using Amazon Aurora Serverless v2 (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html)
    // in the Amazon Aurora User Guide.
    ServerlessV2ScalingConfiguration *ServerlessV2ScalingConfigurationInfo `type:"structure"`

    // The current state of this DB cluster.
    Status *string `type:"string"`

    // Reserved for future use.
    StatusInfos []*DBClusterStatusInfo `locationNameList:"DBClusterStatusInfo" type:"list"`

    // Indicates whether the DB cluster is encrypted.
    StorageEncrypted *bool `type:"boolean"`

    // The storage throughput for the DB cluster. The throughput is automatically
    // set based on the IOPS that you provision, and is not configurable.
    //
    // This setting is only for non-Aurora Multi-AZ DB clusters.
    StorageThroughput *int64 `type:"integer"`

    // The storage type associated with the DB cluster.
    StorageType *string `type:"string"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    TagList []*Tag `locationNameList:"Tag" type:"list"`

    // The list of VPC security groups that the DB cluster belongs to.
    VpcSecurityGroups []*VpcSecurityGroupMembership `locationNameList:"VpcSecurityGroupMembership" type:"list"`
    // contains filtered or unexported fields
}

Contains the details of an Amazon Aurora DB cluster or Multi-AZ DB cluster.

For an Amazon Aurora DB cluster, this data type is used as a response element in the operations CreateDBCluster, DeleteDBCluster, DescribeDBClusters, FailoverDBCluster, ModifyDBCluster, PromoteReadReplicaDBCluster, RestoreDBClusterFromS3, RestoreDBClusterFromSnapshot, RestoreDBClusterToPointInTime, StartDBCluster, and StopDBCluster.

For a Multi-AZ DB cluster, this data type is used as a response element in the operations CreateDBCluster, DeleteDBCluster, DescribeDBClusters, FailoverDBCluster, ModifyDBCluster, RebootDBCluster, RestoreDBClusterFromSnapshot, and RestoreDBClusterToPointInTime.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html) in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ deployments with two readable standby DB instances (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html) in the Amazon RDS User Guide.

func (DBCluster) GoString

func (s DBCluster) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBCluster) SetActivityStreamKinesisStreamName

func (s *DBCluster) SetActivityStreamKinesisStreamName(v string) *DBCluster

SetActivityStreamKinesisStreamName sets the ActivityStreamKinesisStreamName field's value.

func (*DBCluster) SetActivityStreamKmsKeyId

func (s *DBCluster) SetActivityStreamKmsKeyId(v string) *DBCluster

SetActivityStreamKmsKeyId sets the ActivityStreamKmsKeyId field's value.

func (*DBCluster) SetActivityStreamMode

func (s *DBCluster) SetActivityStreamMode(v string) *DBCluster

SetActivityStreamMode sets the ActivityStreamMode field's value.

func (*DBCluster) SetActivityStreamStatus

func (s *DBCluster) SetActivityStreamStatus(v string) *DBCluster

SetActivityStreamStatus sets the ActivityStreamStatus field's value.

func (*DBCluster) SetAllocatedStorage

func (s *DBCluster) SetAllocatedStorage(v int64) *DBCluster

SetAllocatedStorage sets the AllocatedStorage field's value.

func (*DBCluster) SetAssociatedRoles

func (s *DBCluster) SetAssociatedRoles(v []*DBClusterRole) *DBCluster

SetAssociatedRoles sets the AssociatedRoles field's value.

func (*DBCluster) SetAutoMinorVersionUpgrade

func (s *DBCluster) SetAutoMinorVersionUpgrade(v bool) *DBCluster

SetAutoMinorVersionUpgrade sets the AutoMinorVersionUpgrade field's value.

func (*DBCluster) SetAutomaticRestartTime

func (s *DBCluster) SetAutomaticRestartTime(v time.Time) *DBCluster

SetAutomaticRestartTime sets the AutomaticRestartTime field's value.

func (*DBCluster) SetAvailabilityZones

func (s *DBCluster) SetAvailabilityZones(v []*string) *DBCluster

SetAvailabilityZones sets the AvailabilityZones field's value.

func (*DBCluster) SetAwsBackupRecoveryPointArn

func (s *DBCluster) SetAwsBackupRecoveryPointArn(v string) *DBCluster

SetAwsBackupRecoveryPointArn sets the AwsBackupRecoveryPointArn field's value.

func (*DBCluster) SetBacktrackConsumedChangeRecords

func (s *DBCluster) SetBacktrackConsumedChangeRecords(v int64) *DBCluster

SetBacktrackConsumedChangeRecords sets the BacktrackConsumedChangeRecords field's value.

func (*DBCluster) SetBacktrackWindow

func (s *DBCluster) SetBacktrackWindow(v int64) *DBCluster

SetBacktrackWindow sets the BacktrackWindow field's value.

func (*DBCluster) SetBackupRetentionPeriod

func (s *DBCluster) SetBackupRetentionPeriod(v int64) *DBCluster

SetBackupRetentionPeriod sets the BackupRetentionPeriod field's value.

func (*DBCluster) SetCapacity

func (s *DBCluster) SetCapacity(v int64) *DBCluster

SetCapacity sets the Capacity field's value.

func (*DBCluster) SetCertificateDetails

func (s *DBCluster) SetCertificateDetails(v *CertificateDetails) *DBCluster

SetCertificateDetails sets the CertificateDetails field's value.

func (*DBCluster) SetCharacterSetName

func (s *DBCluster) SetCharacterSetName(v string) *DBCluster

SetCharacterSetName sets the CharacterSetName field's value.

func (*DBCluster) SetCloneGroupId

func (s *DBCluster) SetCloneGroupId(v string) *DBCluster

SetCloneGroupId sets the CloneGroupId field's value.

func (*DBCluster) SetClusterCreateTime

func (s *DBCluster) SetClusterCreateTime(v time.Time) *DBCluster

SetClusterCreateTime sets the ClusterCreateTime field's value.

func (*DBCluster) SetCopyTagsToSnapshot

func (s *DBCluster) SetCopyTagsToSnapshot(v bool) *DBCluster

SetCopyTagsToSnapshot sets the CopyTagsToSnapshot field's value.

func (*DBCluster) SetCrossAccountClone

func (s *DBCluster) SetCrossAccountClone(v bool) *DBCluster

SetCrossAccountClone sets the CrossAccountClone field's value.

func (*DBCluster) SetCustomEndpoints

func (s *DBCluster) SetCustomEndpoints(v []*string) *DBCluster

SetCustomEndpoints sets the CustomEndpoints field's value.

func (*DBCluster) SetDBClusterArn

func (s *DBCluster) SetDBClusterArn(v string) *DBCluster

SetDBClusterArn sets the DBClusterArn field's value.

func (*DBCluster) SetDBClusterIdentifier

func (s *DBCluster) SetDBClusterIdentifier(v string) *DBCluster

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*DBCluster) SetDBClusterInstanceClass

func (s *DBCluster) SetDBClusterInstanceClass(v string) *DBCluster

SetDBClusterInstanceClass sets the DBClusterInstanceClass field's value.

func (*DBCluster) SetDBClusterMembers

func (s *DBCluster) SetDBClusterMembers(v []*DBClusterMember) *DBCluster

SetDBClusterMembers sets the DBClusterMembers field's value.

func (*DBCluster) SetDBClusterOptionGroupMemberships

func (s *DBCluster) SetDBClusterOptionGroupMemberships(v []*DBClusterOptionGroupStatus) *DBCluster

SetDBClusterOptionGroupMemberships sets the DBClusterOptionGroupMemberships field's value.

func (*DBCluster) SetDBClusterParameterGroup

func (s *DBCluster) SetDBClusterParameterGroup(v string) *DBCluster

SetDBClusterParameterGroup sets the DBClusterParameterGroup field's value.

func (*DBCluster) SetDBSubnetGroup

func (s *DBCluster) SetDBSubnetGroup(v string) *DBCluster

SetDBSubnetGroup sets the DBSubnetGroup field's value.

func (*DBCluster) SetDBSystemId

func (s *DBCluster) SetDBSystemId(v string) *DBCluster

SetDBSystemId sets the DBSystemId field's value.

func (*DBCluster) SetDatabaseName

func (s *DBCluster) SetDatabaseName(v string) *DBCluster

SetDatabaseName sets the DatabaseName field's value.

func (*DBCluster) SetDbClusterResourceId

func (s *DBCluster) SetDbClusterResourceId(v string) *DBCluster

SetDbClusterResourceId sets the DbClusterResourceId field's value.

func (*DBCluster) SetDeletionProtection

func (s *DBCluster) SetDeletionProtection(v bool) *DBCluster

SetDeletionProtection sets the DeletionProtection field's value.

func (*DBCluster) SetDomainMemberships

func (s *DBCluster) SetDomainMemberships(v []*DomainMembership) *DBCluster

SetDomainMemberships sets the DomainMemberships field's value.

func (*DBCluster) SetEarliestBacktrackTime

func (s *DBCluster) SetEarliestBacktrackTime(v time.Time) *DBCluster

SetEarliestBacktrackTime sets the EarliestBacktrackTime field's value.

func (*DBCluster) SetEarliestRestorableTime

func (s *DBCluster) SetEarliestRestorableTime(v time.Time) *DBCluster

SetEarliestRestorableTime sets the EarliestRestorableTime field's value.

func (*DBCluster) SetEnabledCloudwatchLogsExports

func (s *DBCluster) SetEnabledCloudwatchLogsExports(v []*string) *DBCluster

SetEnabledCloudwatchLogsExports sets the EnabledCloudwatchLogsExports field's value.

func (*DBCluster) SetEndpoint

func (s *DBCluster) SetEndpoint(v string) *DBCluster

SetEndpoint sets the Endpoint field's value.

func (*DBCluster) SetEngine

func (s *DBCluster) SetEngine(v string) *DBCluster

SetEngine sets the Engine field's value.

func (*DBCluster) SetEngineMode

func (s *DBCluster) SetEngineMode(v string) *DBCluster

SetEngineMode sets the EngineMode field's value.

func (*DBCluster) SetEngineVersion

func (s *DBCluster) SetEngineVersion(v string) *DBCluster

SetEngineVersion sets the EngineVersion field's value.

func (*DBCluster) SetGlobalWriteForwardingRequested

func (s *DBCluster) SetGlobalWriteForwardingRequested(v bool) *DBCluster

SetGlobalWriteForwardingRequested sets the GlobalWriteForwardingRequested field's value.

func (*DBCluster) SetGlobalWriteForwardingStatus

func (s *DBCluster) SetGlobalWriteForwardingStatus(v string) *DBCluster

SetGlobalWriteForwardingStatus sets the GlobalWriteForwardingStatus field's value.

func (*DBCluster) SetHostedZoneId

func (s *DBCluster) SetHostedZoneId(v string) *DBCluster

SetHostedZoneId sets the HostedZoneId field's value.

func (*DBCluster) SetHttpEndpointEnabled

func (s *DBCluster) SetHttpEndpointEnabled(v bool) *DBCluster

SetHttpEndpointEnabled sets the HttpEndpointEnabled field's value.

func (*DBCluster) SetIAMDatabaseAuthenticationEnabled

func (s *DBCluster) SetIAMDatabaseAuthenticationEnabled(v bool) *DBCluster

SetIAMDatabaseAuthenticationEnabled sets the IAMDatabaseAuthenticationEnabled field's value.

func (*DBCluster) SetIOOptimizedNextAllowedModificationTime

func (s *DBCluster) SetIOOptimizedNextAllowedModificationTime(v time.Time) *DBCluster

SetIOOptimizedNextAllowedModificationTime sets the IOOptimizedNextAllowedModificationTime field's value.

func (*DBCluster) SetIops

func (s *DBCluster) SetIops(v int64) *DBCluster

SetIops sets the Iops field's value.

func (*DBCluster) SetKmsKeyId

func (s *DBCluster) SetKmsKeyId(v string) *DBCluster

SetKmsKeyId sets the KmsKeyId field's value.

func (*DBCluster) SetLatestRestorableTime

func (s *DBCluster) SetLatestRestorableTime(v time.Time) *DBCluster

SetLatestRestorableTime sets the LatestRestorableTime field's value.

func (*DBCluster) SetLimitlessDatabase

func (s *DBCluster) SetLimitlessDatabase(v *LimitlessDatabase) *DBCluster

SetLimitlessDatabase sets the LimitlessDatabase field's value.

func (*DBCluster) SetLocalWriteForwardingStatus

func (s *DBCluster) SetLocalWriteForwardingStatus(v string) *DBCluster

SetLocalWriteForwardingStatus sets the LocalWriteForwardingStatus field's value.

func (*DBCluster) SetMasterUserSecret

func (s *DBCluster) SetMasterUserSecret(v *MasterUserSecret) *DBCluster

SetMasterUserSecret sets the MasterUserSecret field's value.

func (*DBCluster) SetMasterUsername

func (s *DBCluster) SetMasterUsername(v string) *DBCluster

SetMasterUsername sets the MasterUsername field's value.

func (*DBCluster) SetMonitoringInterval

func (s *DBCluster) SetMonitoringInterval(v int64) *DBCluster

SetMonitoringInterval sets the MonitoringInterval field's value.

func (*DBCluster) SetMonitoringRoleArn

func (s *DBCluster) SetMonitoringRoleArn(v string) *DBCluster

SetMonitoringRoleArn sets the MonitoringRoleArn field's value.

func (*DBCluster) SetMultiAZ

func (s *DBCluster) SetMultiAZ(v bool) *DBCluster

SetMultiAZ sets the MultiAZ field's value.

func (*DBCluster) SetNetworkType

func (s *DBCluster) SetNetworkType(v string) *DBCluster

SetNetworkType sets the NetworkType field's value.

func (*DBCluster) SetPendingModifiedValues

func (s *DBCluster) SetPendingModifiedValues(v *ClusterPendingModifiedValues) *DBCluster

SetPendingModifiedValues sets the PendingModifiedValues field's value.

func (*DBCluster) SetPercentProgress

func (s *DBCluster) SetPercentProgress(v string) *DBCluster

SetPercentProgress sets the PercentProgress field's value.

func (*DBCluster) SetPerformanceInsightsEnabled

func (s *DBCluster) SetPerformanceInsightsEnabled(v bool) *DBCluster

SetPerformanceInsightsEnabled sets the PerformanceInsightsEnabled field's value.

func (*DBCluster) SetPerformanceInsightsKMSKeyId

func (s *DBCluster) SetPerformanceInsightsKMSKeyId(v string) *DBCluster

SetPerformanceInsightsKMSKeyId sets the PerformanceInsightsKMSKeyId field's value.

func (*DBCluster) SetPerformanceInsightsRetentionPeriod

func (s *DBCluster) SetPerformanceInsightsRetentionPeriod(v int64) *DBCluster

SetPerformanceInsightsRetentionPeriod sets the PerformanceInsightsRetentionPeriod field's value.

func (*DBCluster) SetPort

func (s *DBCluster) SetPort(v int64) *DBCluster

SetPort sets the Port field's value.

func (*DBCluster) SetPreferredBackupWindow

func (s *DBCluster) SetPreferredBackupWindow(v string) *DBCluster

SetPreferredBackupWindow sets the PreferredBackupWindow field's value.

func (*DBCluster) SetPreferredMaintenanceWindow

func (s *DBCluster) SetPreferredMaintenanceWindow(v string) *DBCluster

SetPreferredMaintenanceWindow sets the PreferredMaintenanceWindow field's value.

func (*DBCluster) SetPubliclyAccessible

func (s *DBCluster) SetPubliclyAccessible(v bool) *DBCluster

SetPubliclyAccessible sets the PubliclyAccessible field's value.

func (*DBCluster) SetRdsCustomClusterConfiguration

func (s *DBCluster) SetRdsCustomClusterConfiguration(v *RdsCustomClusterConfiguration) *DBCluster

SetRdsCustomClusterConfiguration sets the RdsCustomClusterConfiguration field's value.

func (*DBCluster) SetReadReplicaIdentifiers

func (s *DBCluster) SetReadReplicaIdentifiers(v []*string) *DBCluster

SetReadReplicaIdentifiers sets the ReadReplicaIdentifiers field's value.

func (*DBCluster) SetReaderEndpoint

func (s *DBCluster) SetReaderEndpoint(v string) *DBCluster

SetReaderEndpoint sets the ReaderEndpoint field's value.

func (*DBCluster) SetReplicationSourceIdentifier

func (s *DBCluster) SetReplicationSourceIdentifier(v string) *DBCluster

SetReplicationSourceIdentifier sets the ReplicationSourceIdentifier field's value.

func (*DBCluster) SetScalingConfigurationInfo

func (s *DBCluster) SetScalingConfigurationInfo(v *ScalingConfigurationInfo) *DBCluster

SetScalingConfigurationInfo sets the ScalingConfigurationInfo field's value.

func (*DBCluster) SetServerlessV2ScalingConfiguration

func (s *DBCluster) SetServerlessV2ScalingConfiguration(v *ServerlessV2ScalingConfigurationInfo) *DBCluster

SetServerlessV2ScalingConfiguration sets the ServerlessV2ScalingConfiguration field's value.

func (*DBCluster) SetStatus

func (s *DBCluster) SetStatus(v string) *DBCluster

SetStatus sets the Status field's value.

func (*DBCluster) SetStatusInfos

func (s *DBCluster) SetStatusInfos(v []*DBClusterStatusInfo) *DBCluster

SetStatusInfos sets the StatusInfos field's value.

func (*DBCluster) SetStorageEncrypted

func (s *DBCluster) SetStorageEncrypted(v bool) *DBCluster

SetStorageEncrypted sets the StorageEncrypted field's value.

func (*DBCluster) SetStorageThroughput

func (s *DBCluster) SetStorageThroughput(v int64) *DBCluster

SetStorageThroughput sets the StorageThroughput field's value.

func (*DBCluster) SetStorageType

func (s *DBCluster) SetStorageType(v string) *DBCluster

SetStorageType sets the StorageType field's value.

func (*DBCluster) SetTagList

func (s *DBCluster) SetTagList(v []*Tag) *DBCluster

SetTagList sets the TagList field's value.

func (*DBCluster) SetVpcSecurityGroups

func (s *DBCluster) SetVpcSecurityGroups(v []*VpcSecurityGroupMembership) *DBCluster

SetVpcSecurityGroups sets the VpcSecurityGroups field's value.

func (DBCluster) String

func (s DBCluster) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBClusterAutomatedBackup

type DBClusterAutomatedBackup struct {

    // For all database engines except Amazon Aurora, AllocatedStorage specifies
    // the allocated storage size in gibibytes (GiB). For Aurora, AllocatedStorage
    // always returns 1, because Aurora DB cluster storage size isn't fixed, but
    // instead automatically adjusts as needed.
    AllocatedStorage *int64 `type:"integer"`

    // The Availability Zones where instances in the DB cluster can be created.
    // For information on Amazon Web Services Regions and Availability Zones, see
    // Regions and Availability Zones (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.RegionsAndAvailabilityZones.html).
    AvailabilityZones []*string `locationNameList:"AvailabilityZone" type:"list"`

    // The Amazon Resource Name (ARN) of the recovery point in Amazon Web Services
    // Backup.
    AwsBackupRecoveryPointArn *string `type:"string"`

    // The retention period for the automated backups.
    BackupRetentionPeriod *int64 `type:"integer"`

    // The time when the DB cluster was created, in Universal Coordinated Time (UTC).
    ClusterCreateTime *time.Time `type:"timestamp"`

    // The Amazon Resource Name (ARN) for the source DB cluster.
    DBClusterArn *string `type:"string"`

    // The Amazon Resource Name (ARN) for the automated backups.
    DBClusterAutomatedBackupsArn *string `type:"string"`

    // The identifier for the source DB cluster, which can't be changed and which
    // is unique to an Amazon Web Services Region.
    DBClusterIdentifier *string `type:"string"`

    // The resource ID for the source DB cluster, which can't be changed and which
    // is unique to an Amazon Web Services Region.
    DbClusterResourceId *string `type:"string"`

    // The name of the database engine for this automated backup.
    Engine *string `type:"string"`

    // The engine mode of the database engine for the automated backup.
    EngineMode *string `type:"string"`

    // The version of the database engine for the automated backup.
    EngineVersion *string `type:"string"`

    // Indicates whether mapping of Amazon Web Services Identity and Access Management
    // (IAM) accounts to database accounts is enabled.
    IAMDatabaseAuthenticationEnabled *bool `type:"boolean"`

    // The IOPS (I/O operations per second) value for the automated backup.
    //
    // This setting is only for non-Aurora Multi-AZ DB clusters.
    Iops *int64 `type:"integer"`

    // The Amazon Web Services KMS key ID for an automated backup.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key.
    KmsKeyId *string `type:"string"`

    // The license model information for this DB cluster automated backup.
    LicenseModel *string `type:"string"`

    // The master user name of the automated backup.
    MasterUsername *string `type:"string"`

    // The port number that the automated backup used for connections.
    //
    // Default: Inherits from the source DB cluster
    //
    // Valid Values: 1150-65535
    Port *int64 `type:"integer"`

    // The Amazon Web Services Region associated with the automated backup.
    Region *string `type:"string"`

    // Earliest and latest time an instance can be restored to:
    RestoreWindow *RestoreWindow `type:"structure"`

    // A list of status information for an automated backup:
    //
    //    * retained - Automated backups for deleted clusters.
    Status *string `type:"string"`

    // Indicates whether the source DB cluster is encrypted.
    StorageEncrypted *bool `type:"boolean"`

    // The storage throughput for the automated backup. The throughput is automatically
    // set based on the IOPS that you provision, and is not configurable.
    //
    // This setting is only for non-Aurora Multi-AZ DB clusters.
    StorageThroughput *int64 `type:"integer"`

    // The storage type associated with the DB cluster.
    //
    // This setting is only for non-Aurora Multi-AZ DB clusters.
    StorageType *string `type:"string"`

    // The VPC ID associated with the DB cluster.
    VpcId *string `type:"string"`
    // contains filtered or unexported fields
}

An automated backup of a DB cluster. It consists of system backups, transaction logs, and the database cluster properties that existed at the time you deleted the source cluster.

func (DBClusterAutomatedBackup) GoString

func (s DBClusterAutomatedBackup) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBClusterAutomatedBackup) SetAllocatedStorage

func (s *DBClusterAutomatedBackup) SetAllocatedStorage(v int64) *DBClusterAutomatedBackup

SetAllocatedStorage sets the AllocatedStorage field's value.

func (*DBClusterAutomatedBackup) SetAvailabilityZones

func (s *DBClusterAutomatedBackup) SetAvailabilityZones(v []*string) *DBClusterAutomatedBackup

SetAvailabilityZones sets the AvailabilityZones field's value.

func (*DBClusterAutomatedBackup) SetAwsBackupRecoveryPointArn

func (s *DBClusterAutomatedBackup) SetAwsBackupRecoveryPointArn(v string) *DBClusterAutomatedBackup

SetAwsBackupRecoveryPointArn sets the AwsBackupRecoveryPointArn field's value.

func (*DBClusterAutomatedBackup) SetBackupRetentionPeriod

func (s *DBClusterAutomatedBackup) SetBackupRetentionPeriod(v int64) *DBClusterAutomatedBackup

SetBackupRetentionPeriod sets the BackupRetentionPeriod field's value.

func (*DBClusterAutomatedBackup) SetClusterCreateTime

func (s *DBClusterAutomatedBackup) SetClusterCreateTime(v time.Time) *DBClusterAutomatedBackup

SetClusterCreateTime sets the ClusterCreateTime field's value.

func (*DBClusterAutomatedBackup) SetDBClusterArn

func (s *DBClusterAutomatedBackup) SetDBClusterArn(v string) *DBClusterAutomatedBackup

SetDBClusterArn sets the DBClusterArn field's value.

func (*DBClusterAutomatedBackup) SetDBClusterAutomatedBackupsArn

func (s *DBClusterAutomatedBackup) SetDBClusterAutomatedBackupsArn(v string) *DBClusterAutomatedBackup

SetDBClusterAutomatedBackupsArn sets the DBClusterAutomatedBackupsArn field's value.

func (*DBClusterAutomatedBackup) SetDBClusterIdentifier

func (s *DBClusterAutomatedBackup) SetDBClusterIdentifier(v string) *DBClusterAutomatedBackup

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*DBClusterAutomatedBackup) SetDbClusterResourceId

func (s *DBClusterAutomatedBackup) SetDbClusterResourceId(v string) *DBClusterAutomatedBackup

SetDbClusterResourceId sets the DbClusterResourceId field's value.

func (*DBClusterAutomatedBackup) SetEngine

func (s *DBClusterAutomatedBackup) SetEngine(v string) *DBClusterAutomatedBackup

SetEngine sets the Engine field's value.

func (*DBClusterAutomatedBackup) SetEngineMode

func (s *DBClusterAutomatedBackup) SetEngineMode(v string) *DBClusterAutomatedBackup

SetEngineMode sets the EngineMode field's value.

func (*DBClusterAutomatedBackup) SetEngineVersion

func (s *DBClusterAutomatedBackup) SetEngineVersion(v string) *DBClusterAutomatedBackup

SetEngineVersion sets the EngineVersion field's value.

func (*DBClusterAutomatedBackup) SetIAMDatabaseAuthenticationEnabled

func (s *DBClusterAutomatedBackup) SetIAMDatabaseAuthenticationEnabled(v bool) *DBClusterAutomatedBackup

SetIAMDatabaseAuthenticationEnabled sets the IAMDatabaseAuthenticationEnabled field's value.

func (*DBClusterAutomatedBackup) SetIops

func (s *DBClusterAutomatedBackup) SetIops(v int64) *DBClusterAutomatedBackup

SetIops sets the Iops field's value.

func (*DBClusterAutomatedBackup) SetKmsKeyId

func (s *DBClusterAutomatedBackup) SetKmsKeyId(v string) *DBClusterAutomatedBackup

SetKmsKeyId sets the KmsKeyId field's value.

func (*DBClusterAutomatedBackup) SetLicenseModel

func (s *DBClusterAutomatedBackup) SetLicenseModel(v string) *DBClusterAutomatedBackup

SetLicenseModel sets the LicenseModel field's value.

func (*DBClusterAutomatedBackup) SetMasterUsername

func (s *DBClusterAutomatedBackup) SetMasterUsername(v string) *DBClusterAutomatedBackup

SetMasterUsername sets the MasterUsername field's value.

func (*DBClusterAutomatedBackup) SetPort

func (s *DBClusterAutomatedBackup) SetPort(v int64) *DBClusterAutomatedBackup

SetPort sets the Port field's value.

func (*DBClusterAutomatedBackup) SetRegion

func (s *DBClusterAutomatedBackup) SetRegion(v string) *DBClusterAutomatedBackup

SetRegion sets the Region field's value.

func (*DBClusterAutomatedBackup) SetRestoreWindow

func (s *DBClusterAutomatedBackup) SetRestoreWindow(v *RestoreWindow) *DBClusterAutomatedBackup

SetRestoreWindow sets the RestoreWindow field's value.

func (*DBClusterAutomatedBackup) SetStatus

func (s *DBClusterAutomatedBackup) SetStatus(v string) *DBClusterAutomatedBackup

SetStatus sets the Status field's value.

func (*DBClusterAutomatedBackup) SetStorageEncrypted

func (s *DBClusterAutomatedBackup) SetStorageEncrypted(v bool) *DBClusterAutomatedBackup

SetStorageEncrypted sets the StorageEncrypted field's value.

func (*DBClusterAutomatedBackup) SetStorageThroughput

func (s *DBClusterAutomatedBackup) SetStorageThroughput(v int64) *DBClusterAutomatedBackup

SetStorageThroughput sets the StorageThroughput field's value.

func (*DBClusterAutomatedBackup) SetStorageType

func (s *DBClusterAutomatedBackup) SetStorageType(v string) *DBClusterAutomatedBackup

SetStorageType sets the StorageType field's value.

func (*DBClusterAutomatedBackup) SetVpcId

func (s *DBClusterAutomatedBackup) SetVpcId(v string) *DBClusterAutomatedBackup

SetVpcId sets the VpcId field's value.

func (DBClusterAutomatedBackup) String

func (s DBClusterAutomatedBackup) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBClusterEndpoint

type DBClusterEndpoint struct {

    // The type associated with a custom endpoint. One of: READER, WRITER, ANY.
    CustomEndpointType *string `type:"string"`

    // The Amazon Resource Name (ARN) for the endpoint.
    DBClusterEndpointArn *string `type:"string"`

    // The identifier associated with the endpoint. This parameter is stored as
    // a lowercase string.
    DBClusterEndpointIdentifier *string `type:"string"`

    // A unique system-generated identifier for an endpoint. It remains the same
    // for the whole life of the endpoint.
    DBClusterEndpointResourceIdentifier *string `type:"string"`

    // The DB cluster identifier of the DB cluster associated with the endpoint.
    // This parameter is stored as a lowercase string.
    DBClusterIdentifier *string `type:"string"`

    // The DNS address of the endpoint.
    Endpoint *string `type:"string"`

    // The type of the endpoint. One of: READER, WRITER, CUSTOM.
    EndpointType *string `type:"string"`

    // List of DB instance identifiers that aren't part of the custom endpoint group.
    // All other eligible instances are reachable through the custom endpoint. Only
    // relevant if the list of static members is empty.
    ExcludedMembers []*string `type:"list"`

    // List of DB instance identifiers that are part of the custom endpoint group.
    StaticMembers []*string `type:"list"`

    // The current status of the endpoint. One of: creating, available, deleting,
    // inactive, modifying. The inactive state applies to an endpoint that can't
    // be used for a certain kind of cluster, such as a writer endpoint for a read-only
    // secondary cluster in a global database.
    Status *string `type:"string"`
    // contains filtered or unexported fields
}

This data type represents the information you need to connect to an Amazon Aurora DB cluster. This data type is used as a response element in the following actions:

  • CreateDBClusterEndpoint

  • DescribeDBClusterEndpoints

  • ModifyDBClusterEndpoint

  • DeleteDBClusterEndpoint

For the data structure that represents Amazon RDS DB instance endpoints, see Endpoint.

func (DBClusterEndpoint) GoString

func (s DBClusterEndpoint) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBClusterEndpoint) SetCustomEndpointType

func (s *DBClusterEndpoint) SetCustomEndpointType(v string) *DBClusterEndpoint

SetCustomEndpointType sets the CustomEndpointType field's value.

func (*DBClusterEndpoint) SetDBClusterEndpointArn

func (s *DBClusterEndpoint) SetDBClusterEndpointArn(v string) *DBClusterEndpoint

SetDBClusterEndpointArn sets the DBClusterEndpointArn field's value.

func (*DBClusterEndpoint) SetDBClusterEndpointIdentifier

func (s *DBClusterEndpoint) SetDBClusterEndpointIdentifier(v string) *DBClusterEndpoint

SetDBClusterEndpointIdentifier sets the DBClusterEndpointIdentifier field's value.

func (*DBClusterEndpoint) SetDBClusterEndpointResourceIdentifier

func (s *DBClusterEndpoint) SetDBClusterEndpointResourceIdentifier(v string) *DBClusterEndpoint

SetDBClusterEndpointResourceIdentifier sets the DBClusterEndpointResourceIdentifier field's value.

func (*DBClusterEndpoint) SetDBClusterIdentifier

func (s *DBClusterEndpoint) SetDBClusterIdentifier(v string) *DBClusterEndpoint

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*DBClusterEndpoint) SetEndpoint

func (s *DBClusterEndpoint) SetEndpoint(v string) *DBClusterEndpoint

SetEndpoint sets the Endpoint field's value.

func (*DBClusterEndpoint) SetEndpointType

func (s *DBClusterEndpoint) SetEndpointType(v string) *DBClusterEndpoint

SetEndpointType sets the EndpointType field's value.

func (*DBClusterEndpoint) SetExcludedMembers

func (s *DBClusterEndpoint) SetExcludedMembers(v []*string) *DBClusterEndpoint

SetExcludedMembers sets the ExcludedMembers field's value.

func (*DBClusterEndpoint) SetStaticMembers

func (s *DBClusterEndpoint) SetStaticMembers(v []*string) *DBClusterEndpoint

SetStaticMembers sets the StaticMembers field's value.

func (*DBClusterEndpoint) SetStatus

func (s *DBClusterEndpoint) SetStatus(v string) *DBClusterEndpoint

SetStatus sets the Status field's value.

func (DBClusterEndpoint) String

func (s DBClusterEndpoint) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBClusterMember

type DBClusterMember struct {

    // Specifies the status of the DB cluster parameter group for this member of
    // the DB cluster.
    DBClusterParameterGroupStatus *string `type:"string"`

    // Specifies the instance identifier for this member of the DB cluster.
    DBInstanceIdentifier *string `type:"string"`

    // Indicates whether the cluster member is the primary DB instance for the DB
    // cluster.
    IsClusterWriter *bool `type:"boolean"`

    // A value that specifies the order in which an Aurora Replica is promoted to
    // the primary instance after a failure of the existing primary instance. For
    // more information, see Fault Tolerance for an Aurora DB Cluster (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.FaultTolerance)
    // in the Amazon Aurora User Guide.
    PromotionTier *int64 `type:"integer"`
    // contains filtered or unexported fields
}

Contains information about an instance that is part of a DB cluster.

func (DBClusterMember) GoString

func (s DBClusterMember) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBClusterMember) SetDBClusterParameterGroupStatus

func (s *DBClusterMember) SetDBClusterParameterGroupStatus(v string) *DBClusterMember

SetDBClusterParameterGroupStatus sets the DBClusterParameterGroupStatus field's value.

func (*DBClusterMember) SetDBInstanceIdentifier

func (s *DBClusterMember) SetDBInstanceIdentifier(v string) *DBClusterMember

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*DBClusterMember) SetIsClusterWriter

func (s *DBClusterMember) SetIsClusterWriter(v bool) *DBClusterMember

SetIsClusterWriter sets the IsClusterWriter field's value.

func (*DBClusterMember) SetPromotionTier

func (s *DBClusterMember) SetPromotionTier(v int64) *DBClusterMember

SetPromotionTier sets the PromotionTier field's value.

func (DBClusterMember) String

func (s DBClusterMember) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBClusterOptionGroupStatus

type DBClusterOptionGroupStatus struct {

    // Specifies the name of the DB cluster option group.
    DBClusterOptionGroupName *string `type:"string"`

    // Specifies the status of the DB cluster option group.
    Status *string `type:"string"`
    // contains filtered or unexported fields
}

Contains status information for a DB cluster option group.

func (DBClusterOptionGroupStatus) GoString

func (s DBClusterOptionGroupStatus) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBClusterOptionGroupStatus) SetDBClusterOptionGroupName

func (s *DBClusterOptionGroupStatus) SetDBClusterOptionGroupName(v string) *DBClusterOptionGroupStatus

SetDBClusterOptionGroupName sets the DBClusterOptionGroupName field's value.

func (*DBClusterOptionGroupStatus) SetStatus

func (s *DBClusterOptionGroupStatus) SetStatus(v string) *DBClusterOptionGroupStatus

SetStatus sets the Status field's value.

func (DBClusterOptionGroupStatus) String

func (s DBClusterOptionGroupStatus) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBClusterParameterGroup

type DBClusterParameterGroup struct {

    // The Amazon Resource Name (ARN) for the DB cluster parameter group.
    DBClusterParameterGroupArn *string `type:"string"`

    // The name of the DB cluster parameter group.
    DBClusterParameterGroupName *string `type:"string"`

    // The name of the DB parameter group family that this DB cluster parameter
    // group is compatible with.
    DBParameterGroupFamily *string `type:"string"`

    // Provides the customer-specified description for this DB cluster parameter
    // group.
    Description *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the details of an Amazon RDS DB cluster parameter group.

This data type is used as a response element in the DescribeDBClusterParameterGroups action.

func (DBClusterParameterGroup) GoString

func (s DBClusterParameterGroup) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBClusterParameterGroup) SetDBClusterParameterGroupArn

func (s *DBClusterParameterGroup) SetDBClusterParameterGroupArn(v string) *DBClusterParameterGroup

SetDBClusterParameterGroupArn sets the DBClusterParameterGroupArn field's value.

func (*DBClusterParameterGroup) SetDBClusterParameterGroupName

func (s *DBClusterParameterGroup) SetDBClusterParameterGroupName(v string) *DBClusterParameterGroup

SetDBClusterParameterGroupName sets the DBClusterParameterGroupName field's value.

func (*DBClusterParameterGroup) SetDBParameterGroupFamily

func (s *DBClusterParameterGroup) SetDBParameterGroupFamily(v string) *DBClusterParameterGroup

SetDBParameterGroupFamily sets the DBParameterGroupFamily field's value.

func (*DBClusterParameterGroup) SetDescription

func (s *DBClusterParameterGroup) SetDescription(v string) *DBClusterParameterGroup

SetDescription sets the Description field's value.

func (DBClusterParameterGroup) String

func (s DBClusterParameterGroup) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBClusterParameterGroupNameMessage

type DBClusterParameterGroupNameMessage struct {

    // The name of the DB cluster parameter group.
    //
    // Constraints:
    //
    //    * Must be 1 to 255 letters or numbers.
    //
    //    * First character must be a letter
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens
    //
    // This value is stored as a lowercase string.
    DBClusterParameterGroupName *string `type:"string"`
    // contains filtered or unexported fields
}

func (DBClusterParameterGroupNameMessage) GoString

func (s DBClusterParameterGroupNameMessage) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBClusterParameterGroupNameMessage) SetDBClusterParameterGroupName

func (s *DBClusterParameterGroupNameMessage) SetDBClusterParameterGroupName(v string) *DBClusterParameterGroupNameMessage

SetDBClusterParameterGroupName sets the DBClusterParameterGroupName field's value.

func (DBClusterParameterGroupNameMessage) String

func (s DBClusterParameterGroupNameMessage) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBClusterRole

type DBClusterRole struct {

    // The name of the feature associated with the Amazon Web Services Identity
    // and Access Management (IAM) role. For information about supported feature
    // names, see DBEngineVersion.
    FeatureName *string `type:"string"`

    // The Amazon Resource Name (ARN) of the IAM role that is associated with the
    // DB cluster.
    RoleArn *string `type:"string"`

    // Describes the state of association between the IAM role and the DB cluster.
    // The Status property returns one of the following values:
    //
    //    * ACTIVE - the IAM role ARN is associated with the DB cluster and can
    //    be used to access other Amazon Web Services on your behalf.
    //
    //    * PENDING - the IAM role ARN is being associated with the DB cluster.
    //
    //    * INVALID - the IAM role ARN is associated with the DB cluster, but the
    //    DB cluster is unable to assume the IAM role in order to access other Amazon
    //    Web Services on your behalf.
    Status *string `type:"string"`
    // contains filtered or unexported fields
}

Describes an Amazon Web Services Identity and Access Management (IAM) role that is associated with a DB cluster.

func (DBClusterRole) GoString

func (s DBClusterRole) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBClusterRole) SetFeatureName

func (s *DBClusterRole) SetFeatureName(v string) *DBClusterRole

SetFeatureName sets the FeatureName field's value.

func (*DBClusterRole) SetRoleArn

func (s *DBClusterRole) SetRoleArn(v string) *DBClusterRole

SetRoleArn sets the RoleArn field's value.

func (*DBClusterRole) SetStatus

func (s *DBClusterRole) SetStatus(v string) *DBClusterRole

SetStatus sets the Status field's value.

func (DBClusterRole) String

func (s DBClusterRole) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBClusterSnapshot

type DBClusterSnapshot struct {

    // The allocated storage size of the DB cluster snapshot in gibibytes (GiB).
    AllocatedStorage *int64 `type:"integer"`

    // The list of Availability Zones (AZs) where instances in the DB cluster snapshot
    // can be restored.
    AvailabilityZones []*string `locationNameList:"AvailabilityZone" type:"list"`

    // The time when the DB cluster was created, in Universal Coordinated Time (UTC).
    ClusterCreateTime *time.Time `type:"timestamp"`

    // The DB cluster identifier of the DB cluster that this DB cluster snapshot
    // was created from.
    DBClusterIdentifier *string `type:"string"`

    // The Amazon Resource Name (ARN) for the DB cluster snapshot.
    DBClusterSnapshotArn *string `type:"string"`

    // The identifier for the DB cluster snapshot.
    DBClusterSnapshotIdentifier *string `type:"string"`

    // Reserved for future use.
    DBSystemId *string `type:"string"`

    // The resource ID of the DB cluster that this DB cluster snapshot was created
    // from.
    DbClusterResourceId *string `type:"string"`

    // The name of the database engine for this DB cluster snapshot.
    Engine *string `type:"string"`

    // The engine mode of the database engine for this DB cluster snapshot.
    EngineMode *string `type:"string"`

    // The version of the database engine for this DB cluster snapshot.
    EngineVersion *string `type:"string"`

    // Indicates whether mapping of Amazon Web Services Identity and Access Management
    // (IAM) accounts to database accounts is enabled.
    IAMDatabaseAuthenticationEnabled *bool `type:"boolean"`

    // If StorageEncrypted is true, the Amazon Web Services KMS key identifier for
    // the encrypted DB cluster snapshot.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key.
    KmsKeyId *string `type:"string"`

    // The license model information for this DB cluster snapshot.
    LicenseModel *string `type:"string"`

    // The master username for this DB cluster snapshot.
    MasterUsername *string `type:"string"`

    // The percentage of the estimated data that has been transferred.
    PercentProgress *int64 `type:"integer"`

    // The port that the DB cluster was listening on at the time of the snapshot.
    Port *int64 `type:"integer"`

    // The time when the snapshot was taken, in Universal Coordinated Time (UTC).
    SnapshotCreateTime *time.Time `type:"timestamp"`

    // The type of the DB cluster snapshot.
    SnapshotType *string `type:"string"`

    // If the DB cluster snapshot was copied from a source DB cluster snapshot,
    // the Amazon Resource Name (ARN) for the source DB cluster snapshot, otherwise,
    // a null value.
    SourceDBClusterSnapshotArn *string `type:"string"`

    // The status of this DB cluster snapshot. Valid statuses are the following:
    //
    //    * available
    //
    //    * copying
    //
    //    * creating
    Status *string `type:"string"`

    // Indicates whether the DB cluster snapshot is encrypted.
    StorageEncrypted *bool `type:"boolean"`

    // The storage throughput for the DB cluster snapshot. The throughput is automatically
    // set based on the IOPS that you provision, and is not configurable.
    //
    // This setting is only for non-Aurora Multi-AZ DB clusters.
    StorageThroughput *int64 `type:"integer"`

    // The storage type associated with the DB cluster snapshot.
    //
    // This setting is only for Aurora DB clusters.
    StorageType *string `type:"string"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    TagList []*Tag `locationNameList:"Tag" type:"list"`

    // The VPC ID associated with the DB cluster snapshot.
    VpcId *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the details for an Amazon RDS DB cluster snapshot

This data type is used as a response element in the DescribeDBClusterSnapshots action.

func (DBClusterSnapshot) GoString

func (s DBClusterSnapshot) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBClusterSnapshot) SetAllocatedStorage

func (s *DBClusterSnapshot) SetAllocatedStorage(v int64) *DBClusterSnapshot

SetAllocatedStorage sets the AllocatedStorage field's value.

func (*DBClusterSnapshot) SetAvailabilityZones

func (s *DBClusterSnapshot) SetAvailabilityZones(v []*string) *DBClusterSnapshot

SetAvailabilityZones sets the AvailabilityZones field's value.

func (*DBClusterSnapshot) SetClusterCreateTime

func (s *DBClusterSnapshot) SetClusterCreateTime(v time.Time) *DBClusterSnapshot

SetClusterCreateTime sets the ClusterCreateTime field's value.

func (*DBClusterSnapshot) SetDBClusterIdentifier

func (s *DBClusterSnapshot) SetDBClusterIdentifier(v string) *DBClusterSnapshot

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*DBClusterSnapshot) SetDBClusterSnapshotArn

func (s *DBClusterSnapshot) SetDBClusterSnapshotArn(v string) *DBClusterSnapshot

SetDBClusterSnapshotArn sets the DBClusterSnapshotArn field's value.

func (*DBClusterSnapshot) SetDBClusterSnapshotIdentifier

func (s *DBClusterSnapshot) SetDBClusterSnapshotIdentifier(v string) *DBClusterSnapshot

SetDBClusterSnapshotIdentifier sets the DBClusterSnapshotIdentifier field's value.

func (*DBClusterSnapshot) SetDBSystemId

func (s *DBClusterSnapshot) SetDBSystemId(v string) *DBClusterSnapshot

SetDBSystemId sets the DBSystemId field's value.

func (*DBClusterSnapshot) SetDbClusterResourceId

func (s *DBClusterSnapshot) SetDbClusterResourceId(v string) *DBClusterSnapshot

SetDbClusterResourceId sets the DbClusterResourceId field's value.

func (*DBClusterSnapshot) SetEngine

func (s *DBClusterSnapshot) SetEngine(v string) *DBClusterSnapshot

SetEngine sets the Engine field's value.

func (*DBClusterSnapshot) SetEngineMode

func (s *DBClusterSnapshot) SetEngineMode(v string) *DBClusterSnapshot

SetEngineMode sets the EngineMode field's value.

func (*DBClusterSnapshot) SetEngineVersion

func (s *DBClusterSnapshot) SetEngineVersion(v string) *DBClusterSnapshot

SetEngineVersion sets the EngineVersion field's value.

func (*DBClusterSnapshot) SetIAMDatabaseAuthenticationEnabled

func (s *DBClusterSnapshot) SetIAMDatabaseAuthenticationEnabled(v bool) *DBClusterSnapshot

SetIAMDatabaseAuthenticationEnabled sets the IAMDatabaseAuthenticationEnabled field's value.

func (*DBClusterSnapshot) SetKmsKeyId

func (s *DBClusterSnapshot) SetKmsKeyId(v string) *DBClusterSnapshot

SetKmsKeyId sets the KmsKeyId field's value.

func (*DBClusterSnapshot) SetLicenseModel

func (s *DBClusterSnapshot) SetLicenseModel(v string) *DBClusterSnapshot

SetLicenseModel sets the LicenseModel field's value.

func (*DBClusterSnapshot) SetMasterUsername

func (s *DBClusterSnapshot) SetMasterUsername(v string) *DBClusterSnapshot

SetMasterUsername sets the MasterUsername field's value.

func (*DBClusterSnapshot) SetPercentProgress

func (s *DBClusterSnapshot) SetPercentProgress(v int64) *DBClusterSnapshot

SetPercentProgress sets the PercentProgress field's value.

func (*DBClusterSnapshot) SetPort

func (s *DBClusterSnapshot) SetPort(v int64) *DBClusterSnapshot

SetPort sets the Port field's value.

func (*DBClusterSnapshot) SetSnapshotCreateTime

func (s *DBClusterSnapshot) SetSnapshotCreateTime(v time.Time) *DBClusterSnapshot

SetSnapshotCreateTime sets the SnapshotCreateTime field's value.

func (*DBClusterSnapshot) SetSnapshotType

func (s *DBClusterSnapshot) SetSnapshotType(v string) *DBClusterSnapshot

SetSnapshotType sets the SnapshotType field's value.

func (*DBClusterSnapshot) SetSourceDBClusterSnapshotArn

func (s *DBClusterSnapshot) SetSourceDBClusterSnapshotArn(v string) *DBClusterSnapshot

SetSourceDBClusterSnapshotArn sets the SourceDBClusterSnapshotArn field's value.

func (*DBClusterSnapshot) SetStatus

func (s *DBClusterSnapshot) SetStatus(v string) *DBClusterSnapshot

SetStatus sets the Status field's value.

func (*DBClusterSnapshot) SetStorageEncrypted

func (s *DBClusterSnapshot) SetStorageEncrypted(v bool) *DBClusterSnapshot

SetStorageEncrypted sets the StorageEncrypted field's value.

func (*DBClusterSnapshot) SetStorageThroughput

func (s *DBClusterSnapshot) SetStorageThroughput(v int64) *DBClusterSnapshot

SetStorageThroughput sets the StorageThroughput field's value.

func (*DBClusterSnapshot) SetStorageType

func (s *DBClusterSnapshot) SetStorageType(v string) *DBClusterSnapshot

SetStorageType sets the StorageType field's value.

func (*DBClusterSnapshot) SetTagList

func (s *DBClusterSnapshot) SetTagList(v []*Tag) *DBClusterSnapshot

SetTagList sets the TagList field's value.

func (*DBClusterSnapshot) SetVpcId

func (s *DBClusterSnapshot) SetVpcId(v string) *DBClusterSnapshot

SetVpcId sets the VpcId field's value.

func (DBClusterSnapshot) String

func (s DBClusterSnapshot) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBClusterSnapshotAttribute

type DBClusterSnapshotAttribute struct {

    // The name of the manual DB cluster snapshot attribute.
    //
    // The attribute named restore refers to the list of Amazon Web Services accounts
    // that have permission to copy or restore the manual DB cluster snapshot. For
    // more information, see the ModifyDBClusterSnapshotAttribute API action.
    AttributeName *string `type:"string"`

    // The value(s) for the manual DB cluster snapshot attribute.
    //
    // If the AttributeName field is set to restore, then this element returns a
    // list of IDs of the Amazon Web Services accounts that are authorized to copy
    // or restore the manual DB cluster snapshot. If a value of all is in the list,
    // then the manual DB cluster snapshot is public and available for any Amazon
    // Web Services account to copy or restore.
    AttributeValues []*string `locationNameList:"AttributeValue" type:"list"`
    // contains filtered or unexported fields
}

Contains the name and values of a manual DB cluster snapshot attribute.

Manual DB cluster snapshot attributes are used to authorize other Amazon Web Services accounts to restore a manual DB cluster snapshot. For more information, see the ModifyDBClusterSnapshotAttribute API action.

func (DBClusterSnapshotAttribute) GoString

func (s DBClusterSnapshotAttribute) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBClusterSnapshotAttribute) SetAttributeName

func (s *DBClusterSnapshotAttribute) SetAttributeName(v string) *DBClusterSnapshotAttribute

SetAttributeName sets the AttributeName field's value.

func (*DBClusterSnapshotAttribute) SetAttributeValues

func (s *DBClusterSnapshotAttribute) SetAttributeValues(v []*string) *DBClusterSnapshotAttribute

SetAttributeValues sets the AttributeValues field's value.

func (DBClusterSnapshotAttribute) String

func (s DBClusterSnapshotAttribute) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBClusterSnapshotAttributesResult

type DBClusterSnapshotAttributesResult struct {

    // The list of attributes and values for the manual DB cluster snapshot.
    DBClusterSnapshotAttributes []*DBClusterSnapshotAttribute `locationNameList:"DBClusterSnapshotAttribute" type:"list"`

    // The identifier of the manual DB cluster snapshot that the attributes apply
    // to.
    DBClusterSnapshotIdentifier *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the results of a successful call to the DescribeDBClusterSnapshotAttributes API action.

Manual DB cluster snapshot attributes are used to authorize other Amazon Web Services accounts to copy or restore a manual DB cluster snapshot. For more information, see the ModifyDBClusterSnapshotAttribute API action.

func (DBClusterSnapshotAttributesResult) GoString

func (s DBClusterSnapshotAttributesResult) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBClusterSnapshotAttributesResult) SetDBClusterSnapshotAttributes

func (s *DBClusterSnapshotAttributesResult) SetDBClusterSnapshotAttributes(v []*DBClusterSnapshotAttribute) *DBClusterSnapshotAttributesResult

SetDBClusterSnapshotAttributes sets the DBClusterSnapshotAttributes field's value.

func (*DBClusterSnapshotAttributesResult) SetDBClusterSnapshotIdentifier

func (s *DBClusterSnapshotAttributesResult) SetDBClusterSnapshotIdentifier(v string) *DBClusterSnapshotAttributesResult

SetDBClusterSnapshotIdentifier sets the DBClusterSnapshotIdentifier field's value.

func (DBClusterSnapshotAttributesResult) String

func (s DBClusterSnapshotAttributesResult) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBClusterStatusInfo

type DBClusterStatusInfo struct {

    // Reserved for future use.
    Message *string `type:"string"`

    // Reserved for future use.
    Normal *bool `type:"boolean"`

    // Reserved for future use.
    Status *string `type:"string"`

    // Reserved for future use.
    StatusType *string `type:"string"`
    // contains filtered or unexported fields
}

Reserved for future use.

func (DBClusterStatusInfo) GoString

func (s DBClusterStatusInfo) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBClusterStatusInfo) SetMessage

func (s *DBClusterStatusInfo) SetMessage(v string) *DBClusterStatusInfo

SetMessage sets the Message field's value.

func (*DBClusterStatusInfo) SetNormal

func (s *DBClusterStatusInfo) SetNormal(v bool) *DBClusterStatusInfo

SetNormal sets the Normal field's value.

func (*DBClusterStatusInfo) SetStatus

func (s *DBClusterStatusInfo) SetStatus(v string) *DBClusterStatusInfo

SetStatus sets the Status field's value.

func (*DBClusterStatusInfo) SetStatusType

func (s *DBClusterStatusInfo) SetStatusType(v string) *DBClusterStatusInfo

SetStatusType sets the StatusType field's value.

func (DBClusterStatusInfo) String

func (s DBClusterStatusInfo) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBEngineVersion

type DBEngineVersion struct {

    // The creation time of the DB engine version.
    CreateTime *time.Time `type:"timestamp"`

    // JSON string that lists the installation files and parameters that RDS Custom
    // uses to create a custom engine version (CEV). RDS Custom applies the patches
    // in the order in which they're listed in the manifest. You can set the Oracle
    // home, Oracle base, and UNIX/Linux user and group using the installation parameters.
    // For more information, see JSON fields in the CEV manifest (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.preparing.html#custom-cev.preparing.manifest.fields)
    // in the Amazon RDS User Guide.
    CustomDBEngineVersionManifest *string `min:"1" type:"string"`

    // The description of the database engine.
    DBEngineDescription *string `type:"string"`

    // A value that indicates the source media provider of the AMI based on the
    // usage operation. Applicable for RDS Custom for SQL Server.
    DBEngineMediaType *string `type:"string"`

    // The ARN of the custom engine version.
    DBEngineVersionArn *string `type:"string"`

    // The description of the database engine version.
    DBEngineVersionDescription *string `type:"string"`

    // The name of the DB parameter group family for the database engine.
    DBParameterGroupFamily *string `type:"string"`

    // The name of the Amazon S3 bucket that contains your database installation
    // files.
    DatabaseInstallationFilesS3BucketName *string `type:"string"`

    // The Amazon S3 directory that contains the database installation files. If
    // not specified, then no prefix is assumed.
    DatabaseInstallationFilesS3Prefix *string `type:"string"`

    // The default character set for new instances of this engine version, if the
    // CharacterSetName parameter of the CreateDBInstance API isn't specified.
    DefaultCharacterSet *CharacterSet `type:"structure"`

    // The name of the database engine.
    Engine *string `type:"string"`

    // The version number of the database engine.
    EngineVersion *string `type:"string"`

    // The types of logs that the database engine has available for export to CloudWatch
    // Logs.
    ExportableLogTypes []*string `type:"list"`

    // The EC2 image
    Image *CustomDBEngineVersionAMI `type:"structure"`

    // The Amazon Web Services KMS key identifier for an encrypted CEV. This parameter
    // is required for RDS Custom, but optional for Amazon RDS.
    KMSKeyId *string `type:"string"`

    // The major engine version of the CEV.
    MajorEngineVersion *string `type:"string"`

    // The status of the DB engine version, either available or deprecated.
    Status *string `type:"string"`

    // A list of the supported CA certificate identifiers.
    //
    // For more information, see Using SSL/TLS to encrypt a connection to a DB instance
    // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html)
    // in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to
    // a DB cluster (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html)
    // in the Amazon Aurora User Guide.
    SupportedCACertificateIdentifiers []*string `type:"list"`

    // A list of the character sets supported by this engine for the CharacterSetName
    // parameter of the CreateDBInstance operation.
    SupportedCharacterSets []*CharacterSet `locationNameList:"CharacterSet" type:"list"`

    // A list of the supported DB engine modes.
    SupportedEngineModes []*string `type:"list"`

    // A list of features supported by the DB engine.
    //
    // The supported features vary by DB engine and DB engine version.
    //
    // To determine the supported features for a specific DB engine and DB engine
    // version using the CLI, use the following command:
    //
    // aws rds describe-db-engine-versions --engine <engine_name> --engine-version
    // <engine_version>
    //
    // For example, to determine the supported features for RDS for PostgreSQL version
    // 13.3 using the CLI, use the following command:
    //
    // aws rds describe-db-engine-versions --engine postgres --engine-version 13.3
    //
    // The supported features are listed under SupportedFeatureNames in the output.
    SupportedFeatureNames []*string `type:"list"`

    // A list of the character sets supported by the Oracle DB engine for the NcharCharacterSetName
    // parameter of the CreateDBInstance operation.
    SupportedNcharCharacterSets []*CharacterSet `locationNameList:"CharacterSet" type:"list"`

    // A list of the time zones supported by this engine for the Timezone parameter
    // of the CreateDBInstance action.
    SupportedTimezones []*Timezone `locationNameList:"Timezone" type:"list"`

    // Indicates whether the engine version supports Babelfish for Aurora PostgreSQL.
    SupportsBabelfish *bool `type:"boolean"`

    // Indicates whether the engine version supports rotating the server certificate
    // without rebooting the DB instance.
    SupportsCertificateRotationWithoutRestart *bool `type:"boolean"`

    // Indicates whether you can use Aurora global databases with a specific DB
    // engine version.
    SupportsGlobalDatabases *bool `type:"boolean"`

    // Indicates whether the DB engine version supports zero-ETL integrations with
    // Amazon Redshift.
    SupportsIntegrations *bool `type:"boolean"`

    // Indicates whether the DB engine version supports forwarding write operations
    // from reader DB instances to the writer DB instance in the DB cluster. By
    // default, write operations aren't allowed on reader DB instances.
    //
    // Valid for: Aurora DB clusters only
    SupportsLocalWriteForwarding *bool `type:"boolean"`

    // Indicates whether the engine version supports exporting the log types specified
    // by ExportableLogTypes to CloudWatch Logs.
    SupportsLogExportsToCloudwatchLogs *bool `type:"boolean"`

    // Indicates whether you can use Aurora parallel query with a specific DB engine
    // version.
    SupportsParallelQuery *bool `type:"boolean"`

    // Indicates whether the database engine version supports read replicas.
    SupportsReadReplica *bool `type:"boolean"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    TagList []*Tag `locationNameList:"Tag" type:"list"`

    // A list of engine versions that this database engine version can be upgraded
    // to.
    ValidUpgradeTarget []*UpgradeTarget `locationNameList:"UpgradeTarget" type:"list"`
    // contains filtered or unexported fields
}

This data type is used as a response element in the action DescribeDBEngineVersions.

func (DBEngineVersion) GoString

func (s DBEngineVersion) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBEngineVersion) SetCreateTime

func (s *DBEngineVersion) SetCreateTime(v time.Time) *DBEngineVersion

SetCreateTime sets the CreateTime field's value.

func (*DBEngineVersion) SetCustomDBEngineVersionManifest

func (s *DBEngineVersion) SetCustomDBEngineVersionManifest(v string) *DBEngineVersion

SetCustomDBEngineVersionManifest sets the CustomDBEngineVersionManifest field's value.

func (*DBEngineVersion) SetDBEngineDescription

func (s *DBEngineVersion) SetDBEngineDescription(v string) *DBEngineVersion

SetDBEngineDescription sets the DBEngineDescription field's value.

func (*DBEngineVersion) SetDBEngineMediaType

func (s *DBEngineVersion) SetDBEngineMediaType(v string) *DBEngineVersion

SetDBEngineMediaType sets the DBEngineMediaType field's value.

func (*DBEngineVersion) SetDBEngineVersionArn

func (s *DBEngineVersion) SetDBEngineVersionArn(v string) *DBEngineVersion

SetDBEngineVersionArn sets the DBEngineVersionArn field's value.

func (*DBEngineVersion) SetDBEngineVersionDescription

func (s *DBEngineVersion) SetDBEngineVersionDescription(v string) *DBEngineVersion

SetDBEngineVersionDescription sets the DBEngineVersionDescription field's value.

func (*DBEngineVersion) SetDBParameterGroupFamily

func (s *DBEngineVersion) SetDBParameterGroupFamily(v string) *DBEngineVersion

SetDBParameterGroupFamily sets the DBParameterGroupFamily field's value.

func (*DBEngineVersion) SetDatabaseInstallationFilesS3BucketName

func (s *DBEngineVersion) SetDatabaseInstallationFilesS3BucketName(v string) *DBEngineVersion

SetDatabaseInstallationFilesS3BucketName sets the DatabaseInstallationFilesS3BucketName field's value.

func (*DBEngineVersion) SetDatabaseInstallationFilesS3Prefix

func (s *DBEngineVersion) SetDatabaseInstallationFilesS3Prefix(v string) *DBEngineVersion

SetDatabaseInstallationFilesS3Prefix sets the DatabaseInstallationFilesS3Prefix field's value.

func (*DBEngineVersion) SetDefaultCharacterSet

func (s *DBEngineVersion) SetDefaultCharacterSet(v *CharacterSet) *DBEngineVersion

SetDefaultCharacterSet sets the DefaultCharacterSet field's value.

func (*DBEngineVersion) SetEngine

func (s *DBEngineVersion) SetEngine(v string) *DBEngineVersion

SetEngine sets the Engine field's value.

func (*DBEngineVersion) SetEngineVersion

func (s *DBEngineVersion) SetEngineVersion(v string) *DBEngineVersion

SetEngineVersion sets the EngineVersion field's value.

func (*DBEngineVersion) SetExportableLogTypes

func (s *DBEngineVersion) SetExportableLogTypes(v []*string) *DBEngineVersion

SetExportableLogTypes sets the ExportableLogTypes field's value.

func (*DBEngineVersion) SetImage

func (s *DBEngineVersion) SetImage(v *CustomDBEngineVersionAMI) *DBEngineVersion

SetImage sets the Image field's value.

func (*DBEngineVersion) SetKMSKeyId

func (s *DBEngineVersion) SetKMSKeyId(v string) *DBEngineVersion

SetKMSKeyId sets the KMSKeyId field's value.

func (*DBEngineVersion) SetMajorEngineVersion

func (s *DBEngineVersion) SetMajorEngineVersion(v string) *DBEngineVersion

SetMajorEngineVersion sets the MajorEngineVersion field's value.

func (*DBEngineVersion) SetStatus

func (s *DBEngineVersion) SetStatus(v string) *DBEngineVersion

SetStatus sets the Status field's value.

func (*DBEngineVersion) SetSupportedCACertificateIdentifiers

func (s *DBEngineVersion) SetSupportedCACertificateIdentifiers(v []*string) *DBEngineVersion

SetSupportedCACertificateIdentifiers sets the SupportedCACertificateIdentifiers field's value.

func (*DBEngineVersion) SetSupportedCharacterSets

func (s *DBEngineVersion) SetSupportedCharacterSets(v []*CharacterSet) *DBEngineVersion

SetSupportedCharacterSets sets the SupportedCharacterSets field's value.

func (*DBEngineVersion) SetSupportedEngineModes

func (s *DBEngineVersion) SetSupportedEngineModes(v []*string) *DBEngineVersion

SetSupportedEngineModes sets the SupportedEngineModes field's value.

func (*DBEngineVersion) SetSupportedFeatureNames

func (s *DBEngineVersion) SetSupportedFeatureNames(v []*string) *DBEngineVersion

SetSupportedFeatureNames sets the SupportedFeatureNames field's value.

func (*DBEngineVersion) SetSupportedNcharCharacterSets

func (s *DBEngineVersion) SetSupportedNcharCharacterSets(v []*CharacterSet) *DBEngineVersion

SetSupportedNcharCharacterSets sets the SupportedNcharCharacterSets field's value.

func (*DBEngineVersion) SetSupportedTimezones

func (s *DBEngineVersion) SetSupportedTimezones(v []*Timezone) *DBEngineVersion

SetSupportedTimezones sets the SupportedTimezones field's value.

func (*DBEngineVersion) SetSupportsBabelfish

func (s *DBEngineVersion) SetSupportsBabelfish(v bool) *DBEngineVersion

SetSupportsBabelfish sets the SupportsBabelfish field's value.

func (*DBEngineVersion) SetSupportsCertificateRotationWithoutRestart

func (s *DBEngineVersion) SetSupportsCertificateRotationWithoutRestart(v bool) *DBEngineVersion

SetSupportsCertificateRotationWithoutRestart sets the SupportsCertificateRotationWithoutRestart field's value.

func (*DBEngineVersion) SetSupportsGlobalDatabases

func (s *DBEngineVersion) SetSupportsGlobalDatabases(v bool) *DBEngineVersion

SetSupportsGlobalDatabases sets the SupportsGlobalDatabases field's value.

func (*DBEngineVersion) SetSupportsIntegrations

func (s *DBEngineVersion) SetSupportsIntegrations(v bool) *DBEngineVersion

SetSupportsIntegrations sets the SupportsIntegrations field's value.

func (*DBEngineVersion) SetSupportsLocalWriteForwarding

func (s *DBEngineVersion) SetSupportsLocalWriteForwarding(v bool) *DBEngineVersion

SetSupportsLocalWriteForwarding sets the SupportsLocalWriteForwarding field's value.

func (*DBEngineVersion) SetSupportsLogExportsToCloudwatchLogs

func (s *DBEngineVersion) SetSupportsLogExportsToCloudwatchLogs(v bool) *DBEngineVersion

SetSupportsLogExportsToCloudwatchLogs sets the SupportsLogExportsToCloudwatchLogs field's value.

func (*DBEngineVersion) SetSupportsParallelQuery

func (s *DBEngineVersion) SetSupportsParallelQuery(v bool) *DBEngineVersion

SetSupportsParallelQuery sets the SupportsParallelQuery field's value.

func (*DBEngineVersion) SetSupportsReadReplica

func (s *DBEngineVersion) SetSupportsReadReplica(v bool) *DBEngineVersion

SetSupportsReadReplica sets the SupportsReadReplica field's value.

func (*DBEngineVersion) SetTagList

func (s *DBEngineVersion) SetTagList(v []*Tag) *DBEngineVersion

SetTagList sets the TagList field's value.

func (*DBEngineVersion) SetValidUpgradeTarget

func (s *DBEngineVersion) SetValidUpgradeTarget(v []*UpgradeTarget) *DBEngineVersion

SetValidUpgradeTarget sets the ValidUpgradeTarget field's value.

func (DBEngineVersion) String

func (s DBEngineVersion) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBInstance

type DBInstance struct {

    // Indicates whether engine-native audit fields are included in the database
    // activity stream.
    ActivityStreamEngineNativeAuditFieldsIncluded *bool `type:"boolean"`

    // The name of the Amazon Kinesis data stream used for the database activity
    // stream.
    ActivityStreamKinesisStreamName *string `type:"string"`

    // The Amazon Web Services KMS key identifier used for encrypting messages in
    // the database activity stream. The Amazon Web Services KMS key identifier
    // is the key ARN, key ID, alias ARN, or alias name for the KMS key.
    ActivityStreamKmsKeyId *string `type:"string"`

    // The mode of the database activity stream. Database events such as a change
    // or access generate an activity stream event. RDS for Oracle always handles
    // these events asynchronously.
    ActivityStreamMode *string `type:"string" enum:"ActivityStreamMode"`

    // The status of the policy state of the activity stream.
    ActivityStreamPolicyStatus *string `type:"string" enum:"ActivityStreamPolicyStatus"`

    // The status of the database activity stream.
    ActivityStreamStatus *string `type:"string" enum:"ActivityStreamStatus"`

    // The amount of storage in gibibytes (GiB) allocated for the DB instance.
    AllocatedStorage *int64 `type:"integer"`

    // The Amazon Web Services Identity and Access Management (IAM) roles associated
    // with the DB instance.
    AssociatedRoles []*DBInstanceRole `locationNameList:"DBInstanceRole" type:"list"`

    // Indicates whether minor version patches are applied automatically.
    AutoMinorVersionUpgrade *bool `type:"boolean"`

    // The time when a stopped DB instance is restarted automatically.
    AutomaticRestartTime *time.Time `type:"timestamp"`

    // The automation mode of the RDS Custom DB instance: full or all paused. If
    // full, the DB instance automates monitoring and instance recovery. If all
    // paused, the instance pauses automation for the duration set by --resume-full-automation-mode-minutes.
    AutomationMode *string `type:"string" enum:"AutomationMode"`

    // The name of the Availability Zone where the DB instance is located.
    AvailabilityZone *string `type:"string"`

    // The Amazon Resource Name (ARN) of the recovery point in Amazon Web Services
    // Backup.
    AwsBackupRecoveryPointArn *string `type:"string"`

    // The number of days for which automatic DB snapshots are retained.
    BackupRetentionPeriod *int64 `type:"integer"`

    // The location where automated backups and manual snapshots are stored: Amazon
    // Web Services Outposts or the Amazon Web Services Region.
    BackupTarget *string `type:"string"`

    // The identifier of the CA certificate for this DB instance.
    //
    // For more information, see Using SSL/TLS to encrypt a connection to a DB instance
    // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html)
    // in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to
    // a DB cluster (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html)
    // in the Amazon Aurora User Guide.
    CACertificateIdentifier *string `type:"string"`

    // The details of the DB instance's server certificate.
    CertificateDetails *CertificateDetails `type:"structure"`

    // If present, specifies the name of the character set that this instance is
    // associated with.
    CharacterSetName *string `type:"string"`

    // Indicates whether tags are copied from the DB instance to snapshots of the
    // DB instance.
    //
    // This setting doesn't apply to Amazon Aurora DB instances. Copying tags to
    // snapshots is managed by the DB cluster. Setting this value for an Aurora
    // DB instance has no effect on the DB cluster setting. For more information,
    // see DBCluster.
    CopyTagsToSnapshot *bool `type:"boolean"`

    // The instance profile associated with the underlying Amazon EC2 instance of
    // an RDS Custom DB instance. The instance profile must meet the following requirements:
    //
    //    * The profile must exist in your account.
    //
    //    * The profile must have an IAM role that Amazon EC2 has permissions to
    //    assume.
    //
    //    * The instance profile name and the associated IAM role name must start
    //    with the prefix AWSRDSCustom.
    //
    // For the list of permissions required for the IAM role, see Configure IAM
    // and your VPC (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc)
    // in the Amazon RDS User Guide.
    CustomIamInstanceProfile *string `type:"string"`

    // Indicates whether a customer-owned IP address (CoIP) is enabled for an RDS
    // on Outposts DB instance.
    //
    // A CoIP provides local or external connectivity to resources in your Outpost
    // subnets through your on-premises network. For some use cases, a CoIP can
    // provide lower latency for connections to the DB instance from outside of
    // its virtual private cloud (VPC) on your local network.
    //
    // For more information about RDS on Outposts, see Working with Amazon RDS on
    // Amazon Web Services Outposts (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html)
    // in the Amazon RDS User Guide.
    //
    // For more information about CoIPs, see Customer-owned IP addresses (https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing)
    // in the Amazon Web Services Outposts User Guide.
    CustomerOwnedIpEnabled *bool `type:"boolean"`

    // If the DB instance is a member of a DB cluster, indicates the name of the
    // DB cluster that the DB instance is a member of.
    DBClusterIdentifier *string `type:"string"`

    // The Amazon Resource Name (ARN) for the DB instance.
    DBInstanceArn *string `type:"string"`

    // The list of replicated automated backups associated with the DB instance.
    DBInstanceAutomatedBackupsReplications []*DBInstanceAutomatedBackupsReplication `locationNameList:"DBInstanceAutomatedBackupsReplication" type:"list"`

    // The name of the compute and memory capacity class of the DB instance.
    DBInstanceClass *string `type:"string"`

    // The user-supplied database identifier. This identifier is the unique key
    // that identifies a DB instance.
    DBInstanceIdentifier *string `type:"string"`

    // The current state of this database.
    //
    // For information about DB instance statuses, see Viewing DB instance status
    // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/accessing-monitoring.html#Overview.DBInstance.Status)
    // in the Amazon RDS User Guide.
    DBInstanceStatus *string `type:"string"`

    // The initial database name that you provided (if required) when you created
    // the DB instance. This name is returned for the life of your DB instance.
    // For an RDS for Oracle CDB instance, the name identifies the PDB rather than
    // the CDB.
    DBName *string `type:"string"`

    // The list of DB parameter groups applied to this DB instance.
    DBParameterGroups []*DBParameterGroupStatus `locationNameList:"DBParameterGroup" type:"list"`

    // A list of DB security group elements containing DBSecurityGroup.Name and
    // DBSecurityGroup.Status subelements.
    DBSecurityGroups []*DBSecurityGroupMembership `locationNameList:"DBSecurityGroup" type:"list"`

    // Information about the subnet group associated with the DB instance, including
    // the name, description, and subnets in the subnet group.
    DBSubnetGroup *DBSubnetGroup `type:"structure"`

    // The Oracle system ID (Oracle SID) for a container database (CDB). The Oracle
    // SID is also the name of the CDB. This setting is only valid for RDS Custom
    // DB instances.
    DBSystemId *string `type:"string"`

    // The port that the DB instance listens on. If the DB instance is part of a
    // DB cluster, this can be a different port than the DB cluster port.
    DbInstancePort *int64 `type:"integer"`

    // The Amazon Web Services Region-unique, immutable identifier for the DB instance.
    // This identifier is found in Amazon Web Services CloudTrail log entries whenever
    // the Amazon Web Services KMS key for the DB instance is accessed.
    DbiResourceId *string `type:"string"`

    // Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
    DedicatedLogVolume *bool `type:"boolean"`

    // Indicates whether the DB instance has deletion protection enabled. The database
    // can't be deleted when deletion protection is enabled. For more information,
    // see Deleting a DB Instance (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html).
    DeletionProtection *bool `type:"boolean"`

    // The Active Directory Domain membership records associated with the DB instance.
    DomainMemberships []*DomainMembership `locationNameList:"DomainMembership" type:"list"`

    // A list of log types that this DB instance is configured to export to CloudWatch
    // Logs.
    //
    // Log types vary by DB engine. For information about the log types for each
    // DB engine, see Monitoring Amazon RDS log files (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html)
    // in the Amazon RDS User Guide.
    EnabledCloudwatchLogsExports []*string `type:"list"`

    // The connection endpoint for the DB instance.
    //
    // The endpoint might not be shown for instances with the status of creating.
    Endpoint *Endpoint `type:"structure"`

    // The database engine used for this DB instance.
    Engine *string `type:"string"`

    // The version of the database engine.
    EngineVersion *string `type:"string"`

    // The Amazon Resource Name (ARN) of the Amazon CloudWatch Logs log stream that
    // receives the Enhanced Monitoring metrics data for the DB instance.
    EnhancedMonitoringResourceArn *string `type:"string"`

    // Indicates whether mapping of Amazon Web Services Identity and Access Management
    // (IAM) accounts to database accounts is enabled for the DB instance.
    //
    // For a list of engine versions that support IAM database authentication, see
    // IAM database authentication (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RDS_Fea_Regions_DB-eng.Feature.IamDatabaseAuthentication.html)
    // in the Amazon RDS User Guide and IAM database authentication in Aurora (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.Aurora_Fea_Regions_DB-eng.Feature.IAMdbauth.html)
    // in the Amazon Aurora User Guide.
    IAMDatabaseAuthenticationEnabled *bool `type:"boolean"`

    // The date and time when the DB instance was created.
    InstanceCreateTime *time.Time `type:"timestamp"`

    // The Provisioned IOPS (I/O operations per second) value for the DB instance.
    Iops *int64 `type:"integer"`

    // Indicates whether an upgrade is recommended for the storage file system configuration
    // on the DB instance. To migrate to the preferred configuration, you can either
    // create a blue/green deployment, or create a read replica from the DB instance.
    // For more information, see Upgrading the storage file system for a DB instance
    // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.UpgradeFileSystem).
    IsStorageConfigUpgradeAvailable *bool `type:"boolean"`

    // If StorageEncrypted is enabled, the Amazon Web Services KMS key identifier
    // for the encrypted DB instance.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key.
    KmsKeyId *string `type:"string"`

    // The latest time to which a database in this DB instance can be restored with
    // point-in-time restore.
    LatestRestorableTime *time.Time `type:"timestamp"`

    // The license model information for this DB instance. This setting doesn't
    // apply to RDS Custom DB instances.
    LicenseModel *string `type:"string"`

    // The listener connection endpoint for SQL Server Always On.
    ListenerEndpoint *Endpoint `type:"structure"`

    // The secret managed by RDS in Amazon Web Services Secrets Manager for the
    // master user password.
    //
    // For more information, see Password management with Amazon Web Services Secrets
    // Manager (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html)
    // in the Amazon RDS User Guide.
    MasterUserSecret *MasterUserSecret `type:"structure"`

    // The master username for the DB instance.
    MasterUsername *string `type:"string"`

    // The upper limit in gibibytes (GiB) to which Amazon RDS can automatically
    // scale the storage of the DB instance.
    MaxAllocatedStorage *int64 `type:"integer"`

    // The interval, in seconds, between points when Enhanced Monitoring metrics
    // are collected for the DB instance.
    MonitoringInterval *int64 `type:"integer"`

    // The ARN for the IAM role that permits RDS to send Enhanced Monitoring metrics
    // to Amazon CloudWatch Logs.
    MonitoringRoleArn *string `type:"string"`

    // Indicates whether the DB instance is a Multi-AZ deployment. This setting
    // doesn't apply to RDS Custom DB instances.
    MultiAZ *bool `type:"boolean"`

    // Specifies whether the DB instance is in the multi-tenant configuration (TRUE)
    // or the single-tenant configuration (FALSE).
    MultiTenant *bool `type:"boolean"`

    // The name of the NCHAR character set for the Oracle DB instance. This character
    // set specifies the Unicode encoding for data stored in table columns of type
    // NCHAR, NCLOB, or NVARCHAR2.
    NcharCharacterSetName *string `type:"string"`

    // The network type of the DB instance.
    //
    // The network type is determined by the DBSubnetGroup specified for the DB
    // instance. A DBSubnetGroup can support only the IPv4 protocol or the IPv4
    // and the IPv6 protocols (DUAL).
    //
    // For more information, see Working with a DB instance in a VPC (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html)
    // in the Amazon RDS User Guide and Working with a DB instance in a VPC (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html)
    // in the Amazon Aurora User Guide.
    //
    // Valid Values: IPV4 | DUAL
    NetworkType *string `type:"string"`

    // The list of option group memberships for this DB instance.
    OptionGroupMemberships []*OptionGroupMembership `locationNameList:"OptionGroupMembership" type:"list"`

    // Information about pending changes to the DB instance. This information is
    // returned only when there are pending changes. Specific changes are identified
    // by subelements.
    PendingModifiedValues *PendingModifiedValues `type:"structure"`

    // The progress of the storage optimization operation as a percentage.
    PercentProgress *string `type:"string"`

    // Indicates whether Performance Insights is enabled for the DB instance.
    PerformanceInsightsEnabled *bool `type:"boolean"`

    // The Amazon Web Services KMS key identifier for encryption of Performance
    // Insights data.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key.
    PerformanceInsightsKMSKeyId *string `type:"string"`

    // The number of days to retain Performance Insights data.
    //
    // Valid Values:
    //
    //    * 7
    //
    //    * month * 31, where month is a number of months from 1-23. Examples: 93
    //    (3 months * 31), 341 (11 months * 31), 589 (19 months * 31)
    //
    //    * 731
    //
    // Default: 7 days
    PerformanceInsightsRetentionPeriod *int64 `type:"integer"`

    // The daily time range during which automated backups are created if automated
    // backups are enabled, as determined by the BackupRetentionPeriod.
    PreferredBackupWindow *string `type:"string"`

    // The weekly time range during which system maintenance can occur, in Universal
    // Coordinated Time (UTC).
    PreferredMaintenanceWindow *string `type:"string"`

    // The number of CPU cores and the number of threads per core for the DB instance
    // class of the DB instance.
    ProcessorFeatures []*ProcessorFeature `locationNameList:"ProcessorFeature" type:"list"`

    // The order of priority in which an Aurora Replica is promoted to the primary
    // instance after a failure of the existing primary instance. For more information,
    // see Fault Tolerance for an Aurora DB Cluster (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.AuroraHighAvailability.html#Aurora.Managing.FaultTolerance)
    // in the Amazon Aurora User Guide.
    PromotionTier *int64 `type:"integer"`

    // Indicates whether the DB instance is publicly accessible.
    //
    // When the DB cluster is publicly accessible, its Domain Name System (DNS)
    // endpoint resolves to the private IP address from within the DB cluster's
    // virtual private cloud (VPC). It resolves to the public IP address from outside
    // of the DB cluster's VPC. Access to the DB cluster is ultimately controlled
    // by the security group it uses. That public access isn't permitted if the
    // security group assigned to the DB cluster doesn't permit it.
    //
    // When the DB instance isn't publicly accessible, it is an internal DB instance
    // with a DNS name that resolves to a private IP address.
    //
    // For more information, see CreateDBInstance.
    PubliclyAccessible *bool `type:"boolean"`

    // The identifiers of Aurora DB clusters to which the RDS DB instance is replicated
    // as a read replica. For example, when you create an Aurora read replica of
    // an RDS for MySQL DB instance, the Aurora MySQL DB cluster for the Aurora
    // read replica is shown. This output doesn't contain information about cross-Region
    // Aurora read replicas.
    //
    // Currently, each RDS DB instance can have only one Aurora read replica.
    ReadReplicaDBClusterIdentifiers []*string `locationNameList:"ReadReplicaDBClusterIdentifier" type:"list"`

    // The identifiers of the read replicas associated with this DB instance.
    ReadReplicaDBInstanceIdentifiers []*string `locationNameList:"ReadReplicaDBInstanceIdentifier" type:"list"`

    // The identifier of the source DB cluster if this DB instance is a read replica.
    ReadReplicaSourceDBClusterIdentifier *string `type:"string"`

    // The identifier of the source DB instance if this DB instance is a read replica.
    ReadReplicaSourceDBInstanceIdentifier *string `type:"string"`

    // The open mode of an Oracle read replica. The default is open-read-only. For
    // more information, see Working with Oracle Read Replicas for Amazon RDS (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html)
    // in the Amazon RDS User Guide.
    //
    // This attribute is only supported in RDS for Oracle.
    ReplicaMode *string `type:"string" enum:"ReplicaMode"`

    // The number of minutes to pause the automation. When the time period ends,
    // RDS Custom resumes full automation. The minimum value is 60 (default). The
    // maximum value is 1,440.
    ResumeFullAutomationModeTime *time.Time `type:"timestamp"`

    // If present, specifies the name of the secondary Availability Zone for a DB
    // instance with multi-AZ support.
    SecondaryAvailabilityZone *string `type:"string"`

    // The status of a read replica. If the DB instance isn't a read replica, the
    // value is blank.
    StatusInfos []*DBInstanceStatusInfo `locationNameList:"DBInstanceStatusInfo" type:"list"`

    // Indicates whether the DB instance is encrypted.
    StorageEncrypted *bool `type:"boolean"`

    // The storage throughput for the DB instance.
    //
    // This setting applies only to the gp3 storage type.
    StorageThroughput *int64 `type:"integer"`

    // The storage type associated with the DB instance.
    StorageType *string `type:"string"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    TagList []*Tag `locationNameList:"Tag" type:"list"`

    // The ARN from the key store with which the instance is associated for TDE
    // encryption.
    TdeCredentialArn *string `type:"string"`

    // The time zone of the DB instance. In most cases, the Timezone element is
    // empty. Timezone content appears only for Microsoft SQL Server DB instances
    // that were created with a time zone specified.
    Timezone *string `type:"string"`

    // The list of Amazon EC2 VPC security groups that the DB instance belongs to.
    VpcSecurityGroups []*VpcSecurityGroupMembership `locationNameList:"VpcSecurityGroupMembership" type:"list"`
    // contains filtered or unexported fields
}

Contains the details of an Amazon RDS DB instance.

This data type is used as a response element in the operations CreateDBInstance, CreateDBInstanceReadReplica, DeleteDBInstance, DescribeDBInstances, ModifyDBInstance, PromoteReadReplica, RebootDBInstance, RestoreDBInstanceFromDBSnapshot, RestoreDBInstanceFromS3, RestoreDBInstanceToPointInTime, StartDBInstance, and StopDBInstance.

func (DBInstance) GoString

func (s DBInstance) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBInstance) SetActivityStreamEngineNativeAuditFieldsIncluded

func (s *DBInstance) SetActivityStreamEngineNativeAuditFieldsIncluded(v bool) *DBInstance

SetActivityStreamEngineNativeAuditFieldsIncluded sets the ActivityStreamEngineNativeAuditFieldsIncluded field's value.

func (*DBInstance) SetActivityStreamKinesisStreamName

func (s *DBInstance) SetActivityStreamKinesisStreamName(v string) *DBInstance

SetActivityStreamKinesisStreamName sets the ActivityStreamKinesisStreamName field's value.

func (*DBInstance) SetActivityStreamKmsKeyId

func (s *DBInstance) SetActivityStreamKmsKeyId(v string) *DBInstance

SetActivityStreamKmsKeyId sets the ActivityStreamKmsKeyId field's value.

func (*DBInstance) SetActivityStreamMode

func (s *DBInstance) SetActivityStreamMode(v string) *DBInstance

SetActivityStreamMode sets the ActivityStreamMode field's value.

func (*DBInstance) SetActivityStreamPolicyStatus

func (s *DBInstance) SetActivityStreamPolicyStatus(v string) *DBInstance

SetActivityStreamPolicyStatus sets the ActivityStreamPolicyStatus field's value.

func (*DBInstance) SetActivityStreamStatus

func (s *DBInstance) SetActivityStreamStatus(v string) *DBInstance

SetActivityStreamStatus sets the ActivityStreamStatus field's value.

func (*DBInstance) SetAllocatedStorage

func (s *DBInstance) SetAllocatedStorage(v int64) *DBInstance

SetAllocatedStorage sets the AllocatedStorage field's value.

func (*DBInstance) SetAssociatedRoles

func (s *DBInstance) SetAssociatedRoles(v []*DBInstanceRole) *DBInstance

SetAssociatedRoles sets the AssociatedRoles field's value.

func (*DBInstance) SetAutoMinorVersionUpgrade

func (s *DBInstance) SetAutoMinorVersionUpgrade(v bool) *DBInstance

SetAutoMinorVersionUpgrade sets the AutoMinorVersionUpgrade field's value.

func (*DBInstance) SetAutomaticRestartTime

func (s *DBInstance) SetAutomaticRestartTime(v time.Time) *DBInstance

SetAutomaticRestartTime sets the AutomaticRestartTime field's value.

func (*DBInstance) SetAutomationMode

func (s *DBInstance) SetAutomationMode(v string) *DBInstance

SetAutomationMode sets the AutomationMode field's value.

func (*DBInstance) SetAvailabilityZone

func (s *DBInstance) SetAvailabilityZone(v string) *DBInstance

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*DBInstance) SetAwsBackupRecoveryPointArn

func (s *DBInstance) SetAwsBackupRecoveryPointArn(v string) *DBInstance

SetAwsBackupRecoveryPointArn sets the AwsBackupRecoveryPointArn field's value.

func (*DBInstance) SetBackupRetentionPeriod

func (s *DBInstance) SetBackupRetentionPeriod(v int64) *DBInstance

SetBackupRetentionPeriod sets the BackupRetentionPeriod field's value.

func (*DBInstance) SetBackupTarget

func (s *DBInstance) SetBackupTarget(v string) *DBInstance

SetBackupTarget sets the BackupTarget field's value.

func (*DBInstance) SetCACertificateIdentifier

func (s *DBInstance) SetCACertificateIdentifier(v string) *DBInstance

SetCACertificateIdentifier sets the CACertificateIdentifier field's value.

func (*DBInstance) SetCertificateDetails

func (s *DBInstance) SetCertificateDetails(v *CertificateDetails) *DBInstance

SetCertificateDetails sets the CertificateDetails field's value.

func (*DBInstance) SetCharacterSetName

func (s *DBInstance) SetCharacterSetName(v string) *DBInstance

SetCharacterSetName sets the CharacterSetName field's value.

func (*DBInstance) SetCopyTagsToSnapshot

func (s *DBInstance) SetCopyTagsToSnapshot(v bool) *DBInstance

SetCopyTagsToSnapshot sets the CopyTagsToSnapshot field's value.

func (*DBInstance) SetCustomIamInstanceProfile

func (s *DBInstance) SetCustomIamInstanceProfile(v string) *DBInstance

SetCustomIamInstanceProfile sets the CustomIamInstanceProfile field's value.

func (*DBInstance) SetCustomerOwnedIpEnabled

func (s *DBInstance) SetCustomerOwnedIpEnabled(v bool) *DBInstance

SetCustomerOwnedIpEnabled sets the CustomerOwnedIpEnabled field's value.

func (*DBInstance) SetDBClusterIdentifier

func (s *DBInstance) SetDBClusterIdentifier(v string) *DBInstance

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*DBInstance) SetDBInstanceArn

func (s *DBInstance) SetDBInstanceArn(v string) *DBInstance

SetDBInstanceArn sets the DBInstanceArn field's value.

func (*DBInstance) SetDBInstanceAutomatedBackupsReplications

func (s *DBInstance) SetDBInstanceAutomatedBackupsReplications(v []*DBInstanceAutomatedBackupsReplication) *DBInstance

SetDBInstanceAutomatedBackupsReplications sets the DBInstanceAutomatedBackupsReplications field's value.

func (*DBInstance) SetDBInstanceClass

func (s *DBInstance) SetDBInstanceClass(v string) *DBInstance

SetDBInstanceClass sets the DBInstanceClass field's value.

func (*DBInstance) SetDBInstanceIdentifier

func (s *DBInstance) SetDBInstanceIdentifier(v string) *DBInstance

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*DBInstance) SetDBInstanceStatus

func (s *DBInstance) SetDBInstanceStatus(v string) *DBInstance

SetDBInstanceStatus sets the DBInstanceStatus field's value.

func (*DBInstance) SetDBName

func (s *DBInstance) SetDBName(v string) *DBInstance

SetDBName sets the DBName field's value.

func (*DBInstance) SetDBParameterGroups

func (s *DBInstance) SetDBParameterGroups(v []*DBParameterGroupStatus) *DBInstance

SetDBParameterGroups sets the DBParameterGroups field's value.

func (*DBInstance) SetDBSecurityGroups

func (s *DBInstance) SetDBSecurityGroups(v []*DBSecurityGroupMembership) *DBInstance

SetDBSecurityGroups sets the DBSecurityGroups field's value.

func (*DBInstance) SetDBSubnetGroup

func (s *DBInstance) SetDBSubnetGroup(v *DBSubnetGroup) *DBInstance

SetDBSubnetGroup sets the DBSubnetGroup field's value.

func (*DBInstance) SetDBSystemId

func (s *DBInstance) SetDBSystemId(v string) *DBInstance

SetDBSystemId sets the DBSystemId field's value.

func (*DBInstance) SetDbInstancePort

func (s *DBInstance) SetDbInstancePort(v int64) *DBInstance

SetDbInstancePort sets the DbInstancePort field's value.

func (*DBInstance) SetDbiResourceId

func (s *DBInstance) SetDbiResourceId(v string) *DBInstance

SetDbiResourceId sets the DbiResourceId field's value.

func (*DBInstance) SetDedicatedLogVolume

func (s *DBInstance) SetDedicatedLogVolume(v bool) *DBInstance

SetDedicatedLogVolume sets the DedicatedLogVolume field's value.

func (*DBInstance) SetDeletionProtection

func (s *DBInstance) SetDeletionProtection(v bool) *DBInstance

SetDeletionProtection sets the DeletionProtection field's value.

func (*DBInstance) SetDomainMemberships

func (s *DBInstance) SetDomainMemberships(v []*DomainMembership) *DBInstance

SetDomainMemberships sets the DomainMemberships field's value.

func (*DBInstance) SetEnabledCloudwatchLogsExports

func (s *DBInstance) SetEnabledCloudwatchLogsExports(v []*string) *DBInstance

SetEnabledCloudwatchLogsExports sets the EnabledCloudwatchLogsExports field's value.

func (*DBInstance) SetEndpoint

func (s *DBInstance) SetEndpoint(v *Endpoint) *DBInstance

SetEndpoint sets the Endpoint field's value.

func (*DBInstance) SetEngine

func (s *DBInstance) SetEngine(v string) *DBInstance

SetEngine sets the Engine field's value.

func (*DBInstance) SetEngineVersion

func (s *DBInstance) SetEngineVersion(v string) *DBInstance

SetEngineVersion sets the EngineVersion field's value.

func (*DBInstance) SetEnhancedMonitoringResourceArn

func (s *DBInstance) SetEnhancedMonitoringResourceArn(v string) *DBInstance

SetEnhancedMonitoringResourceArn sets the EnhancedMonitoringResourceArn field's value.

func (*DBInstance) SetIAMDatabaseAuthenticationEnabled

func (s *DBInstance) SetIAMDatabaseAuthenticationEnabled(v bool) *DBInstance

SetIAMDatabaseAuthenticationEnabled sets the IAMDatabaseAuthenticationEnabled field's value.

func (*DBInstance) SetInstanceCreateTime

func (s *DBInstance) SetInstanceCreateTime(v time.Time) *DBInstance

SetInstanceCreateTime sets the InstanceCreateTime field's value.

func (*DBInstance) SetIops

func (s *DBInstance) SetIops(v int64) *DBInstance

SetIops sets the Iops field's value.

func (*DBInstance) SetIsStorageConfigUpgradeAvailable

func (s *DBInstance) SetIsStorageConfigUpgradeAvailable(v bool) *DBInstance

SetIsStorageConfigUpgradeAvailable sets the IsStorageConfigUpgradeAvailable field's value.

func (*DBInstance) SetKmsKeyId

func (s *DBInstance) SetKmsKeyId(v string) *DBInstance

SetKmsKeyId sets the KmsKeyId field's value.

func (*DBInstance) SetLatestRestorableTime

func (s *DBInstance) SetLatestRestorableTime(v time.Time) *DBInstance

SetLatestRestorableTime sets the LatestRestorableTime field's value.

func (*DBInstance) SetLicenseModel

func (s *DBInstance) SetLicenseModel(v string) *DBInstance

SetLicenseModel sets the LicenseModel field's value.

func (*DBInstance) SetListenerEndpoint

func (s *DBInstance) SetListenerEndpoint(v *Endpoint) *DBInstance

SetListenerEndpoint sets the ListenerEndpoint field's value.

func (*DBInstance) SetMasterUserSecret

func (s *DBInstance) SetMasterUserSecret(v *MasterUserSecret) *DBInstance

SetMasterUserSecret sets the MasterUserSecret field's value.

func (*DBInstance) SetMasterUsername

func (s *DBInstance) SetMasterUsername(v string) *DBInstance

SetMasterUsername sets the MasterUsername field's value.

func (*DBInstance) SetMaxAllocatedStorage

func (s *DBInstance) SetMaxAllocatedStorage(v int64) *DBInstance

SetMaxAllocatedStorage sets the MaxAllocatedStorage field's value.

func (*DBInstance) SetMonitoringInterval

func (s *DBInstance) SetMonitoringInterval(v int64) *DBInstance

SetMonitoringInterval sets the MonitoringInterval field's value.

func (*DBInstance) SetMonitoringRoleArn

func (s *DBInstance) SetMonitoringRoleArn(v string) *DBInstance

SetMonitoringRoleArn sets the MonitoringRoleArn field's value.

func (*DBInstance) SetMultiAZ

func (s *DBInstance) SetMultiAZ(v bool) *DBInstance

SetMultiAZ sets the MultiAZ field's value.

func (*DBInstance) SetMultiTenant

func (s *DBInstance) SetMultiTenant(v bool) *DBInstance

SetMultiTenant sets the MultiTenant field's value.

func (*DBInstance) SetNcharCharacterSetName

func (s *DBInstance) SetNcharCharacterSetName(v string) *DBInstance

SetNcharCharacterSetName sets the NcharCharacterSetName field's value.

func (*DBInstance) SetNetworkType

func (s *DBInstance) SetNetworkType(v string) *DBInstance

SetNetworkType sets the NetworkType field's value.

func (*DBInstance) SetOptionGroupMemberships

func (s *DBInstance) SetOptionGroupMemberships(v []*OptionGroupMembership) *DBInstance

SetOptionGroupMemberships sets the OptionGroupMemberships field's value.

func (*DBInstance) SetPendingModifiedValues

func (s *DBInstance) SetPendingModifiedValues(v *PendingModifiedValues) *DBInstance

SetPendingModifiedValues sets the PendingModifiedValues field's value.

func (*DBInstance) SetPercentProgress

func (s *DBInstance) SetPercentProgress(v string) *DBInstance

SetPercentProgress sets the PercentProgress field's value.

func (*DBInstance) SetPerformanceInsightsEnabled

func (s *DBInstance) SetPerformanceInsightsEnabled(v bool) *DBInstance

SetPerformanceInsightsEnabled sets the PerformanceInsightsEnabled field's value.

func (*DBInstance) SetPerformanceInsightsKMSKeyId

func (s *DBInstance) SetPerformanceInsightsKMSKeyId(v string) *DBInstance

SetPerformanceInsightsKMSKeyId sets the PerformanceInsightsKMSKeyId field's value.

func (*DBInstance) SetPerformanceInsightsRetentionPeriod

func (s *DBInstance) SetPerformanceInsightsRetentionPeriod(v int64) *DBInstance

SetPerformanceInsightsRetentionPeriod sets the PerformanceInsightsRetentionPeriod field's value.

func (*DBInstance) SetPreferredBackupWindow

func (s *DBInstance) SetPreferredBackupWindow(v string) *DBInstance

SetPreferredBackupWindow sets the PreferredBackupWindow field's value.

func (*DBInstance) SetPreferredMaintenanceWindow

func (s *DBInstance) SetPreferredMaintenanceWindow(v string) *DBInstance

SetPreferredMaintenanceWindow sets the PreferredMaintenanceWindow field's value.

func (*DBInstance) SetProcessorFeatures

func (s *DBInstance) SetProcessorFeatures(v []*ProcessorFeature) *DBInstance

SetProcessorFeatures sets the ProcessorFeatures field's value.

func (*DBInstance) SetPromotionTier

func (s *DBInstance) SetPromotionTier(v int64) *DBInstance

SetPromotionTier sets the PromotionTier field's value.

func (*DBInstance) SetPubliclyAccessible

func (s *DBInstance) SetPubliclyAccessible(v bool) *DBInstance

SetPubliclyAccessible sets the PubliclyAccessible field's value.

func (*DBInstance) SetReadReplicaDBClusterIdentifiers

func (s *DBInstance) SetReadReplicaDBClusterIdentifiers(v []*string) *DBInstance

SetReadReplicaDBClusterIdentifiers sets the ReadReplicaDBClusterIdentifiers field's value.

func (*DBInstance) SetReadReplicaDBInstanceIdentifiers

func (s *DBInstance) SetReadReplicaDBInstanceIdentifiers(v []*string) *DBInstance

SetReadReplicaDBInstanceIdentifiers sets the ReadReplicaDBInstanceIdentifiers field's value.

func (*DBInstance) SetReadReplicaSourceDBClusterIdentifier

func (s *DBInstance) SetReadReplicaSourceDBClusterIdentifier(v string) *DBInstance

SetReadReplicaSourceDBClusterIdentifier sets the ReadReplicaSourceDBClusterIdentifier field's value.

func (*DBInstance) SetReadReplicaSourceDBInstanceIdentifier

func (s *DBInstance) SetReadReplicaSourceDBInstanceIdentifier(v string) *DBInstance

SetReadReplicaSourceDBInstanceIdentifier sets the ReadReplicaSourceDBInstanceIdentifier field's value.

func (*DBInstance) SetReplicaMode

func (s *DBInstance) SetReplicaMode(v string) *DBInstance

SetReplicaMode sets the ReplicaMode field's value.

func (*DBInstance) SetResumeFullAutomationModeTime

func (s *DBInstance) SetResumeFullAutomationModeTime(v time.Time) *DBInstance

SetResumeFullAutomationModeTime sets the ResumeFullAutomationModeTime field's value.

func (*DBInstance) SetSecondaryAvailabilityZone

func (s *DBInstance) SetSecondaryAvailabilityZone(v string) *DBInstance

SetSecondaryAvailabilityZone sets the SecondaryAvailabilityZone field's value.

func (*DBInstance) SetStatusInfos

func (s *DBInstance) SetStatusInfos(v []*DBInstanceStatusInfo) *DBInstance

SetStatusInfos sets the StatusInfos field's value.

func (*DBInstance) SetStorageEncrypted

func (s *DBInstance) SetStorageEncrypted(v bool) *DBInstance

SetStorageEncrypted sets the StorageEncrypted field's value.

func (*DBInstance) SetStorageThroughput

func (s *DBInstance) SetStorageThroughput(v int64) *DBInstance

SetStorageThroughput sets the StorageThroughput field's value.

func (*DBInstance) SetStorageType

func (s *DBInstance) SetStorageType(v string) *DBInstance

SetStorageType sets the StorageType field's value.

func (*DBInstance) SetTagList

func (s *DBInstance) SetTagList(v []*Tag) *DBInstance

SetTagList sets the TagList field's value.

func (*DBInstance) SetTdeCredentialArn

func (s *DBInstance) SetTdeCredentialArn(v string) *DBInstance

SetTdeCredentialArn sets the TdeCredentialArn field's value.

func (*DBInstance) SetTimezone

func (s *DBInstance) SetTimezone(v string) *DBInstance

SetTimezone sets the Timezone field's value.

func (*DBInstance) SetVpcSecurityGroups

func (s *DBInstance) SetVpcSecurityGroups(v []*VpcSecurityGroupMembership) *DBInstance

SetVpcSecurityGroups sets the VpcSecurityGroups field's value.

func (DBInstance) String

func (s DBInstance) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBInstanceAutomatedBackup

type DBInstanceAutomatedBackup struct {

    // The allocated storage size for the the automated backup in gibibytes (GiB).
    AllocatedStorage *int64 `type:"integer"`

    // The Availability Zone that the automated backup was created in. For information
    // on Amazon Web Services Regions and Availability Zones, see Regions and Availability
    // Zones (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
    AvailabilityZone *string `type:"string"`

    // The Amazon Resource Name (ARN) of the recovery point in Amazon Web Services
    // Backup.
    AwsBackupRecoveryPointArn *string `type:"string"`

    // The retention period for the automated backups.
    BackupRetentionPeriod *int64 `type:"integer"`

    // The location where automated backups are stored: Amazon Web Services Outposts
    // or the Amazon Web Services Region.
    BackupTarget *string `type:"string"`

    // The Amazon Resource Name (ARN) for the automated backups.
    DBInstanceArn *string `type:"string"`

    // The Amazon Resource Name (ARN) for the replicated automated backups.
    DBInstanceAutomatedBackupsArn *string `type:"string"`

    // The list of replications to different Amazon Web Services Regions associated
    // with the automated backup.
    DBInstanceAutomatedBackupsReplications []*DBInstanceAutomatedBackupsReplication `locationNameList:"DBInstanceAutomatedBackupsReplication" type:"list"`

    // The identifier for the source DB instance, which can't be changed and which
    // is unique to an Amazon Web Services Region.
    DBInstanceIdentifier *string `type:"string"`

    // The resource ID for the source DB instance, which can't be changed and which
    // is unique to an Amazon Web Services Region.
    DbiResourceId *string `type:"string"`

    // Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
    DedicatedLogVolume *bool `type:"boolean"`

    // Indicates whether the automated backup is encrypted.
    Encrypted *bool `type:"boolean"`

    // The name of the database engine for this automated backup.
    Engine *string `type:"string"`

    // The version of the database engine for the automated backup.
    EngineVersion *string `type:"string"`

    // True if mapping of Amazon Web Services Identity and Access Management (IAM)
    // accounts to database accounts is enabled, and otherwise false.
    IAMDatabaseAuthenticationEnabled *bool `type:"boolean"`

    // The date and time when the DB instance was created.
    InstanceCreateTime *time.Time `type:"timestamp"`

    // The IOPS (I/O operations per second) value for the automated backup.
    Iops *int64 `type:"integer"`

    // The Amazon Web Services KMS key ID for an automated backup.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key.
    KmsKeyId *string `type:"string"`

    // The license model information for the automated backup.
    LicenseModel *string `type:"string"`

    // The master user name of an automated backup.
    MasterUsername *string `type:"string"`

    // Specifies whether the automatic backup is for a DB instance in the multi-tenant
    // configuration (TRUE) or the single-tenant configuration (FALSE).
    MultiTenant *bool `type:"boolean"`

    // The option group the automated backup is associated with. If omitted, the
    // default option group for the engine specified is used.
    OptionGroupName *string `type:"string"`

    // The port number that the automated backup used for connections.
    //
    // Default: Inherits from the source DB instance
    //
    // Valid Values: 1150-65535
    Port *int64 `type:"integer"`

    // The Amazon Web Services Region associated with the automated backup.
    Region *string `type:"string"`

    // The earliest and latest time a DB instance can be restored to.
    RestoreWindow *RestoreWindow `type:"structure"`

    // A list of status information for an automated backup:
    //
    //    * active - Automated backups for current instances.
    //
    //    * retained - Automated backups for deleted instances.
    //
    //    * creating - Automated backups that are waiting for the first automated
    //    snapshot to be available.
    Status *string `type:"string"`

    // The storage throughput for the automated backup.
    StorageThroughput *int64 `type:"integer"`

    // The storage type associated with the automated backup.
    StorageType *string `type:"string"`

    // The ARN from the key store with which the automated backup is associated
    // for TDE encryption.
    TdeCredentialArn *string `type:"string"`

    // The time zone of the automated backup. In most cases, the Timezone element
    // is empty. Timezone content appears only for Microsoft SQL Server DB instances
    // that were created with a time zone specified.
    Timezone *string `type:"string"`

    // The VPC ID associated with the DB instance.
    VpcId *string `type:"string"`
    // contains filtered or unexported fields
}

An automated backup of a DB instance. It consists of system backups, transaction logs, and the database instance properties that existed at the time you deleted the source instance.

func (DBInstanceAutomatedBackup) GoString

func (s DBInstanceAutomatedBackup) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBInstanceAutomatedBackup) SetAllocatedStorage

func (s *DBInstanceAutomatedBackup) SetAllocatedStorage(v int64) *DBInstanceAutomatedBackup

SetAllocatedStorage sets the AllocatedStorage field's value.

func (*DBInstanceAutomatedBackup) SetAvailabilityZone

func (s *DBInstanceAutomatedBackup) SetAvailabilityZone(v string) *DBInstanceAutomatedBackup

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*DBInstanceAutomatedBackup) SetAwsBackupRecoveryPointArn

func (s *DBInstanceAutomatedBackup) SetAwsBackupRecoveryPointArn(v string) *DBInstanceAutomatedBackup

SetAwsBackupRecoveryPointArn sets the AwsBackupRecoveryPointArn field's value.

func (*DBInstanceAutomatedBackup) SetBackupRetentionPeriod

func (s *DBInstanceAutomatedBackup) SetBackupRetentionPeriod(v int64) *DBInstanceAutomatedBackup

SetBackupRetentionPeriod sets the BackupRetentionPeriod field's value.

func (*DBInstanceAutomatedBackup) SetBackupTarget

func (s *DBInstanceAutomatedBackup) SetBackupTarget(v string) *DBInstanceAutomatedBackup

SetBackupTarget sets the BackupTarget field's value.

func (*DBInstanceAutomatedBackup) SetDBInstanceArn

func (s *DBInstanceAutomatedBackup) SetDBInstanceArn(v string) *DBInstanceAutomatedBackup

SetDBInstanceArn sets the DBInstanceArn field's value.

func (*DBInstanceAutomatedBackup) SetDBInstanceAutomatedBackupsArn

func (s *DBInstanceAutomatedBackup) SetDBInstanceAutomatedBackupsArn(v string) *DBInstanceAutomatedBackup

SetDBInstanceAutomatedBackupsArn sets the DBInstanceAutomatedBackupsArn field's value.

func (*DBInstanceAutomatedBackup) SetDBInstanceAutomatedBackupsReplications

func (s *DBInstanceAutomatedBackup) SetDBInstanceAutomatedBackupsReplications(v []*DBInstanceAutomatedBackupsReplication) *DBInstanceAutomatedBackup

SetDBInstanceAutomatedBackupsReplications sets the DBInstanceAutomatedBackupsReplications field's value.

func (*DBInstanceAutomatedBackup) SetDBInstanceIdentifier

func (s *DBInstanceAutomatedBackup) SetDBInstanceIdentifier(v string) *DBInstanceAutomatedBackup

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*DBInstanceAutomatedBackup) SetDbiResourceId

func (s *DBInstanceAutomatedBackup) SetDbiResourceId(v string) *DBInstanceAutomatedBackup

SetDbiResourceId sets the DbiResourceId field's value.

func (*DBInstanceAutomatedBackup) SetDedicatedLogVolume

func (s *DBInstanceAutomatedBackup) SetDedicatedLogVolume(v bool) *DBInstanceAutomatedBackup

SetDedicatedLogVolume sets the DedicatedLogVolume field's value.

func (*DBInstanceAutomatedBackup) SetEncrypted

func (s *DBInstanceAutomatedBackup) SetEncrypted(v bool) *DBInstanceAutomatedBackup

SetEncrypted sets the Encrypted field's value.

func (*DBInstanceAutomatedBackup) SetEngine

func (s *DBInstanceAutomatedBackup) SetEngine(v string) *DBInstanceAutomatedBackup

SetEngine sets the Engine field's value.

func (*DBInstanceAutomatedBackup) SetEngineVersion

func (s *DBInstanceAutomatedBackup) SetEngineVersion(v string) *DBInstanceAutomatedBackup

SetEngineVersion sets the EngineVersion field's value.

func (*DBInstanceAutomatedBackup) SetIAMDatabaseAuthenticationEnabled

func (s *DBInstanceAutomatedBackup) SetIAMDatabaseAuthenticationEnabled(v bool) *DBInstanceAutomatedBackup

SetIAMDatabaseAuthenticationEnabled sets the IAMDatabaseAuthenticationEnabled field's value.

func (*DBInstanceAutomatedBackup) SetInstanceCreateTime

func (s *DBInstanceAutomatedBackup) SetInstanceCreateTime(v time.Time) *DBInstanceAutomatedBackup

SetInstanceCreateTime sets the InstanceCreateTime field's value.

func (*DBInstanceAutomatedBackup) SetIops

func (s *DBInstanceAutomatedBackup) SetIops(v int64) *DBInstanceAutomatedBackup

SetIops sets the Iops field's value.

func (*DBInstanceAutomatedBackup) SetKmsKeyId

func (s *DBInstanceAutomatedBackup) SetKmsKeyId(v string) *DBInstanceAutomatedBackup

SetKmsKeyId sets the KmsKeyId field's value.

func (*DBInstanceAutomatedBackup) SetLicenseModel

func (s *DBInstanceAutomatedBackup) SetLicenseModel(v string) *DBInstanceAutomatedBackup

SetLicenseModel sets the LicenseModel field's value.

func (*DBInstanceAutomatedBackup) SetMasterUsername

func (s *DBInstanceAutomatedBackup) SetMasterUsername(v string) *DBInstanceAutomatedBackup

SetMasterUsername sets the MasterUsername field's value.

func (*DBInstanceAutomatedBackup) SetMultiTenant

func (s *DBInstanceAutomatedBackup) SetMultiTenant(v bool) *DBInstanceAutomatedBackup

SetMultiTenant sets the MultiTenant field's value.

func (*DBInstanceAutomatedBackup) SetOptionGroupName

func (s *DBInstanceAutomatedBackup) SetOptionGroupName(v string) *DBInstanceAutomatedBackup

SetOptionGroupName sets the OptionGroupName field's value.

func (*DBInstanceAutomatedBackup) SetPort

func (s *DBInstanceAutomatedBackup) SetPort(v int64) *DBInstanceAutomatedBackup

SetPort sets the Port field's value.

func (*DBInstanceAutomatedBackup) SetRegion

func (s *DBInstanceAutomatedBackup) SetRegion(v string) *DBInstanceAutomatedBackup

SetRegion sets the Region field's value.

func (*DBInstanceAutomatedBackup) SetRestoreWindow

func (s *DBInstanceAutomatedBackup) SetRestoreWindow(v *RestoreWindow) *DBInstanceAutomatedBackup

SetRestoreWindow sets the RestoreWindow field's value.

func (*DBInstanceAutomatedBackup) SetStatus

func (s *DBInstanceAutomatedBackup) SetStatus(v string) *DBInstanceAutomatedBackup

SetStatus sets the Status field's value.

func (*DBInstanceAutomatedBackup) SetStorageThroughput

func (s *DBInstanceAutomatedBackup) SetStorageThroughput(v int64) *DBInstanceAutomatedBackup

SetStorageThroughput sets the StorageThroughput field's value.

func (*DBInstanceAutomatedBackup) SetStorageType

func (s *DBInstanceAutomatedBackup) SetStorageType(v string) *DBInstanceAutomatedBackup

SetStorageType sets the StorageType field's value.

func (*DBInstanceAutomatedBackup) SetTdeCredentialArn

func (s *DBInstanceAutomatedBackup) SetTdeCredentialArn(v string) *DBInstanceAutomatedBackup

SetTdeCredentialArn sets the TdeCredentialArn field's value.

func (*DBInstanceAutomatedBackup) SetTimezone

func (s *DBInstanceAutomatedBackup) SetTimezone(v string) *DBInstanceAutomatedBackup

SetTimezone sets the Timezone field's value.

func (*DBInstanceAutomatedBackup) SetVpcId

func (s *DBInstanceAutomatedBackup) SetVpcId(v string) *DBInstanceAutomatedBackup

SetVpcId sets the VpcId field's value.

func (DBInstanceAutomatedBackup) String

func (s DBInstanceAutomatedBackup) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBInstanceAutomatedBackupsReplication

type DBInstanceAutomatedBackupsReplication struct {

    // The Amazon Resource Name (ARN) of the replicated automated backups.
    DBInstanceAutomatedBackupsArn *string `type:"string"`
    // contains filtered or unexported fields
}

Automated backups of a DB instance replicated to another Amazon Web Services Region. They consist of system backups, transaction logs, and database instance properties.

func (DBInstanceAutomatedBackupsReplication) GoString

func (s DBInstanceAutomatedBackupsReplication) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBInstanceAutomatedBackupsReplication) SetDBInstanceAutomatedBackupsArn

func (s *DBInstanceAutomatedBackupsReplication) SetDBInstanceAutomatedBackupsArn(v string) *DBInstanceAutomatedBackupsReplication

SetDBInstanceAutomatedBackupsArn sets the DBInstanceAutomatedBackupsArn field's value.

func (DBInstanceAutomatedBackupsReplication) String

func (s DBInstanceAutomatedBackupsReplication) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBInstanceRole

type DBInstanceRole struct {

    // The name of the feature associated with the Amazon Web Services Identity
    // and Access Management (IAM) role. For information about supported feature
    // names, see DBEngineVersion.
    FeatureName *string `type:"string"`

    // The Amazon Resource Name (ARN) of the IAM role that is associated with the
    // DB instance.
    RoleArn *string `type:"string"`

    // Information about the state of association between the IAM role and the DB
    // instance. The Status property returns one of the following values:
    //
    //    * ACTIVE - the IAM role ARN is associated with the DB instance and can
    //    be used to access other Amazon Web Services services on your behalf.
    //
    //    * PENDING - the IAM role ARN is being associated with the DB instance.
    //
    //    * INVALID - the IAM role ARN is associated with the DB instance, but the
    //    DB instance is unable to assume the IAM role in order to access other
    //    Amazon Web Services services on your behalf.
    Status *string `type:"string"`
    // contains filtered or unexported fields
}

Information about an Amazon Web Services Identity and Access Management (IAM) role that is associated with a DB instance.

func (DBInstanceRole) GoString

func (s DBInstanceRole) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBInstanceRole) SetFeatureName

func (s *DBInstanceRole) SetFeatureName(v string) *DBInstanceRole

SetFeatureName sets the FeatureName field's value.

func (*DBInstanceRole) SetRoleArn

func (s *DBInstanceRole) SetRoleArn(v string) *DBInstanceRole

SetRoleArn sets the RoleArn field's value.

func (*DBInstanceRole) SetStatus

func (s *DBInstanceRole) SetStatus(v string) *DBInstanceRole

SetStatus sets the Status field's value.

func (DBInstanceRole) String

func (s DBInstanceRole) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBInstanceStatusInfo

type DBInstanceStatusInfo struct {

    // Details of the error if there is an error for the instance. If the instance
    // isn't in an error state, this value is blank.
    Message *string `type:"string"`

    // Indicates whether the instance is operating normally (TRUE) or is in an error
    // state (FALSE).
    Normal *bool `type:"boolean"`

    // The status of the DB instance. For a StatusType of read replica, the values
    // can be replicating, replication stop point set, replication stop point reached,
    // error, stopped, or terminated.
    Status *string `type:"string"`

    // This value is currently "read replication."
    StatusType *string `type:"string"`
    // contains filtered or unexported fields
}

Provides a list of status information for a DB instance.

func (DBInstanceStatusInfo) GoString

func (s DBInstanceStatusInfo) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBInstanceStatusInfo) SetMessage

func (s *DBInstanceStatusInfo) SetMessage(v string) *DBInstanceStatusInfo

SetMessage sets the Message field's value.

func (*DBInstanceStatusInfo) SetNormal

func (s *DBInstanceStatusInfo) SetNormal(v bool) *DBInstanceStatusInfo

SetNormal sets the Normal field's value.

func (*DBInstanceStatusInfo) SetStatus

func (s *DBInstanceStatusInfo) SetStatus(v string) *DBInstanceStatusInfo

SetStatus sets the Status field's value.

func (*DBInstanceStatusInfo) SetStatusType

func (s *DBInstanceStatusInfo) SetStatusType(v string) *DBInstanceStatusInfo

SetStatusType sets the StatusType field's value.

func (DBInstanceStatusInfo) String

func (s DBInstanceStatusInfo) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBParameterGroup

type DBParameterGroup struct {

    // The Amazon Resource Name (ARN) for the DB parameter group.
    DBParameterGroupArn *string `type:"string"`

    // The name of the DB parameter group family that this DB parameter group is
    // compatible with.
    DBParameterGroupFamily *string `type:"string"`

    // The name of the DB parameter group.
    DBParameterGroupName *string `type:"string"`

    // Provides the customer-specified description for this DB parameter group.
    Description *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the details of an Amazon RDS DB parameter group.

This data type is used as a response element in the DescribeDBParameterGroups action.

func (DBParameterGroup) GoString

func (s DBParameterGroup) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBParameterGroup) SetDBParameterGroupArn

func (s *DBParameterGroup) SetDBParameterGroupArn(v string) *DBParameterGroup

SetDBParameterGroupArn sets the DBParameterGroupArn field's value.

func (*DBParameterGroup) SetDBParameterGroupFamily

func (s *DBParameterGroup) SetDBParameterGroupFamily(v string) *DBParameterGroup

SetDBParameterGroupFamily sets the DBParameterGroupFamily field's value.

func (*DBParameterGroup) SetDBParameterGroupName

func (s *DBParameterGroup) SetDBParameterGroupName(v string) *DBParameterGroup

SetDBParameterGroupName sets the DBParameterGroupName field's value.

func (*DBParameterGroup) SetDescription

func (s *DBParameterGroup) SetDescription(v string) *DBParameterGroup

SetDescription sets the Description field's value.

func (DBParameterGroup) String

func (s DBParameterGroup) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBParameterGroupNameMessage

type DBParameterGroupNameMessage struct {

    // The name of the DB parameter group.
    DBParameterGroupName *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the result of a successful invocation of the ModifyDBParameterGroup or ResetDBParameterGroup operation.

func (DBParameterGroupNameMessage) GoString

func (s DBParameterGroupNameMessage) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBParameterGroupNameMessage) SetDBParameterGroupName

func (s *DBParameterGroupNameMessage) SetDBParameterGroupName(v string) *DBParameterGroupNameMessage

SetDBParameterGroupName sets the DBParameterGroupName field's value.

func (DBParameterGroupNameMessage) String

func (s DBParameterGroupNameMessage) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBParameterGroupStatus

type DBParameterGroupStatus struct {

    // The name of the DB parameter group.
    DBParameterGroupName *string `type:"string"`

    // The status of parameter updates.
    ParameterApplyStatus *string `type:"string"`
    // contains filtered or unexported fields
}

The status of the DB parameter group.

This data type is used as a response element in the following actions:

  • CreateDBInstance

  • CreateDBInstanceReadReplica

  • DeleteDBInstance

  • ModifyDBInstance

  • RebootDBInstance

  • RestoreDBInstanceFromDBSnapshot

func (DBParameterGroupStatus) GoString

func (s DBParameterGroupStatus) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBParameterGroupStatus) SetDBParameterGroupName

func (s *DBParameterGroupStatus) SetDBParameterGroupName(v string) *DBParameterGroupStatus

SetDBParameterGroupName sets the DBParameterGroupName field's value.

func (*DBParameterGroupStatus) SetParameterApplyStatus

func (s *DBParameterGroupStatus) SetParameterApplyStatus(v string) *DBParameterGroupStatus

SetParameterApplyStatus sets the ParameterApplyStatus field's value.

func (DBParameterGroupStatus) String

func (s DBParameterGroupStatus) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBProxy

type DBProxy struct {

    // One or more data structures specifying the authorization mechanism to connect
    // to the associated RDS DB instance or Aurora DB cluster.
    Auth []*UserAuthConfigInfo `type:"list"`

    // The date and time when the proxy was first created.
    CreatedDate *time.Time `type:"timestamp"`

    // The Amazon Resource Name (ARN) for the proxy.
    DBProxyArn *string `type:"string"`

    // The identifier for the proxy. This name must be unique for all proxies owned
    // by your Amazon Web Services account in the specified Amazon Web Services
    // Region.
    DBProxyName *string `type:"string"`

    // Indicates whether the proxy includes detailed information about SQL statements
    // in its logs. This information helps you to debug issues involving SQL behavior
    // or the performance and scalability of the proxy connections. The debug information
    // includes the text of SQL statements that you submit through the proxy. Thus,
    // only enable this setting when needed for debugging, and only when you have
    // security measures in place to safeguard any sensitive information that appears
    // in the logs.
    DebugLogging *bool `type:"boolean"`

    // The endpoint that you can use to connect to the DB proxy. You include the
    // endpoint value in the connection string for a database client application.
    Endpoint *string `type:"string"`

    // The kinds of databases that the proxy can connect to. This value determines
    // which database network protocol the proxy recognizes when it interprets network
    // traffic to and from the database. MYSQL supports Aurora MySQL, RDS for MariaDB,
    // and RDS for MySQL databases. POSTGRESQL supports Aurora PostgreSQL and RDS
    // for PostgreSQL databases. SQLSERVER supports RDS for Microsoft SQL Server
    // databases.
    EngineFamily *string `type:"string"`

    // The number of seconds a connection to the proxy can have no activity before
    // the proxy drops the client connection. The proxy keeps the underlying database
    // connection open and puts it back into the connection pool for reuse by later
    // connection requests.
    //
    // Default: 1800 (30 minutes)
    //
    // Constraints: 1 to 28,800
    IdleClientTimeout *int64 `type:"integer"`

    // Indicates whether Transport Layer Security (TLS) encryption is required for
    // connections to the proxy.
    RequireTLS *bool `type:"boolean"`

    // The Amazon Resource Name (ARN) for the IAM role that the proxy uses to access
    // Amazon Secrets Manager.
    RoleArn *string `type:"string"`

    // The current status of this proxy. A status of available means the proxy is
    // ready to handle requests. Other values indicate that you must wait for the
    // proxy to be ready, or take some action to resolve an issue.
    Status *string `type:"string" enum:"DBProxyStatus"`

    // The date and time when the proxy was last updated.
    UpdatedDate *time.Time `type:"timestamp"`

    // Provides the VPC ID of the DB proxy.
    VpcId *string `type:"string"`

    // Provides a list of VPC security groups that the proxy belongs to.
    VpcSecurityGroupIds []*string `type:"list"`

    // The EC2 subnet IDs for the proxy.
    VpcSubnetIds []*string `type:"list"`
    // contains filtered or unexported fields
}

The data structure representing a proxy managed by the RDS Proxy.

This data type is used as a response element in the DescribeDBProxies action.

func (DBProxy) GoString

func (s DBProxy) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBProxy) SetAuth

func (s *DBProxy) SetAuth(v []*UserAuthConfigInfo) *DBProxy

SetAuth sets the Auth field's value.

func (*DBProxy) SetCreatedDate

func (s *DBProxy) SetCreatedDate(v time.Time) *DBProxy

SetCreatedDate sets the CreatedDate field's value.

func (*DBProxy) SetDBProxyArn

func (s *DBProxy) SetDBProxyArn(v string) *DBProxy

SetDBProxyArn sets the DBProxyArn field's value.

func (*DBProxy) SetDBProxyName

func (s *DBProxy) SetDBProxyName(v string) *DBProxy

SetDBProxyName sets the DBProxyName field's value.

func (*DBProxy) SetDebugLogging

func (s *DBProxy) SetDebugLogging(v bool) *DBProxy

SetDebugLogging sets the DebugLogging field's value.

func (*DBProxy) SetEndpoint

func (s *DBProxy) SetEndpoint(v string) *DBProxy

SetEndpoint sets the Endpoint field's value.

func (*DBProxy) SetEngineFamily

func (s *DBProxy) SetEngineFamily(v string) *DBProxy

SetEngineFamily sets the EngineFamily field's value.

func (*DBProxy) SetIdleClientTimeout

func (s *DBProxy) SetIdleClientTimeout(v int64) *DBProxy

SetIdleClientTimeout sets the IdleClientTimeout field's value.

func (*DBProxy) SetRequireTLS

func (s *DBProxy) SetRequireTLS(v bool) *DBProxy

SetRequireTLS sets the RequireTLS field's value.

func (*DBProxy) SetRoleArn

func (s *DBProxy) SetRoleArn(v string) *DBProxy

SetRoleArn sets the RoleArn field's value.

func (*DBProxy) SetStatus

func (s *DBProxy) SetStatus(v string) *DBProxy

SetStatus sets the Status field's value.

func (*DBProxy) SetUpdatedDate

func (s *DBProxy) SetUpdatedDate(v time.Time) *DBProxy

SetUpdatedDate sets the UpdatedDate field's value.

func (*DBProxy) SetVpcId

func (s *DBProxy) SetVpcId(v string) *DBProxy

SetVpcId sets the VpcId field's value.

func (*DBProxy) SetVpcSecurityGroupIds

func (s *DBProxy) SetVpcSecurityGroupIds(v []*string) *DBProxy

SetVpcSecurityGroupIds sets the VpcSecurityGroupIds field's value.

func (*DBProxy) SetVpcSubnetIds

func (s *DBProxy) SetVpcSubnetIds(v []*string) *DBProxy

SetVpcSubnetIds sets the VpcSubnetIds field's value.

func (DBProxy) String

func (s DBProxy) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBProxyEndpoint

type DBProxyEndpoint struct {

    // The date and time when the DB proxy endpoint was first created.
    CreatedDate *time.Time `type:"timestamp"`

    // The Amazon Resource Name (ARN) for the DB proxy endpoint.
    DBProxyEndpointArn *string `type:"string"`

    // The name for the DB proxy endpoint. An identifier must begin with a letter
    // and must contain only ASCII letters, digits, and hyphens; it can't end with
    // a hyphen or contain two consecutive hyphens.
    DBProxyEndpointName *string `type:"string"`

    // The identifier for the DB proxy that is associated with this DB proxy endpoint.
    DBProxyName *string `type:"string"`

    // The endpoint that you can use to connect to the DB proxy. You include the
    // endpoint value in the connection string for a database client application.
    Endpoint *string `type:"string"`

    // Indicates whether this endpoint is the default endpoint for the associated
    // DB proxy. Default DB proxy endpoints always have read/write capability. Other
    // endpoints that you associate with the DB proxy can be either read/write or
    // read-only.
    IsDefault *bool `type:"boolean"`

    // The current status of this DB proxy endpoint. A status of available means
    // the endpoint is ready to handle requests. Other values indicate that you
    // must wait for the endpoint to be ready, or take some action to resolve an
    // issue.
    Status *string `type:"string" enum:"DBProxyEndpointStatus"`

    // A value that indicates whether the DB proxy endpoint can be used for read/write
    // or read-only operations.
    TargetRole *string `type:"string" enum:"DBProxyEndpointTargetRole"`

    // Provides the VPC ID of the DB proxy endpoint.
    VpcId *string `type:"string"`

    // Provides a list of VPC security groups that the DB proxy endpoint belongs
    // to.
    VpcSecurityGroupIds []*string `type:"list"`

    // The EC2 subnet IDs for the DB proxy endpoint.
    VpcSubnetIds []*string `type:"list"`
    // contains filtered or unexported fields
}

The data structure representing an endpoint associated with a DB proxy. RDS automatically creates one endpoint for each DB proxy. For Aurora DB clusters, you can associate additional endpoints with the same DB proxy. These endpoints can be read/write or read-only. They can also reside in different VPCs than the associated DB proxy.

This data type is used as a response element in the DescribeDBProxyEndpoints operation.

func (DBProxyEndpoint) GoString

func (s DBProxyEndpoint) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBProxyEndpoint) SetCreatedDate

func (s *DBProxyEndpoint) SetCreatedDate(v time.Time) *DBProxyEndpoint

SetCreatedDate sets the CreatedDate field's value.

func (*DBProxyEndpoint) SetDBProxyEndpointArn

func (s *DBProxyEndpoint) SetDBProxyEndpointArn(v string) *DBProxyEndpoint

SetDBProxyEndpointArn sets the DBProxyEndpointArn field's value.

func (*DBProxyEndpoint) SetDBProxyEndpointName

func (s *DBProxyEndpoint) SetDBProxyEndpointName(v string) *DBProxyEndpoint

SetDBProxyEndpointName sets the DBProxyEndpointName field's value.

func (*DBProxyEndpoint) SetDBProxyName

func (s *DBProxyEndpoint) SetDBProxyName(v string) *DBProxyEndpoint

SetDBProxyName sets the DBProxyName field's value.

func (*DBProxyEndpoint) SetEndpoint

func (s *DBProxyEndpoint) SetEndpoint(v string) *DBProxyEndpoint

SetEndpoint sets the Endpoint field's value.

func (*DBProxyEndpoint) SetIsDefault

func (s *DBProxyEndpoint) SetIsDefault(v bool) *DBProxyEndpoint

SetIsDefault sets the IsDefault field's value.

func (*DBProxyEndpoint) SetStatus

func (s *DBProxyEndpoint) SetStatus(v string) *DBProxyEndpoint

SetStatus sets the Status field's value.

func (*DBProxyEndpoint) SetTargetRole

func (s *DBProxyEndpoint) SetTargetRole(v string) *DBProxyEndpoint

SetTargetRole sets the TargetRole field's value.

func (*DBProxyEndpoint) SetVpcId

func (s *DBProxyEndpoint) SetVpcId(v string) *DBProxyEndpoint

SetVpcId sets the VpcId field's value.

func (*DBProxyEndpoint) SetVpcSecurityGroupIds

func (s *DBProxyEndpoint) SetVpcSecurityGroupIds(v []*string) *DBProxyEndpoint

SetVpcSecurityGroupIds sets the VpcSecurityGroupIds field's value.

func (*DBProxyEndpoint) SetVpcSubnetIds

func (s *DBProxyEndpoint) SetVpcSubnetIds(v []*string) *DBProxyEndpoint

SetVpcSubnetIds sets the VpcSubnetIds field's value.

func (DBProxyEndpoint) String

func (s DBProxyEndpoint) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBProxyTarget

type DBProxyTarget struct {

    // The writer endpoint for the RDS DB instance or Aurora DB cluster.
    Endpoint *string `type:"string"`

    // The port that the RDS Proxy uses to connect to the target RDS DB instance
    // or Aurora DB cluster.
    Port *int64 `type:"integer"`

    // The identifier representing the target. It can be the instance identifier
    // for an RDS DB instance, or the cluster identifier for an Aurora DB cluster.
    RdsResourceId *string `type:"string"`

    // A value that indicates whether the target of the proxy can be used for read/write
    // or read-only operations.
    Role *string `type:"string" enum:"TargetRole"`

    // The Amazon Resource Name (ARN) for the RDS DB instance or Aurora DB cluster.
    TargetArn *string `type:"string"`

    // Information about the connection health of the RDS Proxy target.
    TargetHealth *TargetHealth `type:"structure"`

    // The DB cluster identifier when the target represents an Aurora DB cluster.
    // This field is blank when the target represents an RDS DB instance.
    TrackedClusterId *string `type:"string"`

    // Specifies the kind of database, such as an RDS DB instance or an Aurora DB
    // cluster, that the target represents.
    Type *string `type:"string" enum:"TargetType"`
    // contains filtered or unexported fields
}

Contains the details for an RDS Proxy target. It represents an RDS DB instance or Aurora DB cluster that the proxy can connect to. One or more targets are associated with an RDS Proxy target group.

This data type is used as a response element in the DescribeDBProxyTargets action.

func (DBProxyTarget) GoString

func (s DBProxyTarget) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBProxyTarget) SetEndpoint

func (s *DBProxyTarget) SetEndpoint(v string) *DBProxyTarget

SetEndpoint sets the Endpoint field's value.

func (*DBProxyTarget) SetPort

func (s *DBProxyTarget) SetPort(v int64) *DBProxyTarget

SetPort sets the Port field's value.

func (*DBProxyTarget) SetRdsResourceId

func (s *DBProxyTarget) SetRdsResourceId(v string) *DBProxyTarget

SetRdsResourceId sets the RdsResourceId field's value.

func (*DBProxyTarget) SetRole

func (s *DBProxyTarget) SetRole(v string) *DBProxyTarget

SetRole sets the Role field's value.

func (*DBProxyTarget) SetTargetArn

func (s *DBProxyTarget) SetTargetArn(v string) *DBProxyTarget

SetTargetArn sets the TargetArn field's value.

func (*DBProxyTarget) SetTargetHealth

func (s *DBProxyTarget) SetTargetHealth(v *TargetHealth) *DBProxyTarget

SetTargetHealth sets the TargetHealth field's value.

func (*DBProxyTarget) SetTrackedClusterId

func (s *DBProxyTarget) SetTrackedClusterId(v string) *DBProxyTarget

SetTrackedClusterId sets the TrackedClusterId field's value.

func (*DBProxyTarget) SetType

func (s *DBProxyTarget) SetType(v string) *DBProxyTarget

SetType sets the Type field's value.

func (DBProxyTarget) String

func (s DBProxyTarget) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBProxyTargetGroup

type DBProxyTargetGroup struct {

    // The settings that determine the size and behavior of the connection pool
    // for the target group.
    ConnectionPoolConfig *ConnectionPoolConfigurationInfo `type:"structure"`

    // The date and time when the target group was first created.
    CreatedDate *time.Time `type:"timestamp"`

    // The identifier for the RDS proxy associated with this target group.
    DBProxyName *string `type:"string"`

    // Indicates whether this target group is the first one used for connection
    // requests by the associated proxy. Because each proxy is currently associated
    // with a single target group, currently this setting is always true.
    IsDefault *bool `type:"boolean"`

    // The current status of this target group. A status of available means the
    // target group is correctly associated with a database. Other values indicate
    // that you must wait for the target group to be ready, or take some action
    // to resolve an issue.
    Status *string `type:"string"`

    // The Amazon Resource Name (ARN) representing the target group.
    TargetGroupArn *string `type:"string"`

    // The identifier for the target group. This name must be unique for all target
    // groups owned by your Amazon Web Services account in the specified Amazon
    // Web Services Region.
    TargetGroupName *string `type:"string"`

    // The date and time when the target group was last updated.
    UpdatedDate *time.Time `type:"timestamp"`
    // contains filtered or unexported fields
}

Represents a set of RDS DB instances, Aurora DB clusters, or both that a proxy can connect to. Currently, each target group is associated with exactly one RDS DB instance or Aurora DB cluster.

This data type is used as a response element in the DescribeDBProxyTargetGroups action.

func (DBProxyTargetGroup) GoString

func (s DBProxyTargetGroup) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBProxyTargetGroup) SetConnectionPoolConfig

func (s *DBProxyTargetGroup) SetConnectionPoolConfig(v *ConnectionPoolConfigurationInfo) *DBProxyTargetGroup

SetConnectionPoolConfig sets the ConnectionPoolConfig field's value.

func (*DBProxyTargetGroup) SetCreatedDate

func (s *DBProxyTargetGroup) SetCreatedDate(v time.Time) *DBProxyTargetGroup

SetCreatedDate sets the CreatedDate field's value.

func (*DBProxyTargetGroup) SetDBProxyName

func (s *DBProxyTargetGroup) SetDBProxyName(v string) *DBProxyTargetGroup

SetDBProxyName sets the DBProxyName field's value.

func (*DBProxyTargetGroup) SetIsDefault

func (s *DBProxyTargetGroup) SetIsDefault(v bool) *DBProxyTargetGroup

SetIsDefault sets the IsDefault field's value.

func (*DBProxyTargetGroup) SetStatus

func (s *DBProxyTargetGroup) SetStatus(v string) *DBProxyTargetGroup

SetStatus sets the Status field's value.

func (*DBProxyTargetGroup) SetTargetGroupArn

func (s *DBProxyTargetGroup) SetTargetGroupArn(v string) *DBProxyTargetGroup

SetTargetGroupArn sets the TargetGroupArn field's value.

func (*DBProxyTargetGroup) SetTargetGroupName

func (s *DBProxyTargetGroup) SetTargetGroupName(v string) *DBProxyTargetGroup

SetTargetGroupName sets the TargetGroupName field's value.

func (*DBProxyTargetGroup) SetUpdatedDate

func (s *DBProxyTargetGroup) SetUpdatedDate(v time.Time) *DBProxyTargetGroup

SetUpdatedDate sets the UpdatedDate field's value.

func (DBProxyTargetGroup) String

func (s DBProxyTargetGroup) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBRecommendation

type DBRecommendation struct {

    // Additional information about the recommendation. The information might contain
    // markdown.
    AdditionalInfo *string `type:"string"`

    // The category of the recommendation.
    //
    // Valid values:
    //
    //    * performance efficiency
    //
    //    * security
    //
    //    * reliability
    //
    //    * cost optimization
    //
    //    * operational excellence
    //
    //    * sustainability
    Category *string `type:"string"`

    // The time when the recommendation was created. For example, 2023-09-28T01:13:53.931000+00:00.
    CreatedTime *time.Time `type:"timestamp"`

    // A detailed description of the recommendation. The description might contain
    // markdown.
    Description *string `type:"string"`

    // A short description of the issue identified for this recommendation. The
    // description might contain markdown.
    Detection *string `type:"string"`

    // A short description that explains the possible impact of an issue.
    Impact *string `type:"string"`

    // Details of the issue that caused the recommendation.
    IssueDetails *IssueDetails `type:"structure"`

    // A link to documentation that provides additional information about the recommendation.
    Links []*DocLink `type:"list"`

    // The reason why this recommendation was created. The information might contain
    // markdown.
    Reason *string `type:"string"`

    // A short description of the recommendation to resolve an issue. The description
    // might contain markdown.
    Recommendation *string `type:"string"`

    // The unique identifier of the recommendation.
    RecommendationId *string `type:"string"`

    // A list of recommended actions.
    RecommendedActions []*RecommendedAction `type:"list"`

    // The Amazon Resource Name (ARN) of the RDS resource associated with the recommendation.
    ResourceArn *string `type:"string"`

    // The severity level of the recommendation. The severity level can help you
    // decide the urgency with which to address the recommendation.
    //
    // Valid values:
    //
    //    * high
    //
    //    * medium
    //
    //    * low
    //
    //    * informational
    Severity *string `type:"string"`

    // The Amazon Web Services service that generated the recommendations.
    Source *string `type:"string"`

    // The current status of the recommendation.
    //
    // Valid values:
    //
    //    * active - The recommendations which are ready for you to apply.
    //
    //    * pending - The applied or scheduled recommendations which are in progress.
    //
    //    * resolved - The recommendations which are completed.
    //
    //    * dismissed - The recommendations that you dismissed.
    Status *string `type:"string"`

    // A short description of the recommendation type. The description might contain
    // markdown.
    TypeDetection *string `type:"string"`

    // A value that indicates the type of recommendation. This value determines
    // how the description is rendered.
    TypeId *string `type:"string"`

    // A short description that summarizes the recommendation to fix all the issues
    // of the recommendation type. The description might contain markdown.
    TypeRecommendation *string `type:"string"`

    // The time when the recommendation was last updated.
    UpdatedTime *time.Time `type:"timestamp"`
    // contains filtered or unexported fields
}

The recommendation for your DB instances, DB clusters, and DB parameter groups.

func (DBRecommendation) GoString

func (s DBRecommendation) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBRecommendation) SetAdditionalInfo

func (s *DBRecommendation) SetAdditionalInfo(v string) *DBRecommendation

SetAdditionalInfo sets the AdditionalInfo field's value.

func (*DBRecommendation) SetCategory

func (s *DBRecommendation) SetCategory(v string) *DBRecommendation

SetCategory sets the Category field's value.

func (*DBRecommendation) SetCreatedTime

func (s *DBRecommendation) SetCreatedTime(v time.Time) *DBRecommendation

SetCreatedTime sets the CreatedTime field's value.

func (*DBRecommendation) SetDescription

func (s *DBRecommendation) SetDescription(v string) *DBRecommendation

SetDescription sets the Description field's value.

func (*DBRecommendation) SetDetection

func (s *DBRecommendation) SetDetection(v string) *DBRecommendation

SetDetection sets the Detection field's value.

func (*DBRecommendation) SetImpact

func (s *DBRecommendation) SetImpact(v string) *DBRecommendation

SetImpact sets the Impact field's value.

func (*DBRecommendation) SetIssueDetails

func (s *DBRecommendation) SetIssueDetails(v *IssueDetails) *DBRecommendation

SetIssueDetails sets the IssueDetails field's value.

func (s *DBRecommendation) SetLinks(v []*DocLink) *DBRecommendation

SetLinks sets the Links field's value.

func (*DBRecommendation) SetReason

func (s *DBRecommendation) SetReason(v string) *DBRecommendation

SetReason sets the Reason field's value.

func (*DBRecommendation) SetRecommendation

func (s *DBRecommendation) SetRecommendation(v string) *DBRecommendation

SetRecommendation sets the Recommendation field's value.

func (*DBRecommendation) SetRecommendationId

func (s *DBRecommendation) SetRecommendationId(v string) *DBRecommendation

SetRecommendationId sets the RecommendationId field's value.

func (*DBRecommendation) SetRecommendedActions

func (s *DBRecommendation) SetRecommendedActions(v []*RecommendedAction) *DBRecommendation

SetRecommendedActions sets the RecommendedActions field's value.

func (*DBRecommendation) SetResourceArn

func (s *DBRecommendation) SetResourceArn(v string) *DBRecommendation

SetResourceArn sets the ResourceArn field's value.

func (*DBRecommendation) SetSeverity

func (s *DBRecommendation) SetSeverity(v string) *DBRecommendation

SetSeverity sets the Severity field's value.

func (*DBRecommendation) SetSource

func (s *DBRecommendation) SetSource(v string) *DBRecommendation

SetSource sets the Source field's value.

func (*DBRecommendation) SetStatus

func (s *DBRecommendation) SetStatus(v string) *DBRecommendation

SetStatus sets the Status field's value.

func (*DBRecommendation) SetTypeDetection

func (s *DBRecommendation) SetTypeDetection(v string) *DBRecommendation

SetTypeDetection sets the TypeDetection field's value.

func (*DBRecommendation) SetTypeId

func (s *DBRecommendation) SetTypeId(v string) *DBRecommendation

SetTypeId sets the TypeId field's value.

func (*DBRecommendation) SetTypeRecommendation

func (s *DBRecommendation) SetTypeRecommendation(v string) *DBRecommendation

SetTypeRecommendation sets the TypeRecommendation field's value.

func (*DBRecommendation) SetUpdatedTime

func (s *DBRecommendation) SetUpdatedTime(v time.Time) *DBRecommendation

SetUpdatedTime sets the UpdatedTime field's value.

func (DBRecommendation) String

func (s DBRecommendation) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBSecurityGroup

type DBSecurityGroup struct {

    // The Amazon Resource Name (ARN) for the DB security group.
    DBSecurityGroupArn *string `type:"string"`

    // Provides the description of the DB security group.
    DBSecurityGroupDescription *string `type:"string"`

    // Specifies the name of the DB security group.
    DBSecurityGroupName *string `type:"string"`

    // Contains a list of EC2SecurityGroup elements.
    EC2SecurityGroups []*EC2SecurityGroup `locationNameList:"EC2SecurityGroup" type:"list"`

    // Contains a list of IPRange elements.
    IPRanges []*IPRange `locationNameList:"IPRange" type:"list"`

    // Provides the Amazon Web Services ID of the owner of a specific DB security
    // group.
    OwnerId *string `type:"string"`

    // Provides the VpcId of the DB security group.
    VpcId *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the details for an Amazon RDS DB security group.

This data type is used as a response element in the DescribeDBSecurityGroups action.

func (DBSecurityGroup) GoString

func (s DBSecurityGroup) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBSecurityGroup) SetDBSecurityGroupArn

func (s *DBSecurityGroup) SetDBSecurityGroupArn(v string) *DBSecurityGroup

SetDBSecurityGroupArn sets the DBSecurityGroupArn field's value.

func (*DBSecurityGroup) SetDBSecurityGroupDescription

func (s *DBSecurityGroup) SetDBSecurityGroupDescription(v string) *DBSecurityGroup

SetDBSecurityGroupDescription sets the DBSecurityGroupDescription field's value.

func (*DBSecurityGroup) SetDBSecurityGroupName

func (s *DBSecurityGroup) SetDBSecurityGroupName(v string) *DBSecurityGroup

SetDBSecurityGroupName sets the DBSecurityGroupName field's value.

func (*DBSecurityGroup) SetEC2SecurityGroups

func (s *DBSecurityGroup) SetEC2SecurityGroups(v []*EC2SecurityGroup) *DBSecurityGroup

SetEC2SecurityGroups sets the EC2SecurityGroups field's value.

func (*DBSecurityGroup) SetIPRanges

func (s *DBSecurityGroup) SetIPRanges(v []*IPRange) *DBSecurityGroup

SetIPRanges sets the IPRanges field's value.

func (*DBSecurityGroup) SetOwnerId

func (s *DBSecurityGroup) SetOwnerId(v string) *DBSecurityGroup

SetOwnerId sets the OwnerId field's value.

func (*DBSecurityGroup) SetVpcId

func (s *DBSecurityGroup) SetVpcId(v string) *DBSecurityGroup

SetVpcId sets the VpcId field's value.

func (DBSecurityGroup) String

func (s DBSecurityGroup) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBSecurityGroupMembership

type DBSecurityGroupMembership struct {

    // The name of the DB security group.
    DBSecurityGroupName *string `type:"string"`

    // The status of the DB security group.
    Status *string `type:"string"`
    // contains filtered or unexported fields
}

This data type is used as a response element in the following actions:

  • ModifyDBInstance

  • RebootDBInstance

  • RestoreDBInstanceFromDBSnapshot

  • RestoreDBInstanceToPointInTime

func (DBSecurityGroupMembership) GoString

func (s DBSecurityGroupMembership) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBSecurityGroupMembership) SetDBSecurityGroupName

func (s *DBSecurityGroupMembership) SetDBSecurityGroupName(v string) *DBSecurityGroupMembership

SetDBSecurityGroupName sets the DBSecurityGroupName field's value.

func (*DBSecurityGroupMembership) SetStatus

func (s *DBSecurityGroupMembership) SetStatus(v string) *DBSecurityGroupMembership

SetStatus sets the Status field's value.

func (DBSecurityGroupMembership) String

func (s DBSecurityGroupMembership) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBShardGroup

type DBShardGroup struct {

    // Specifies whether to create standby instances for the DB shard group. Valid
    // values are the following:
    //
    //    * 0 - Creates a single, primary DB instance for each physical shard. This
    //    is the default value, and the only one supported for the preview.
    //
    //    * 1 - Creates a primary DB instance and a standby instance in a different
    //    Availability Zone (AZ) for each physical shard.
    //
    //    * 2 - Creates a primary DB instance and two standby instances in different
    //    AZs for each physical shard.
    ComputeRedundancy *int64 `type:"integer"`

    // The name of the primary DB cluster for the DB shard group.
    DBClusterIdentifier *string `type:"string"`

    // The name of the DB shard group.
    DBShardGroupIdentifier *string `min:"1" type:"string"`

    // The Amazon Web Services Region-unique, immutable identifier for the DB shard
    // group.
    DBShardGroupResourceId *string `type:"string"`

    // The connection endpoint for the DB shard group.
    Endpoint *string `type:"string"`

    // The maximum capacity of the DB shard group in Aurora capacity units (ACUs).
    MaxACU *float64 `type:"double"`

    // Indicates whether the DB shard group is publicly accessible.
    //
    // When the DB shard group is publicly accessible, its Domain Name System (DNS)
    // endpoint resolves to the private IP address from within the DB shard group's
    // virtual private cloud (VPC). It resolves to the public IP address from outside
    // of the DB shard group's VPC. Access to the DB shard group is ultimately controlled
    // by the security group it uses. That public access isn't permitted if the
    // security group assigned to the DB shard group doesn't permit it.
    //
    // When the DB shard group isn't publicly accessible, it is an internal DB shard
    // group with a DNS name that resolves to a private IP address.
    //
    // For more information, see CreateDBShardGroup.
    //
    // This setting is only for Aurora Limitless Database.
    PubliclyAccessible *bool `type:"boolean"`

    // The status of the DB shard group.
    Status *string `type:"string"`
    // contains filtered or unexported fields
}

func (DBShardGroup) GoString

func (s DBShardGroup) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBShardGroup) SetComputeRedundancy

func (s *DBShardGroup) SetComputeRedundancy(v int64) *DBShardGroup

SetComputeRedundancy sets the ComputeRedundancy field's value.

func (*DBShardGroup) SetDBClusterIdentifier

func (s *DBShardGroup) SetDBClusterIdentifier(v string) *DBShardGroup

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*DBShardGroup) SetDBShardGroupIdentifier

func (s *DBShardGroup) SetDBShardGroupIdentifier(v string) *DBShardGroup

SetDBShardGroupIdentifier sets the DBShardGroupIdentifier field's value.

func (*DBShardGroup) SetDBShardGroupResourceId

func (s *DBShardGroup) SetDBShardGroupResourceId(v string) *DBShardGroup

SetDBShardGroupResourceId sets the DBShardGroupResourceId field's value.

func (*DBShardGroup) SetEndpoint

func (s *DBShardGroup) SetEndpoint(v string) *DBShardGroup

SetEndpoint sets the Endpoint field's value.

func (*DBShardGroup) SetMaxACU

func (s *DBShardGroup) SetMaxACU(v float64) *DBShardGroup

SetMaxACU sets the MaxACU field's value.

func (*DBShardGroup) SetPubliclyAccessible

func (s *DBShardGroup) SetPubliclyAccessible(v bool) *DBShardGroup

SetPubliclyAccessible sets the PubliclyAccessible field's value.

func (*DBShardGroup) SetStatus

func (s *DBShardGroup) SetStatus(v string) *DBShardGroup

SetStatus sets the Status field's value.

func (DBShardGroup) String

func (s DBShardGroup) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBSnapshot

type DBSnapshot struct {

    // Specifies the allocated storage size in gibibytes (GiB).
    AllocatedStorage *int64 `type:"integer"`

    // Specifies the name of the Availability Zone the DB instance was located in
    // at the time of the DB snapshot.
    AvailabilityZone *string `type:"string"`

    // Specifies the DB instance identifier of the DB instance this DB snapshot
    // was created from.
    DBInstanceIdentifier *string `type:"string"`

    // The Amazon Resource Name (ARN) for the DB snapshot.
    DBSnapshotArn *string `type:"string"`

    // Specifies the identifier for the DB snapshot.
    DBSnapshotIdentifier *string `type:"string"`

    // The Oracle system identifier (SID), which is the name of the Oracle database
    // instance that manages your database files. The Oracle SID is also the name
    // of your CDB.
    DBSystemId *string `type:"string"`

    // The identifier for the source DB instance, which can't be changed and which
    // is unique to an Amazon Web Services Region.
    DbiResourceId *string `type:"string"`

    // Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
    DedicatedLogVolume *bool `type:"boolean"`

    // Indicates whether the DB snapshot is encrypted.
    Encrypted *bool `type:"boolean"`

    // Specifies the name of the database engine.
    Engine *string `type:"string"`

    // Specifies the version of the database engine.
    EngineVersion *string `type:"string"`

    // Indicates whether mapping of Amazon Web Services Identity and Access Management
    // (IAM) accounts to database accounts is enabled.
    IAMDatabaseAuthenticationEnabled *bool `type:"boolean"`

    // Specifies the time in Coordinated Universal Time (UTC) when the DB instance,
    // from which the snapshot was taken, was created.
    InstanceCreateTime *time.Time `type:"timestamp"`

    // Specifies the Provisioned IOPS (I/O operations per second) value of the DB
    // instance at the time of the snapshot.
    Iops *int64 `type:"integer"`

    // If Encrypted is true, the Amazon Web Services KMS key identifier for the
    // encrypted DB snapshot.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key.
    KmsKeyId *string `type:"string"`

    // License model information for the restored DB instance.
    LicenseModel *string `type:"string"`

    // Provides the master username for the DB snapshot.
    MasterUsername *string `type:"string"`

    // Indicates whether the snapshot is of a DB instance using the multi-tenant
    // configuration (TRUE) or the single-tenant configuration (FALSE).
    MultiTenant *bool `type:"boolean"`

    // Provides the option group name for the DB snapshot.
    OptionGroupName *string `type:"string"`

    // Specifies the time of the CreateDBSnapshot operation in Coordinated Universal
    // Time (UTC). Doesn't change when the snapshot is copied.
    OriginalSnapshotCreateTime *time.Time `type:"timestamp"`

    // The percentage of the estimated data that has been transferred.
    PercentProgress *int64 `type:"integer"`

    // Specifies the port that the database engine was listening on at the time
    // of the snapshot.
    Port *int64 `type:"integer"`

    // The number of CPU cores and the number of threads per core for the DB instance
    // class of the DB instance when the DB snapshot was created.
    ProcessorFeatures []*ProcessorFeature `locationNameList:"ProcessorFeature" type:"list"`

    // Specifies when the snapshot was taken in Coordinated Universal Time (UTC).
    // Changes for the copy when the snapshot is copied.
    SnapshotCreateTime *time.Time `type:"timestamp"`

    // The timestamp of the most recent transaction applied to the database that
    // you're backing up. Thus, if you restore a snapshot, SnapshotDatabaseTime
    // is the most recent transaction in the restored DB instance. In contrast,
    // originalSnapshotCreateTime specifies the system time that the snapshot completed.
    //
    // If you back up a read replica, you can determine the replica lag by comparing
    // SnapshotDatabaseTime with originalSnapshotCreateTime. For example, if originalSnapshotCreateTime
    // is two hours later than SnapshotDatabaseTime, then the replica lag is two
    // hours.
    SnapshotDatabaseTime *time.Time `type:"timestamp"`

    // Specifies where manual snapshots are stored: Amazon Web Services Outposts
    // or the Amazon Web Services Region.
    SnapshotTarget *string `type:"string"`

    // Provides the type of the DB snapshot.
    SnapshotType *string `type:"string"`

    // The DB snapshot Amazon Resource Name (ARN) that the DB snapshot was copied
    // from. It only has a value in the case of a cross-account or cross-Region
    // copy.
    SourceDBSnapshotIdentifier *string `type:"string"`

    // The Amazon Web Services Region that the DB snapshot was created in or copied
    // from.
    SourceRegion *string `type:"string"`

    // Specifies the status of this DB snapshot.
    Status *string `type:"string"`

    // Specifies the storage throughput for the DB snapshot.
    StorageThroughput *int64 `type:"integer"`

    // Specifies the storage type associated with DB snapshot.
    StorageType *string `type:"string"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    TagList []*Tag `locationNameList:"Tag" type:"list"`

    // The ARN from the key store with which to associate the instance for TDE encryption.
    TdeCredentialArn *string `type:"string"`

    // The time zone of the DB snapshot. In most cases, the Timezone element is
    // empty. Timezone content appears only for snapshots taken from Microsoft SQL
    // Server DB instances that were created with a time zone specified.
    Timezone *string `type:"string"`

    // Provides the VPC ID associated with the DB snapshot.
    VpcId *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the details of an Amazon RDS DB snapshot.

This data type is used as a response element in the DescribeDBSnapshots action.

func (DBSnapshot) GoString

func (s DBSnapshot) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBSnapshot) SetAllocatedStorage

func (s *DBSnapshot) SetAllocatedStorage(v int64) *DBSnapshot

SetAllocatedStorage sets the AllocatedStorage field's value.

func (*DBSnapshot) SetAvailabilityZone

func (s *DBSnapshot) SetAvailabilityZone(v string) *DBSnapshot

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*DBSnapshot) SetDBInstanceIdentifier

func (s *DBSnapshot) SetDBInstanceIdentifier(v string) *DBSnapshot

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*DBSnapshot) SetDBSnapshotArn

func (s *DBSnapshot) SetDBSnapshotArn(v string) *DBSnapshot

SetDBSnapshotArn sets the DBSnapshotArn field's value.

func (*DBSnapshot) SetDBSnapshotIdentifier

func (s *DBSnapshot) SetDBSnapshotIdentifier(v string) *DBSnapshot

SetDBSnapshotIdentifier sets the DBSnapshotIdentifier field's value.

func (*DBSnapshot) SetDBSystemId

func (s *DBSnapshot) SetDBSystemId(v string) *DBSnapshot

SetDBSystemId sets the DBSystemId field's value.

func (*DBSnapshot) SetDbiResourceId

func (s *DBSnapshot) SetDbiResourceId(v string) *DBSnapshot

SetDbiResourceId sets the DbiResourceId field's value.

func (*DBSnapshot) SetDedicatedLogVolume

func (s *DBSnapshot) SetDedicatedLogVolume(v bool) *DBSnapshot

SetDedicatedLogVolume sets the DedicatedLogVolume field's value.

func (*DBSnapshot) SetEncrypted

func (s *DBSnapshot) SetEncrypted(v bool) *DBSnapshot

SetEncrypted sets the Encrypted field's value.

func (*DBSnapshot) SetEngine

func (s *DBSnapshot) SetEngine(v string) *DBSnapshot

SetEngine sets the Engine field's value.

func (*DBSnapshot) SetEngineVersion

func (s *DBSnapshot) SetEngineVersion(v string) *DBSnapshot

SetEngineVersion sets the EngineVersion field's value.

func (*DBSnapshot) SetIAMDatabaseAuthenticationEnabled

func (s *DBSnapshot) SetIAMDatabaseAuthenticationEnabled(v bool) *DBSnapshot

SetIAMDatabaseAuthenticationEnabled sets the IAMDatabaseAuthenticationEnabled field's value.

func (*DBSnapshot) SetInstanceCreateTime

func (s *DBSnapshot) SetInstanceCreateTime(v time.Time) *DBSnapshot

SetInstanceCreateTime sets the InstanceCreateTime field's value.

func (*DBSnapshot) SetIops

func (s *DBSnapshot) SetIops(v int64) *DBSnapshot

SetIops sets the Iops field's value.

func (*DBSnapshot) SetKmsKeyId

func (s *DBSnapshot) SetKmsKeyId(v string) *DBSnapshot

SetKmsKeyId sets the KmsKeyId field's value.

func (*DBSnapshot) SetLicenseModel

func (s *DBSnapshot) SetLicenseModel(v string) *DBSnapshot

SetLicenseModel sets the LicenseModel field's value.

func (*DBSnapshot) SetMasterUsername

func (s *DBSnapshot) SetMasterUsername(v string) *DBSnapshot

SetMasterUsername sets the MasterUsername field's value.

func (*DBSnapshot) SetMultiTenant

func (s *DBSnapshot) SetMultiTenant(v bool) *DBSnapshot

SetMultiTenant sets the MultiTenant field's value.

func (*DBSnapshot) SetOptionGroupName

func (s *DBSnapshot) SetOptionGroupName(v string) *DBSnapshot

SetOptionGroupName sets the OptionGroupName field's value.

func (*DBSnapshot) SetOriginalSnapshotCreateTime

func (s *DBSnapshot) SetOriginalSnapshotCreateTime(v time.Time) *DBSnapshot

SetOriginalSnapshotCreateTime sets the OriginalSnapshotCreateTime field's value.

func (*DBSnapshot) SetPercentProgress

func (s *DBSnapshot) SetPercentProgress(v int64) *DBSnapshot

SetPercentProgress sets the PercentProgress field's value.

func (*DBSnapshot) SetPort

func (s *DBSnapshot) SetPort(v int64) *DBSnapshot

SetPort sets the Port field's value.

func (*DBSnapshot) SetProcessorFeatures

func (s *DBSnapshot) SetProcessorFeatures(v []*ProcessorFeature) *DBSnapshot

SetProcessorFeatures sets the ProcessorFeatures field's value.

func (*DBSnapshot) SetSnapshotCreateTime

func (s *DBSnapshot) SetSnapshotCreateTime(v time.Time) *DBSnapshot

SetSnapshotCreateTime sets the SnapshotCreateTime field's value.

func (*DBSnapshot) SetSnapshotDatabaseTime

func (s *DBSnapshot) SetSnapshotDatabaseTime(v time.Time) *DBSnapshot

SetSnapshotDatabaseTime sets the SnapshotDatabaseTime field's value.

func (*DBSnapshot) SetSnapshotTarget

func (s *DBSnapshot) SetSnapshotTarget(v string) *DBSnapshot

SetSnapshotTarget sets the SnapshotTarget field's value.

func (*DBSnapshot) SetSnapshotType

func (s *DBSnapshot) SetSnapshotType(v string) *DBSnapshot

SetSnapshotType sets the SnapshotType field's value.

func (*DBSnapshot) SetSourceDBSnapshotIdentifier

func (s *DBSnapshot) SetSourceDBSnapshotIdentifier(v string) *DBSnapshot

SetSourceDBSnapshotIdentifier sets the SourceDBSnapshotIdentifier field's value.

func (*DBSnapshot) SetSourceRegion

func (s *DBSnapshot) SetSourceRegion(v string) *DBSnapshot

SetSourceRegion sets the SourceRegion field's value.

func (*DBSnapshot) SetStatus

func (s *DBSnapshot) SetStatus(v string) *DBSnapshot

SetStatus sets the Status field's value.

func (*DBSnapshot) SetStorageThroughput

func (s *DBSnapshot) SetStorageThroughput(v int64) *DBSnapshot

SetStorageThroughput sets the StorageThroughput field's value.

func (*DBSnapshot) SetStorageType

func (s *DBSnapshot) SetStorageType(v string) *DBSnapshot

SetStorageType sets the StorageType field's value.

func (*DBSnapshot) SetTagList

func (s *DBSnapshot) SetTagList(v []*Tag) *DBSnapshot

SetTagList sets the TagList field's value.

func (*DBSnapshot) SetTdeCredentialArn

func (s *DBSnapshot) SetTdeCredentialArn(v string) *DBSnapshot

SetTdeCredentialArn sets the TdeCredentialArn field's value.

func (*DBSnapshot) SetTimezone

func (s *DBSnapshot) SetTimezone(v string) *DBSnapshot

SetTimezone sets the Timezone field's value.

func (*DBSnapshot) SetVpcId

func (s *DBSnapshot) SetVpcId(v string) *DBSnapshot

SetVpcId sets the VpcId field's value.

func (DBSnapshot) String

func (s DBSnapshot) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBSnapshotAttribute

type DBSnapshotAttribute struct {

    // The name of the manual DB snapshot attribute.
    //
    // The attribute named restore refers to the list of Amazon Web Services accounts
    // that have permission to copy or restore the manual DB cluster snapshot. For
    // more information, see the ModifyDBSnapshotAttribute API action.
    AttributeName *string `type:"string"`

    // The value or values for the manual DB snapshot attribute.
    //
    // If the AttributeName field is set to restore, then this element returns a
    // list of IDs of the Amazon Web Services accounts that are authorized to copy
    // or restore the manual DB snapshot. If a value of all is in the list, then
    // the manual DB snapshot is public and available for any Amazon Web Services
    // account to copy or restore.
    AttributeValues []*string `locationNameList:"AttributeValue" type:"list"`
    // contains filtered or unexported fields
}

Contains the name and values of a manual DB snapshot attribute

Manual DB snapshot attributes are used to authorize other Amazon Web Services accounts to restore a manual DB snapshot. For more information, see the ModifyDBSnapshotAttribute API.

func (DBSnapshotAttribute) GoString

func (s DBSnapshotAttribute) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBSnapshotAttribute) SetAttributeName

func (s *DBSnapshotAttribute) SetAttributeName(v string) *DBSnapshotAttribute

SetAttributeName sets the AttributeName field's value.

func (*DBSnapshotAttribute) SetAttributeValues

func (s *DBSnapshotAttribute) SetAttributeValues(v []*string) *DBSnapshotAttribute

SetAttributeValues sets the AttributeValues field's value.

func (DBSnapshotAttribute) String

func (s DBSnapshotAttribute) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBSnapshotAttributesResult

type DBSnapshotAttributesResult struct {

    // The list of attributes and values for the manual DB snapshot.
    DBSnapshotAttributes []*DBSnapshotAttribute `locationNameList:"DBSnapshotAttribute" type:"list"`

    // The identifier of the manual DB snapshot that the attributes apply to.
    DBSnapshotIdentifier *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the results of a successful call to the DescribeDBSnapshotAttributes API action.

Manual DB snapshot attributes are used to authorize other Amazon Web Services accounts to copy or restore a manual DB snapshot. For more information, see the ModifyDBSnapshotAttribute API action.

func (DBSnapshotAttributesResult) GoString

func (s DBSnapshotAttributesResult) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBSnapshotAttributesResult) SetDBSnapshotAttributes

func (s *DBSnapshotAttributesResult) SetDBSnapshotAttributes(v []*DBSnapshotAttribute) *DBSnapshotAttributesResult

SetDBSnapshotAttributes sets the DBSnapshotAttributes field's value.

func (*DBSnapshotAttributesResult) SetDBSnapshotIdentifier

func (s *DBSnapshotAttributesResult) SetDBSnapshotIdentifier(v string) *DBSnapshotAttributesResult

SetDBSnapshotIdentifier sets the DBSnapshotIdentifier field's value.

func (DBSnapshotAttributesResult) String

func (s DBSnapshotAttributesResult) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBSnapshotTenantDatabase

type DBSnapshotTenantDatabase struct {

    // The name of the character set of a tenant database.
    CharacterSetName *string `type:"string"`

    // The ID for the DB instance that contains the tenant databases.
    DBInstanceIdentifier *string `type:"string"`

    // The identifier for the snapshot of the DB instance.
    DBSnapshotIdentifier *string `type:"string"`

    // The Amazon Resource Name (ARN) for the snapshot tenant database.
    DBSnapshotTenantDatabaseARN *string `type:"string"`

    // The resource identifier of the source CDB instance. This identifier can't
    // be changed and is unique to an Amazon Web Services Region.
    DbiResourceId *string `type:"string"`

    // The name of the database engine.
    EngineName *string `type:"string"`

    // The master username of the tenant database.
    MasterUsername *string `type:"string"`

    // The NCHAR character set name of the tenant database.
    NcharCharacterSetName *string `type:"string"`

    // The type of DB snapshot.
    SnapshotType *string `type:"string"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    TagList []*Tag `locationNameList:"Tag" type:"list"`

    // The name of the tenant database.
    TenantDBName *string `type:"string"`

    // The time the DB snapshot was taken, specified in Coordinated Universal Time
    // (UTC). If you copy the snapshot, the creation time changes.
    TenantDatabaseCreateTime *time.Time `type:"timestamp"`

    // The resource ID of the tenant database.
    TenantDatabaseResourceId *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the details of a tenant database in a snapshot of a DB instance.

func (DBSnapshotTenantDatabase) GoString

func (s DBSnapshotTenantDatabase) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBSnapshotTenantDatabase) SetCharacterSetName

func (s *DBSnapshotTenantDatabase) SetCharacterSetName(v string) *DBSnapshotTenantDatabase

SetCharacterSetName sets the CharacterSetName field's value.

func (*DBSnapshotTenantDatabase) SetDBInstanceIdentifier

func (s *DBSnapshotTenantDatabase) SetDBInstanceIdentifier(v string) *DBSnapshotTenantDatabase

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*DBSnapshotTenantDatabase) SetDBSnapshotIdentifier

func (s *DBSnapshotTenantDatabase) SetDBSnapshotIdentifier(v string) *DBSnapshotTenantDatabase

SetDBSnapshotIdentifier sets the DBSnapshotIdentifier field's value.

func (*DBSnapshotTenantDatabase) SetDBSnapshotTenantDatabaseARN

func (s *DBSnapshotTenantDatabase) SetDBSnapshotTenantDatabaseARN(v string) *DBSnapshotTenantDatabase

SetDBSnapshotTenantDatabaseARN sets the DBSnapshotTenantDatabaseARN field's value.

func (*DBSnapshotTenantDatabase) SetDbiResourceId

func (s *DBSnapshotTenantDatabase) SetDbiResourceId(v string) *DBSnapshotTenantDatabase

SetDbiResourceId sets the DbiResourceId field's value.

func (*DBSnapshotTenantDatabase) SetEngineName

func (s *DBSnapshotTenantDatabase) SetEngineName(v string) *DBSnapshotTenantDatabase

SetEngineName sets the EngineName field's value.

func (*DBSnapshotTenantDatabase) SetMasterUsername

func (s *DBSnapshotTenantDatabase) SetMasterUsername(v string) *DBSnapshotTenantDatabase

SetMasterUsername sets the MasterUsername field's value.

func (*DBSnapshotTenantDatabase) SetNcharCharacterSetName

func (s *DBSnapshotTenantDatabase) SetNcharCharacterSetName(v string) *DBSnapshotTenantDatabase

SetNcharCharacterSetName sets the NcharCharacterSetName field's value.

func (*DBSnapshotTenantDatabase) SetSnapshotType

func (s *DBSnapshotTenantDatabase) SetSnapshotType(v string) *DBSnapshotTenantDatabase

SetSnapshotType sets the SnapshotType field's value.

func (*DBSnapshotTenantDatabase) SetTagList

func (s *DBSnapshotTenantDatabase) SetTagList(v []*Tag) *DBSnapshotTenantDatabase

SetTagList sets the TagList field's value.

func (*DBSnapshotTenantDatabase) SetTenantDBName

func (s *DBSnapshotTenantDatabase) SetTenantDBName(v string) *DBSnapshotTenantDatabase

SetTenantDBName sets the TenantDBName field's value.

func (*DBSnapshotTenantDatabase) SetTenantDatabaseCreateTime

func (s *DBSnapshotTenantDatabase) SetTenantDatabaseCreateTime(v time.Time) *DBSnapshotTenantDatabase

SetTenantDatabaseCreateTime sets the TenantDatabaseCreateTime field's value.

func (*DBSnapshotTenantDatabase) SetTenantDatabaseResourceId

func (s *DBSnapshotTenantDatabase) SetTenantDatabaseResourceId(v string) *DBSnapshotTenantDatabase

SetTenantDatabaseResourceId sets the TenantDatabaseResourceId field's value.

func (DBSnapshotTenantDatabase) String

func (s DBSnapshotTenantDatabase) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DBSubnetGroup

type DBSubnetGroup struct {

    // The Amazon Resource Name (ARN) for the DB subnet group.
    DBSubnetGroupArn *string `type:"string"`

    // Provides the description of the DB subnet group.
    DBSubnetGroupDescription *string `type:"string"`

    // The name of the DB subnet group.
    DBSubnetGroupName *string `type:"string"`

    // Provides the status of the DB subnet group.
    SubnetGroupStatus *string `type:"string"`

    // Contains a list of Subnet elements.
    Subnets []*Subnet `locationNameList:"Subnet" type:"list"`

    // The network type of the DB subnet group.
    //
    // Valid values:
    //
    //    * IPV4
    //
    //    * DUAL
    //
    // A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6
    // protocols (DUAL).
    //
    // For more information, see Working with a DB instance in a VPC (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html)
    // in the Amazon RDS User Guide.
    SupportedNetworkTypes []*string `type:"list"`

    // Provides the VpcId of the DB subnet group.
    VpcId *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the details of an Amazon RDS DB subnet group.

This data type is used as a response element in the DescribeDBSubnetGroups action.

func (DBSubnetGroup) GoString

func (s DBSubnetGroup) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DBSubnetGroup) SetDBSubnetGroupArn

func (s *DBSubnetGroup) SetDBSubnetGroupArn(v string) *DBSubnetGroup

SetDBSubnetGroupArn sets the DBSubnetGroupArn field's value.

func (*DBSubnetGroup) SetDBSubnetGroupDescription

func (s *DBSubnetGroup) SetDBSubnetGroupDescription(v string) *DBSubnetGroup

SetDBSubnetGroupDescription sets the DBSubnetGroupDescription field's value.

func (*DBSubnetGroup) SetDBSubnetGroupName

func (s *DBSubnetGroup) SetDBSubnetGroupName(v string) *DBSubnetGroup

SetDBSubnetGroupName sets the DBSubnetGroupName field's value.

func (*DBSubnetGroup) SetSubnetGroupStatus

func (s *DBSubnetGroup) SetSubnetGroupStatus(v string) *DBSubnetGroup

SetSubnetGroupStatus sets the SubnetGroupStatus field's value.

func (*DBSubnetGroup) SetSubnets

func (s *DBSubnetGroup) SetSubnets(v []*Subnet) *DBSubnetGroup

SetSubnets sets the Subnets field's value.

func (*DBSubnetGroup) SetSupportedNetworkTypes

func (s *DBSubnetGroup) SetSupportedNetworkTypes(v []*string) *DBSubnetGroup

SetSupportedNetworkTypes sets the SupportedNetworkTypes field's value.

func (*DBSubnetGroup) SetVpcId

func (s *DBSubnetGroup) SetVpcId(v string) *DBSubnetGroup

SetVpcId sets the VpcId field's value.

func (DBSubnetGroup) String

func (s DBSubnetGroup) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteBlueGreenDeploymentInput

type DeleteBlueGreenDeploymentInput struct {

    // The unique identifier of the blue/green deployment to delete. This parameter
    // isn't case-sensitive.
    //
    // Constraints:
    //
    //    * Must match an existing blue/green deployment identifier.
    //
    // BlueGreenDeploymentIdentifier is a required field
    BlueGreenDeploymentIdentifier *string `min:"1" type:"string" required:"true"`

    // Specifies whether to delete the resources in the green environment. You can't
    // specify this option if the blue/green deployment status (https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_BlueGreenDeployment.html)
    // is SWITCHOVER_COMPLETED.
    DeleteTarget *bool `type:"boolean"`
    // contains filtered or unexported fields
}

func (DeleteBlueGreenDeploymentInput) GoString

func (s DeleteBlueGreenDeploymentInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteBlueGreenDeploymentInput) SetBlueGreenDeploymentIdentifier

func (s *DeleteBlueGreenDeploymentInput) SetBlueGreenDeploymentIdentifier(v string) *DeleteBlueGreenDeploymentInput

SetBlueGreenDeploymentIdentifier sets the BlueGreenDeploymentIdentifier field's value.

func (*DeleteBlueGreenDeploymentInput) SetDeleteTarget

func (s *DeleteBlueGreenDeploymentInput) SetDeleteTarget(v bool) *DeleteBlueGreenDeploymentInput

SetDeleteTarget sets the DeleteTarget field's value.

func (DeleteBlueGreenDeploymentInput) String

func (s DeleteBlueGreenDeploymentInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteBlueGreenDeploymentInput) Validate

func (s *DeleteBlueGreenDeploymentInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteBlueGreenDeploymentOutput

type DeleteBlueGreenDeploymentOutput struct {

    // Details about a blue/green deployment.
    //
    // For more information, see Using Amazon RDS Blue/Green Deployments for database
    // updates (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html)
    // in the Amazon RDS User Guide and Using Amazon RDS Blue/Green Deployments
    // for database updates (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html)
    // in the Amazon Aurora User Guide.
    BlueGreenDeployment *BlueGreenDeployment `type:"structure"`
    // contains filtered or unexported fields
}

func (DeleteBlueGreenDeploymentOutput) GoString

func (s DeleteBlueGreenDeploymentOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteBlueGreenDeploymentOutput) SetBlueGreenDeployment

func (s *DeleteBlueGreenDeploymentOutput) SetBlueGreenDeployment(v *BlueGreenDeployment) *DeleteBlueGreenDeploymentOutput

SetBlueGreenDeployment sets the BlueGreenDeployment field's value.

func (DeleteBlueGreenDeploymentOutput) String

func (s DeleteBlueGreenDeploymentOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteCustomDBEngineVersionInput

type DeleteCustomDBEngineVersionInput struct {

    // The database engine. The only supported engines are custom-oracle-ee and
    // custom-oracle-ee-cdb.
    //
    // Engine is a required field
    Engine *string `min:"1" type:"string" required:"true"`

    // The custom engine version (CEV) for your DB instance. This option is required
    // for RDS Custom, but optional for Amazon RDS. The combination of Engine and
    // EngineVersion is unique per customer per Amazon Web Services Region.
    //
    // EngineVersion is a required field
    EngineVersion *string `min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteCustomDBEngineVersionInput) GoString

func (s DeleteCustomDBEngineVersionInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteCustomDBEngineVersionInput) SetEngine

func (s *DeleteCustomDBEngineVersionInput) SetEngine(v string) *DeleteCustomDBEngineVersionInput

SetEngine sets the Engine field's value.

func (*DeleteCustomDBEngineVersionInput) SetEngineVersion

func (s *DeleteCustomDBEngineVersionInput) SetEngineVersion(v string) *DeleteCustomDBEngineVersionInput

SetEngineVersion sets the EngineVersion field's value.

func (DeleteCustomDBEngineVersionInput) String

func (s DeleteCustomDBEngineVersionInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteCustomDBEngineVersionInput) Validate

func (s *DeleteCustomDBEngineVersionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteCustomDBEngineVersionOutput

type DeleteCustomDBEngineVersionOutput struct {

    // The creation time of the DB engine version.
    CreateTime *time.Time `type:"timestamp"`

    // JSON string that lists the installation files and parameters that RDS Custom
    // uses to create a custom engine version (CEV). RDS Custom applies the patches
    // in the order in which they're listed in the manifest. You can set the Oracle
    // home, Oracle base, and UNIX/Linux user and group using the installation parameters.
    // For more information, see JSON fields in the CEV manifest (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.preparing.html#custom-cev.preparing.manifest.fields)
    // in the Amazon RDS User Guide.
    CustomDBEngineVersionManifest *string `min:"1" type:"string"`

    // The description of the database engine.
    DBEngineDescription *string `type:"string"`

    // A value that indicates the source media provider of the AMI based on the
    // usage operation. Applicable for RDS Custom for SQL Server.
    DBEngineMediaType *string `type:"string"`

    // The ARN of the custom engine version.
    DBEngineVersionArn *string `type:"string"`

    // The description of the database engine version.
    DBEngineVersionDescription *string `type:"string"`

    // The name of the DB parameter group family for the database engine.
    DBParameterGroupFamily *string `type:"string"`

    // The name of the Amazon S3 bucket that contains your database installation
    // files.
    DatabaseInstallationFilesS3BucketName *string `type:"string"`

    // The Amazon S3 directory that contains the database installation files. If
    // not specified, then no prefix is assumed.
    DatabaseInstallationFilesS3Prefix *string `type:"string"`

    // The default character set for new instances of this engine version, if the
    // CharacterSetName parameter of the CreateDBInstance API isn't specified.
    DefaultCharacterSet *CharacterSet `type:"structure"`

    // The name of the database engine.
    Engine *string `type:"string"`

    // The version number of the database engine.
    EngineVersion *string `type:"string"`

    // The types of logs that the database engine has available for export to CloudWatch
    // Logs.
    ExportableLogTypes []*string `type:"list"`

    // The EC2 image
    Image *CustomDBEngineVersionAMI `type:"structure"`

    // The Amazon Web Services KMS key identifier for an encrypted CEV. This parameter
    // is required for RDS Custom, but optional for Amazon RDS.
    KMSKeyId *string `type:"string"`

    // The major engine version of the CEV.
    MajorEngineVersion *string `type:"string"`

    // The status of the DB engine version, either available or deprecated.
    Status *string `type:"string"`

    // A list of the supported CA certificate identifiers.
    //
    // For more information, see Using SSL/TLS to encrypt a connection to a DB instance
    // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html)
    // in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to
    // a DB cluster (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html)
    // in the Amazon Aurora User Guide.
    SupportedCACertificateIdentifiers []*string `type:"list"`

    // A list of the character sets supported by this engine for the CharacterSetName
    // parameter of the CreateDBInstance operation.
    SupportedCharacterSets []*CharacterSet `locationNameList:"CharacterSet" type:"list"`

    // A list of the supported DB engine modes.
    SupportedEngineModes []*string `type:"list"`

    // A list of features supported by the DB engine.
    //
    // The supported features vary by DB engine and DB engine version.
    //
    // To determine the supported features for a specific DB engine and DB engine
    // version using the CLI, use the following command:
    //
    // aws rds describe-db-engine-versions --engine <engine_name> --engine-version
    // <engine_version>
    //
    // For example, to determine the supported features for RDS for PostgreSQL version
    // 13.3 using the CLI, use the following command:
    //
    // aws rds describe-db-engine-versions --engine postgres --engine-version 13.3
    //
    // The supported features are listed under SupportedFeatureNames in the output.
    SupportedFeatureNames []*string `type:"list"`

    // A list of the character sets supported by the Oracle DB engine for the NcharCharacterSetName
    // parameter of the CreateDBInstance operation.
    SupportedNcharCharacterSets []*CharacterSet `locationNameList:"CharacterSet" type:"list"`

    // A list of the time zones supported by this engine for the Timezone parameter
    // of the CreateDBInstance action.
    SupportedTimezones []*Timezone `locationNameList:"Timezone" type:"list"`

    // Indicates whether the engine version supports Babelfish for Aurora PostgreSQL.
    SupportsBabelfish *bool `type:"boolean"`

    // Indicates whether the engine version supports rotating the server certificate
    // without rebooting the DB instance.
    SupportsCertificateRotationWithoutRestart *bool `type:"boolean"`

    // Indicates whether you can use Aurora global databases with a specific DB
    // engine version.
    SupportsGlobalDatabases *bool `type:"boolean"`

    // Indicates whether the DB engine version supports zero-ETL integrations with
    // Amazon Redshift.
    SupportsIntegrations *bool `type:"boolean"`

    // Indicates whether the DB engine version supports forwarding write operations
    // from reader DB instances to the writer DB instance in the DB cluster. By
    // default, write operations aren't allowed on reader DB instances.
    //
    // Valid for: Aurora DB clusters only
    SupportsLocalWriteForwarding *bool `type:"boolean"`

    // Indicates whether the engine version supports exporting the log types specified
    // by ExportableLogTypes to CloudWatch Logs.
    SupportsLogExportsToCloudwatchLogs *bool `type:"boolean"`

    // Indicates whether you can use Aurora parallel query with a specific DB engine
    // version.
    SupportsParallelQuery *bool `type:"boolean"`

    // Indicates whether the database engine version supports read replicas.
    SupportsReadReplica *bool `type:"boolean"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    TagList []*Tag `locationNameList:"Tag" type:"list"`

    // A list of engine versions that this database engine version can be upgraded
    // to.
    ValidUpgradeTarget []*UpgradeTarget `locationNameList:"UpgradeTarget" type:"list"`
    // contains filtered or unexported fields
}

This data type is used as a response element in the action DescribeDBEngineVersions.

func (DeleteCustomDBEngineVersionOutput) GoString

func (s DeleteCustomDBEngineVersionOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteCustomDBEngineVersionOutput) SetCreateTime

func (s *DeleteCustomDBEngineVersionOutput) SetCreateTime(v time.Time) *DeleteCustomDBEngineVersionOutput

SetCreateTime sets the CreateTime field's value.

func (*DeleteCustomDBEngineVersionOutput) SetCustomDBEngineVersionManifest

func (s *DeleteCustomDBEngineVersionOutput) SetCustomDBEngineVersionManifest(v string) *DeleteCustomDBEngineVersionOutput

SetCustomDBEngineVersionManifest sets the CustomDBEngineVersionManifest field's value.

func (*DeleteCustomDBEngineVersionOutput) SetDBEngineDescription

func (s *DeleteCustomDBEngineVersionOutput) SetDBEngineDescription(v string) *DeleteCustomDBEngineVersionOutput

SetDBEngineDescription sets the DBEngineDescription field's value.

func (*DeleteCustomDBEngineVersionOutput) SetDBEngineMediaType

func (s *DeleteCustomDBEngineVersionOutput) SetDBEngineMediaType(v string) *DeleteCustomDBEngineVersionOutput

SetDBEngineMediaType sets the DBEngineMediaType field's value.

func (*DeleteCustomDBEngineVersionOutput) SetDBEngineVersionArn

func (s *DeleteCustomDBEngineVersionOutput) SetDBEngineVersionArn(v string) *DeleteCustomDBEngineVersionOutput

SetDBEngineVersionArn sets the DBEngineVersionArn field's value.

func (*DeleteCustomDBEngineVersionOutput) SetDBEngineVersionDescription

func (s *DeleteCustomDBEngineVersionOutput) SetDBEngineVersionDescription(v string) *DeleteCustomDBEngineVersionOutput

SetDBEngineVersionDescription sets the DBEngineVersionDescription field's value.

func (*DeleteCustomDBEngineVersionOutput) SetDBParameterGroupFamily

func (s *DeleteCustomDBEngineVersionOutput) SetDBParameterGroupFamily(v string) *DeleteCustomDBEngineVersionOutput

SetDBParameterGroupFamily sets the DBParameterGroupFamily field's value.

func (*DeleteCustomDBEngineVersionOutput) SetDatabaseInstallationFilesS3BucketName

func (s *DeleteCustomDBEngineVersionOutput) SetDatabaseInstallationFilesS3BucketName(v string) *DeleteCustomDBEngineVersionOutput

SetDatabaseInstallationFilesS3BucketName sets the DatabaseInstallationFilesS3BucketName field's value.

func (*DeleteCustomDBEngineVersionOutput) SetDatabaseInstallationFilesS3Prefix

func (s *DeleteCustomDBEngineVersionOutput) SetDatabaseInstallationFilesS3Prefix(v string) *DeleteCustomDBEngineVersionOutput

SetDatabaseInstallationFilesS3Prefix sets the DatabaseInstallationFilesS3Prefix field's value.

func (*DeleteCustomDBEngineVersionOutput) SetDefaultCharacterSet

func (s *DeleteCustomDBEngineVersionOutput) SetDefaultCharacterSet(v *CharacterSet) *DeleteCustomDBEngineVersionOutput

SetDefaultCharacterSet sets the DefaultCharacterSet field's value.

func (*DeleteCustomDBEngineVersionOutput) SetEngine

func (s *DeleteCustomDBEngineVersionOutput) SetEngine(v string) *DeleteCustomDBEngineVersionOutput

SetEngine sets the Engine field's value.

func (*DeleteCustomDBEngineVersionOutput) SetEngineVersion

func (s *DeleteCustomDBEngineVersionOutput) SetEngineVersion(v string) *DeleteCustomDBEngineVersionOutput

SetEngineVersion sets the EngineVersion field's value.

func (*DeleteCustomDBEngineVersionOutput) SetExportableLogTypes

func (s *DeleteCustomDBEngineVersionOutput) SetExportableLogTypes(v []*string) *DeleteCustomDBEngineVersionOutput

SetExportableLogTypes sets the ExportableLogTypes field's value.

func (*DeleteCustomDBEngineVersionOutput) SetImage

func (s *DeleteCustomDBEngineVersionOutput) SetImage(v *CustomDBEngineVersionAMI) *DeleteCustomDBEngineVersionOutput

SetImage sets the Image field's value.

func (*DeleteCustomDBEngineVersionOutput) SetKMSKeyId

func (s *DeleteCustomDBEngineVersionOutput) SetKMSKeyId(v string) *DeleteCustomDBEngineVersionOutput

SetKMSKeyId sets the KMSKeyId field's value.

func (*DeleteCustomDBEngineVersionOutput) SetMajorEngineVersion

func (s *DeleteCustomDBEngineVersionOutput) SetMajorEngineVersion(v string) *DeleteCustomDBEngineVersionOutput

SetMajorEngineVersion sets the MajorEngineVersion field's value.

func (*DeleteCustomDBEngineVersionOutput) SetStatus

func (s *DeleteCustomDBEngineVersionOutput) SetStatus(v string) *DeleteCustomDBEngineVersionOutput

SetStatus sets the Status field's value.

func (*DeleteCustomDBEngineVersionOutput) SetSupportedCACertificateIdentifiers

func (s *DeleteCustomDBEngineVersionOutput) SetSupportedCACertificateIdentifiers(v []*string) *DeleteCustomDBEngineVersionOutput

SetSupportedCACertificateIdentifiers sets the SupportedCACertificateIdentifiers field's value.

func (*DeleteCustomDBEngineVersionOutput) SetSupportedCharacterSets

func (s *DeleteCustomDBEngineVersionOutput) SetSupportedCharacterSets(v []*CharacterSet) *DeleteCustomDBEngineVersionOutput

SetSupportedCharacterSets sets the SupportedCharacterSets field's value.

func (*DeleteCustomDBEngineVersionOutput) SetSupportedEngineModes

func (s *DeleteCustomDBEngineVersionOutput) SetSupportedEngineModes(v []*string) *DeleteCustomDBEngineVersionOutput

SetSupportedEngineModes sets the SupportedEngineModes field's value.

func (*DeleteCustomDBEngineVersionOutput) SetSupportedFeatureNames

func (s *DeleteCustomDBEngineVersionOutput) SetSupportedFeatureNames(v []*string) *DeleteCustomDBEngineVersionOutput

SetSupportedFeatureNames sets the SupportedFeatureNames field's value.

func (*DeleteCustomDBEngineVersionOutput) SetSupportedNcharCharacterSets

func (s *DeleteCustomDBEngineVersionOutput) SetSupportedNcharCharacterSets(v []*CharacterSet) *DeleteCustomDBEngineVersionOutput

SetSupportedNcharCharacterSets sets the SupportedNcharCharacterSets field's value.

func (*DeleteCustomDBEngineVersionOutput) SetSupportedTimezones

func (s *DeleteCustomDBEngineVersionOutput) SetSupportedTimezones(v []*Timezone) *DeleteCustomDBEngineVersionOutput

SetSupportedTimezones sets the SupportedTimezones field's value.

func (*DeleteCustomDBEngineVersionOutput) SetSupportsBabelfish

func (s *DeleteCustomDBEngineVersionOutput) SetSupportsBabelfish(v bool) *DeleteCustomDBEngineVersionOutput

SetSupportsBabelfish sets the SupportsBabelfish field's value.

func (*DeleteCustomDBEngineVersionOutput) SetSupportsCertificateRotationWithoutRestart

func (s *DeleteCustomDBEngineVersionOutput) SetSupportsCertificateRotationWithoutRestart(v bool) *DeleteCustomDBEngineVersionOutput

SetSupportsCertificateRotationWithoutRestart sets the SupportsCertificateRotationWithoutRestart field's value.

func (*DeleteCustomDBEngineVersionOutput) SetSupportsGlobalDatabases

func (s *DeleteCustomDBEngineVersionOutput) SetSupportsGlobalDatabases(v bool) *DeleteCustomDBEngineVersionOutput

SetSupportsGlobalDatabases sets the SupportsGlobalDatabases field's value.

func (*DeleteCustomDBEngineVersionOutput) SetSupportsIntegrations

func (s *DeleteCustomDBEngineVersionOutput) SetSupportsIntegrations(v bool) *DeleteCustomDBEngineVersionOutput

SetSupportsIntegrations sets the SupportsIntegrations field's value.

func (*DeleteCustomDBEngineVersionOutput) SetSupportsLocalWriteForwarding

func (s *DeleteCustomDBEngineVersionOutput) SetSupportsLocalWriteForwarding(v bool) *DeleteCustomDBEngineVersionOutput

SetSupportsLocalWriteForwarding sets the SupportsLocalWriteForwarding field's value.

func (*DeleteCustomDBEngineVersionOutput) SetSupportsLogExportsToCloudwatchLogs

func (s *DeleteCustomDBEngineVersionOutput) SetSupportsLogExportsToCloudwatchLogs(v bool) *DeleteCustomDBEngineVersionOutput

SetSupportsLogExportsToCloudwatchLogs sets the SupportsLogExportsToCloudwatchLogs field's value.

func (*DeleteCustomDBEngineVersionOutput) SetSupportsParallelQuery

func (s *DeleteCustomDBEngineVersionOutput) SetSupportsParallelQuery(v bool) *DeleteCustomDBEngineVersionOutput

SetSupportsParallelQuery sets the SupportsParallelQuery field's value.

func (*DeleteCustomDBEngineVersionOutput) SetSupportsReadReplica

func (s *DeleteCustomDBEngineVersionOutput) SetSupportsReadReplica(v bool) *DeleteCustomDBEngineVersionOutput

SetSupportsReadReplica sets the SupportsReadReplica field's value.

func (*DeleteCustomDBEngineVersionOutput) SetTagList

func (s *DeleteCustomDBEngineVersionOutput) SetTagList(v []*Tag) *DeleteCustomDBEngineVersionOutput

SetTagList sets the TagList field's value.

func (*DeleteCustomDBEngineVersionOutput) SetValidUpgradeTarget

func (s *DeleteCustomDBEngineVersionOutput) SetValidUpgradeTarget(v []*UpgradeTarget) *DeleteCustomDBEngineVersionOutput

SetValidUpgradeTarget sets the ValidUpgradeTarget field's value.

func (DeleteCustomDBEngineVersionOutput) String

func (s DeleteCustomDBEngineVersionOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteDBClusterAutomatedBackupInput

type DeleteDBClusterAutomatedBackupInput struct {

    // The identifier for the source DB cluster, which can't be changed and which
    // is unique to an Amazon Web Services Region.
    //
    // DbClusterResourceId is a required field
    DbClusterResourceId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteDBClusterAutomatedBackupInput) GoString

func (s DeleteDBClusterAutomatedBackupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBClusterAutomatedBackupInput) SetDbClusterResourceId

func (s *DeleteDBClusterAutomatedBackupInput) SetDbClusterResourceId(v string) *DeleteDBClusterAutomatedBackupInput

SetDbClusterResourceId sets the DbClusterResourceId field's value.

func (DeleteDBClusterAutomatedBackupInput) String

func (s DeleteDBClusterAutomatedBackupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBClusterAutomatedBackupInput) Validate

func (s *DeleteDBClusterAutomatedBackupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteDBClusterAutomatedBackupOutput

type DeleteDBClusterAutomatedBackupOutput struct {

    // An automated backup of a DB cluster. It consists of system backups, transaction
    // logs, and the database cluster properties that existed at the time you deleted
    // the source cluster.
    DBClusterAutomatedBackup *DBClusterAutomatedBackup `type:"structure"`
    // contains filtered or unexported fields
}

func (DeleteDBClusterAutomatedBackupOutput) GoString

func (s DeleteDBClusterAutomatedBackupOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBClusterAutomatedBackupOutput) SetDBClusterAutomatedBackup

func (s *DeleteDBClusterAutomatedBackupOutput) SetDBClusterAutomatedBackup(v *DBClusterAutomatedBackup) *DeleteDBClusterAutomatedBackupOutput

SetDBClusterAutomatedBackup sets the DBClusterAutomatedBackup field's value.

func (DeleteDBClusterAutomatedBackupOutput) String

func (s DeleteDBClusterAutomatedBackupOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteDBClusterEndpointInput

type DeleteDBClusterEndpointInput struct {

    // The identifier associated with the custom endpoint. This parameter is stored
    // as a lowercase string.
    //
    // DBClusterEndpointIdentifier is a required field
    DBClusterEndpointIdentifier *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteDBClusterEndpointInput) GoString

func (s DeleteDBClusterEndpointInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBClusterEndpointInput) SetDBClusterEndpointIdentifier

func (s *DeleteDBClusterEndpointInput) SetDBClusterEndpointIdentifier(v string) *DeleteDBClusterEndpointInput

SetDBClusterEndpointIdentifier sets the DBClusterEndpointIdentifier field's value.

func (DeleteDBClusterEndpointInput) String

func (s DeleteDBClusterEndpointInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBClusterEndpointInput) Validate

func (s *DeleteDBClusterEndpointInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteDBClusterEndpointOutput

type DeleteDBClusterEndpointOutput struct {

    // The type associated with a custom endpoint. One of: READER, WRITER, ANY.
    CustomEndpointType *string `type:"string"`

    // The Amazon Resource Name (ARN) for the endpoint.
    DBClusterEndpointArn *string `type:"string"`

    // The identifier associated with the endpoint. This parameter is stored as
    // a lowercase string.
    DBClusterEndpointIdentifier *string `type:"string"`

    // A unique system-generated identifier for an endpoint. It remains the same
    // for the whole life of the endpoint.
    DBClusterEndpointResourceIdentifier *string `type:"string"`

    // The DB cluster identifier of the DB cluster associated with the endpoint.
    // This parameter is stored as a lowercase string.
    DBClusterIdentifier *string `type:"string"`

    // The DNS address of the endpoint.
    Endpoint *string `type:"string"`

    // The type of the endpoint. One of: READER, WRITER, CUSTOM.
    EndpointType *string `type:"string"`

    // List of DB instance identifiers that aren't part of the custom endpoint group.
    // All other eligible instances are reachable through the custom endpoint. Only
    // relevant if the list of static members is empty.
    ExcludedMembers []*string `type:"list"`

    // List of DB instance identifiers that are part of the custom endpoint group.
    StaticMembers []*string `type:"list"`

    // The current status of the endpoint. One of: creating, available, deleting,
    // inactive, modifying. The inactive state applies to an endpoint that can't
    // be used for a certain kind of cluster, such as a writer endpoint for a read-only
    // secondary cluster in a global database.
    Status *string `type:"string"`
    // contains filtered or unexported fields
}

This data type represents the information you need to connect to an Amazon Aurora DB cluster. This data type is used as a response element in the following actions:

  • CreateDBClusterEndpoint

  • DescribeDBClusterEndpoints

  • ModifyDBClusterEndpoint

  • DeleteDBClusterEndpoint

For the data structure that represents Amazon RDS DB instance endpoints, see Endpoint.

func (DeleteDBClusterEndpointOutput) GoString

func (s DeleteDBClusterEndpointOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBClusterEndpointOutput) SetCustomEndpointType

func (s *DeleteDBClusterEndpointOutput) SetCustomEndpointType(v string) *DeleteDBClusterEndpointOutput

SetCustomEndpointType sets the CustomEndpointType field's value.

func (*DeleteDBClusterEndpointOutput) SetDBClusterEndpointArn

func (s *DeleteDBClusterEndpointOutput) SetDBClusterEndpointArn(v string) *DeleteDBClusterEndpointOutput

SetDBClusterEndpointArn sets the DBClusterEndpointArn field's value.

func (*DeleteDBClusterEndpointOutput) SetDBClusterEndpointIdentifier

func (s *DeleteDBClusterEndpointOutput) SetDBClusterEndpointIdentifier(v string) *DeleteDBClusterEndpointOutput

SetDBClusterEndpointIdentifier sets the DBClusterEndpointIdentifier field's value.

func (*DeleteDBClusterEndpointOutput) SetDBClusterEndpointResourceIdentifier

func (s *DeleteDBClusterEndpointOutput) SetDBClusterEndpointResourceIdentifier(v string) *DeleteDBClusterEndpointOutput

SetDBClusterEndpointResourceIdentifier sets the DBClusterEndpointResourceIdentifier field's value.

func (*DeleteDBClusterEndpointOutput) SetDBClusterIdentifier

func (s *DeleteDBClusterEndpointOutput) SetDBClusterIdentifier(v string) *DeleteDBClusterEndpointOutput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*DeleteDBClusterEndpointOutput) SetEndpoint

func (s *DeleteDBClusterEndpointOutput) SetEndpoint(v string) *DeleteDBClusterEndpointOutput

SetEndpoint sets the Endpoint field's value.

func (*DeleteDBClusterEndpointOutput) SetEndpointType

func (s *DeleteDBClusterEndpointOutput) SetEndpointType(v string) *DeleteDBClusterEndpointOutput

SetEndpointType sets the EndpointType field's value.

func (*DeleteDBClusterEndpointOutput) SetExcludedMembers

func (s *DeleteDBClusterEndpointOutput) SetExcludedMembers(v []*string) *DeleteDBClusterEndpointOutput

SetExcludedMembers sets the ExcludedMembers field's value.

func (*DeleteDBClusterEndpointOutput) SetStaticMembers

func (s *DeleteDBClusterEndpointOutput) SetStaticMembers(v []*string) *DeleteDBClusterEndpointOutput

SetStaticMembers sets the StaticMembers field's value.

func (*DeleteDBClusterEndpointOutput) SetStatus

func (s *DeleteDBClusterEndpointOutput) SetStatus(v string) *DeleteDBClusterEndpointOutput

SetStatus sets the Status field's value.

func (DeleteDBClusterEndpointOutput) String

func (s DeleteDBClusterEndpointOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteDBClusterInput

type DeleteDBClusterInput struct {

    // The DB cluster identifier for the DB cluster to be deleted. This parameter
    // isn't case-sensitive.
    //
    // Constraints:
    //
    //    * Must match an existing DBClusterIdentifier.
    //
    // DBClusterIdentifier is a required field
    DBClusterIdentifier *string `type:"string" required:"true"`

    // Specifies whether to remove automated backups immediately after the DB cluster
    // is deleted. This parameter isn't case-sensitive. The default is to remove
    // automated backups immediately after the DB cluster is deleted.
    DeleteAutomatedBackups *bool `type:"boolean"`

    // The DB cluster snapshot identifier of the new DB cluster snapshot created
    // when SkipFinalSnapshot is disabled.
    //
    // Specifying this parameter and also skipping the creation of a final DB cluster
    // snapshot with the SkipFinalShapshot parameter results in an error.
    //
    // Constraints:
    //
    //    * Must be 1 to 255 letters, numbers, or hyphens.
    //
    //    * First character must be a letter
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens
    FinalDBSnapshotIdentifier *string `type:"string"`

    // Specifies whether to skip the creation of a final DB cluster snapshot before
    // the DB cluster is deleted. If skip is specified, no DB cluster snapshot is
    // created. If skip isn't specified, a DB cluster snapshot is created before
    // the DB cluster is deleted. By default, skip isn't specified, and the DB cluster
    // snapshot is created. By default, this parameter is disabled.
    //
    // You must specify a FinalDBSnapshotIdentifier parameter if SkipFinalSnapshot
    // is disabled.
    SkipFinalSnapshot *bool `type:"boolean"`
    // contains filtered or unexported fields
}

func (DeleteDBClusterInput) GoString

func (s DeleteDBClusterInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBClusterInput) SetDBClusterIdentifier

func (s *DeleteDBClusterInput) SetDBClusterIdentifier(v string) *DeleteDBClusterInput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*DeleteDBClusterInput) SetDeleteAutomatedBackups

func (s *DeleteDBClusterInput) SetDeleteAutomatedBackups(v bool) *DeleteDBClusterInput

SetDeleteAutomatedBackups sets the DeleteAutomatedBackups field's value.

func (*DeleteDBClusterInput) SetFinalDBSnapshotIdentifier

func (s *DeleteDBClusterInput) SetFinalDBSnapshotIdentifier(v string) *DeleteDBClusterInput

SetFinalDBSnapshotIdentifier sets the FinalDBSnapshotIdentifier field's value.

func (*DeleteDBClusterInput) SetSkipFinalSnapshot

func (s *DeleteDBClusterInput) SetSkipFinalSnapshot(v bool) *DeleteDBClusterInput

SetSkipFinalSnapshot sets the SkipFinalSnapshot field's value.

func (DeleteDBClusterInput) String

func (s DeleteDBClusterInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBClusterInput) Validate

func (s *DeleteDBClusterInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteDBClusterOutput

type DeleteDBClusterOutput struct {

    // Contains the details of an Amazon Aurora DB cluster or Multi-AZ DB cluster.
    //
    // For an Amazon Aurora DB cluster, this data type is used as a response element
    // in the operations CreateDBCluster, DeleteDBCluster, DescribeDBClusters, FailoverDBCluster,
    // ModifyDBCluster, PromoteReadReplicaDBCluster, RestoreDBClusterFromS3, RestoreDBClusterFromSnapshot,
    // RestoreDBClusterToPointInTime, StartDBCluster, and StopDBCluster.
    //
    // For a Multi-AZ DB cluster, this data type is used as a response element in
    // the operations CreateDBCluster, DeleteDBCluster, DescribeDBClusters, FailoverDBCluster,
    // ModifyDBCluster, RebootDBCluster, RestoreDBClusterFromSnapshot, and RestoreDBClusterToPointInTime.
    //
    // For more information on Amazon Aurora DB clusters, see What is Amazon Aurora?
    // (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html)
    // in the Amazon Aurora User Guide.
    //
    // For more information on Multi-AZ DB clusters, see Multi-AZ deployments with
    // two readable standby DB instances (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html)
    // in the Amazon RDS User Guide.
    DBCluster *DBCluster `type:"structure"`
    // contains filtered or unexported fields
}

func (DeleteDBClusterOutput) GoString

func (s DeleteDBClusterOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBClusterOutput) SetDBCluster

func (s *DeleteDBClusterOutput) SetDBCluster(v *DBCluster) *DeleteDBClusterOutput

SetDBCluster sets the DBCluster field's value.

func (DeleteDBClusterOutput) String

func (s DeleteDBClusterOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteDBClusterParameterGroupInput

type DeleteDBClusterParameterGroupInput struct {

    // The name of the DB cluster parameter group.
    //
    // Constraints:
    //
    //    * Must be the name of an existing DB cluster parameter group.
    //
    //    * You can't delete a default DB cluster parameter group.
    //
    //    * Can't be associated with any DB clusters.
    //
    // DBClusterParameterGroupName is a required field
    DBClusterParameterGroupName *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteDBClusterParameterGroupInput) GoString

func (s DeleteDBClusterParameterGroupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBClusterParameterGroupInput) SetDBClusterParameterGroupName

func (s *DeleteDBClusterParameterGroupInput) SetDBClusterParameterGroupName(v string) *DeleteDBClusterParameterGroupInput

SetDBClusterParameterGroupName sets the DBClusterParameterGroupName field's value.

func (DeleteDBClusterParameterGroupInput) String

func (s DeleteDBClusterParameterGroupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBClusterParameterGroupInput) Validate

func (s *DeleteDBClusterParameterGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteDBClusterParameterGroupOutput

type DeleteDBClusterParameterGroupOutput struct {
    // contains filtered or unexported fields
}

func (DeleteDBClusterParameterGroupOutput) GoString

func (s DeleteDBClusterParameterGroupOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DeleteDBClusterParameterGroupOutput) String

func (s DeleteDBClusterParameterGroupOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteDBClusterSnapshotInput

type DeleteDBClusterSnapshotInput struct {

    // The identifier of the DB cluster snapshot to delete.
    //
    // Constraints: Must be the name of an existing DB cluster snapshot in the available
    // state.
    //
    // DBClusterSnapshotIdentifier is a required field
    DBClusterSnapshotIdentifier *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteDBClusterSnapshotInput) GoString

func (s DeleteDBClusterSnapshotInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBClusterSnapshotInput) SetDBClusterSnapshotIdentifier

func (s *DeleteDBClusterSnapshotInput) SetDBClusterSnapshotIdentifier(v string) *DeleteDBClusterSnapshotInput

SetDBClusterSnapshotIdentifier sets the DBClusterSnapshotIdentifier field's value.

func (DeleteDBClusterSnapshotInput) String

func (s DeleteDBClusterSnapshotInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBClusterSnapshotInput) Validate

func (s *DeleteDBClusterSnapshotInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteDBClusterSnapshotOutput

type DeleteDBClusterSnapshotOutput struct {

    // Contains the details for an Amazon RDS DB cluster snapshot
    //
    // This data type is used as a response element in the DescribeDBClusterSnapshots
    // action.
    DBClusterSnapshot *DBClusterSnapshot `type:"structure"`
    // contains filtered or unexported fields
}

func (DeleteDBClusterSnapshotOutput) GoString

func (s DeleteDBClusterSnapshotOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBClusterSnapshotOutput) SetDBClusterSnapshot

func (s *DeleteDBClusterSnapshotOutput) SetDBClusterSnapshot(v *DBClusterSnapshot) *DeleteDBClusterSnapshotOutput

SetDBClusterSnapshot sets the DBClusterSnapshot field's value.

func (DeleteDBClusterSnapshotOutput) String

func (s DeleteDBClusterSnapshotOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteDBInstanceAutomatedBackupInput

type DeleteDBInstanceAutomatedBackupInput struct {

    // The Amazon Resource Name (ARN) of the automated backups to delete, for example,
    // arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE.
    //
    // This setting doesn't apply to RDS Custom.
    DBInstanceAutomatedBackupsArn *string `type:"string"`

    // The identifier for the source DB instance, which can't be changed and which
    // is unique to an Amazon Web Services Region.
    DbiResourceId *string `type:"string"`
    // contains filtered or unexported fields
}

Parameter input for the DeleteDBInstanceAutomatedBackup operation.

func (DeleteDBInstanceAutomatedBackupInput) GoString

func (s DeleteDBInstanceAutomatedBackupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBInstanceAutomatedBackupInput) SetDBInstanceAutomatedBackupsArn

func (s *DeleteDBInstanceAutomatedBackupInput) SetDBInstanceAutomatedBackupsArn(v string) *DeleteDBInstanceAutomatedBackupInput

SetDBInstanceAutomatedBackupsArn sets the DBInstanceAutomatedBackupsArn field's value.

func (*DeleteDBInstanceAutomatedBackupInput) SetDbiResourceId

func (s *DeleteDBInstanceAutomatedBackupInput) SetDbiResourceId(v string) *DeleteDBInstanceAutomatedBackupInput

SetDbiResourceId sets the DbiResourceId field's value.

func (DeleteDBInstanceAutomatedBackupInput) String

func (s DeleteDBInstanceAutomatedBackupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteDBInstanceAutomatedBackupOutput

type DeleteDBInstanceAutomatedBackupOutput struct {

    // An automated backup of a DB instance. It consists of system backups, transaction
    // logs, and the database instance properties that existed at the time you deleted
    // the source instance.
    DBInstanceAutomatedBackup *DBInstanceAutomatedBackup `type:"structure"`
    // contains filtered or unexported fields
}

func (DeleteDBInstanceAutomatedBackupOutput) GoString

func (s DeleteDBInstanceAutomatedBackupOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBInstanceAutomatedBackupOutput) SetDBInstanceAutomatedBackup

func (s *DeleteDBInstanceAutomatedBackupOutput) SetDBInstanceAutomatedBackup(v *DBInstanceAutomatedBackup) *DeleteDBInstanceAutomatedBackupOutput

SetDBInstanceAutomatedBackup sets the DBInstanceAutomatedBackup field's value.

func (DeleteDBInstanceAutomatedBackupOutput) String

func (s DeleteDBInstanceAutomatedBackupOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteDBInstanceInput

type DeleteDBInstanceInput struct {

    // The DB instance identifier for the DB instance to be deleted. This parameter
    // isn't case-sensitive.
    //
    // Constraints:
    //
    //    * Must match the name of an existing DB instance.
    //
    // DBInstanceIdentifier is a required field
    DBInstanceIdentifier *string `type:"string" required:"true"`

    // Specifies whether to remove automated backups immediately after the DB instance
    // is deleted. This parameter isn't case-sensitive. The default is to remove
    // automated backups immediately after the DB instance is deleted.
    DeleteAutomatedBackups *bool `type:"boolean"`

    // The DBSnapshotIdentifier of the new DBSnapshot created when the SkipFinalSnapshot
    // parameter is disabled.
    //
    // If you enable this parameter and also enable SkipFinalShapshot, the command
    // results in an error.
    //
    // This setting doesn't apply to RDS Custom.
    //
    // Constraints:
    //
    //    * Must be 1 to 255 letters or numbers.
    //
    //    * First character must be a letter.
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens.
    //
    //    * Can't be specified when deleting a read replica.
    FinalDBSnapshotIdentifier *string `type:"string"`

    // Specifies whether to skip the creation of a final DB snapshot before deleting
    // the instance. If you enable this parameter, RDS doesn't create a DB snapshot.
    // If you don't enable this parameter, RDS creates a DB snapshot before the
    // DB instance is deleted. By default, skip isn't enabled, and the DB snapshot
    // is created.
    //
    // If you don't enable this parameter, you must specify the FinalDBSnapshotIdentifier
    // parameter.
    //
    // When a DB instance is in a failure state and has a status of failed, incompatible-restore,
    // or incompatible-network, RDS can delete the instance only if you enable this
    // parameter.
    //
    // If you delete a read replica or an RDS Custom instance, you must enable this
    // setting.
    //
    // This setting is required for RDS Custom.
    SkipFinalSnapshot *bool `type:"boolean"`
    // contains filtered or unexported fields
}

func (DeleteDBInstanceInput) GoString

func (s DeleteDBInstanceInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBInstanceInput) SetDBInstanceIdentifier

func (s *DeleteDBInstanceInput) SetDBInstanceIdentifier(v string) *DeleteDBInstanceInput

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*DeleteDBInstanceInput) SetDeleteAutomatedBackups

func (s *DeleteDBInstanceInput) SetDeleteAutomatedBackups(v bool) *DeleteDBInstanceInput

SetDeleteAutomatedBackups sets the DeleteAutomatedBackups field's value.

func (*DeleteDBInstanceInput) SetFinalDBSnapshotIdentifier

func (s *DeleteDBInstanceInput) SetFinalDBSnapshotIdentifier(v string) *DeleteDBInstanceInput

SetFinalDBSnapshotIdentifier sets the FinalDBSnapshotIdentifier field's value.

func (*DeleteDBInstanceInput) SetSkipFinalSnapshot

func (s *DeleteDBInstanceInput) SetSkipFinalSnapshot(v bool) *DeleteDBInstanceInput

SetSkipFinalSnapshot sets the SkipFinalSnapshot field's value.

func (DeleteDBInstanceInput) String

func (s DeleteDBInstanceInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBInstanceInput) Validate

func (s *DeleteDBInstanceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteDBInstanceOutput

type DeleteDBInstanceOutput struct {

    // Contains the details of an Amazon RDS DB instance.
    //
    // This data type is used as a response element in the operations CreateDBInstance,
    // CreateDBInstanceReadReplica, DeleteDBInstance, DescribeDBInstances, ModifyDBInstance,
    // PromoteReadReplica, RebootDBInstance, RestoreDBInstanceFromDBSnapshot, RestoreDBInstanceFromS3,
    // RestoreDBInstanceToPointInTime, StartDBInstance, and StopDBInstance.
    DBInstance *DBInstance `type:"structure"`
    // contains filtered or unexported fields
}

func (DeleteDBInstanceOutput) GoString

func (s DeleteDBInstanceOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBInstanceOutput) SetDBInstance

func (s *DeleteDBInstanceOutput) SetDBInstance(v *DBInstance) *DeleteDBInstanceOutput

SetDBInstance sets the DBInstance field's value.

func (DeleteDBInstanceOutput) String

func (s DeleteDBInstanceOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteDBParameterGroupInput

type DeleteDBParameterGroupInput struct {

    // The name of the DB parameter group.
    //
    // Constraints:
    //
    //    * Must be the name of an existing DB parameter group
    //
    //    * You can't delete a default DB parameter group
    //
    //    * Can't be associated with any DB instances
    //
    // DBParameterGroupName is a required field
    DBParameterGroupName *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteDBParameterGroupInput) GoString

func (s DeleteDBParameterGroupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBParameterGroupInput) SetDBParameterGroupName

func (s *DeleteDBParameterGroupInput) SetDBParameterGroupName(v string) *DeleteDBParameterGroupInput

SetDBParameterGroupName sets the DBParameterGroupName field's value.

func (DeleteDBParameterGroupInput) String

func (s DeleteDBParameterGroupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBParameterGroupInput) Validate

func (s *DeleteDBParameterGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteDBParameterGroupOutput

type DeleteDBParameterGroupOutput struct {
    // contains filtered or unexported fields
}

func (DeleteDBParameterGroupOutput) GoString

func (s DeleteDBParameterGroupOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DeleteDBParameterGroupOutput) String

func (s DeleteDBParameterGroupOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteDBProxyEndpointInput

type DeleteDBProxyEndpointInput struct {

    // The name of the DB proxy endpoint to delete.
    //
    // DBProxyEndpointName is a required field
    DBProxyEndpointName *string `min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteDBProxyEndpointInput) GoString

func (s DeleteDBProxyEndpointInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBProxyEndpointInput) SetDBProxyEndpointName

func (s *DeleteDBProxyEndpointInput) SetDBProxyEndpointName(v string) *DeleteDBProxyEndpointInput

SetDBProxyEndpointName sets the DBProxyEndpointName field's value.

func (DeleteDBProxyEndpointInput) String

func (s DeleteDBProxyEndpointInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBProxyEndpointInput) Validate

func (s *DeleteDBProxyEndpointInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteDBProxyEndpointOutput

type DeleteDBProxyEndpointOutput struct {

    // The data structure representing the details of the DB proxy endpoint that
    // you delete.
    DBProxyEndpoint *DBProxyEndpoint `type:"structure"`
    // contains filtered or unexported fields
}

func (DeleteDBProxyEndpointOutput) GoString

func (s DeleteDBProxyEndpointOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBProxyEndpointOutput) SetDBProxyEndpoint

func (s *DeleteDBProxyEndpointOutput) SetDBProxyEndpoint(v *DBProxyEndpoint) *DeleteDBProxyEndpointOutput

SetDBProxyEndpoint sets the DBProxyEndpoint field's value.

func (DeleteDBProxyEndpointOutput) String

func (s DeleteDBProxyEndpointOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteDBProxyInput

type DeleteDBProxyInput struct {

    // The name of the DB proxy to delete.
    //
    // DBProxyName is a required field
    DBProxyName *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteDBProxyInput) GoString

func (s DeleteDBProxyInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBProxyInput) SetDBProxyName

func (s *DeleteDBProxyInput) SetDBProxyName(v string) *DeleteDBProxyInput

SetDBProxyName sets the DBProxyName field's value.

func (DeleteDBProxyInput) String

func (s DeleteDBProxyInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBProxyInput) Validate

func (s *DeleteDBProxyInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteDBProxyOutput

type DeleteDBProxyOutput struct {

    // The data structure representing the details of the DB proxy that you delete.
    DBProxy *DBProxy `type:"structure"`
    // contains filtered or unexported fields
}

func (DeleteDBProxyOutput) GoString

func (s DeleteDBProxyOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBProxyOutput) SetDBProxy

func (s *DeleteDBProxyOutput) SetDBProxy(v *DBProxy) *DeleteDBProxyOutput

SetDBProxy sets the DBProxy field's value.

func (DeleteDBProxyOutput) String

func (s DeleteDBProxyOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteDBSecurityGroupInput

type DeleteDBSecurityGroupInput struct {

    // The name of the DB security group to delete.
    //
    // You can't delete the default DB security group.
    //
    // Constraints:
    //
    //    * Must be 1 to 255 letters, numbers, or hyphens.
    //
    //    * First character must be a letter
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens
    //
    //    * Must not be "Default"
    //
    // DBSecurityGroupName is a required field
    DBSecurityGroupName *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteDBSecurityGroupInput) GoString

func (s DeleteDBSecurityGroupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBSecurityGroupInput) SetDBSecurityGroupName

func (s *DeleteDBSecurityGroupInput) SetDBSecurityGroupName(v string) *DeleteDBSecurityGroupInput

SetDBSecurityGroupName sets the DBSecurityGroupName field's value.

func (DeleteDBSecurityGroupInput) String

func (s DeleteDBSecurityGroupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBSecurityGroupInput) Validate

func (s *DeleteDBSecurityGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteDBSecurityGroupOutput

type DeleteDBSecurityGroupOutput struct {
    // contains filtered or unexported fields
}

func (DeleteDBSecurityGroupOutput) GoString

func (s DeleteDBSecurityGroupOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DeleteDBSecurityGroupOutput) String

func (s DeleteDBSecurityGroupOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteDBShardGroupInput

type DeleteDBShardGroupInput struct {

    // Teh name of the DB shard group to delete.
    //
    // DBShardGroupIdentifier is a required field
    DBShardGroupIdentifier *string `min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteDBShardGroupInput) GoString

func (s DeleteDBShardGroupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBShardGroupInput) SetDBShardGroupIdentifier

func (s *DeleteDBShardGroupInput) SetDBShardGroupIdentifier(v string) *DeleteDBShardGroupInput

SetDBShardGroupIdentifier sets the DBShardGroupIdentifier field's value.

func (DeleteDBShardGroupInput) String

func (s DeleteDBShardGroupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBShardGroupInput) Validate

func (s *DeleteDBShardGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteDBShardGroupOutput

type DeleteDBShardGroupOutput struct {

    // Specifies whether to create standby instances for the DB shard group. Valid
    // values are the following:
    //
    //    * 0 - Creates a single, primary DB instance for each physical shard. This
    //    is the default value, and the only one supported for the preview.
    //
    //    * 1 - Creates a primary DB instance and a standby instance in a different
    //    Availability Zone (AZ) for each physical shard.
    //
    //    * 2 - Creates a primary DB instance and two standby instances in different
    //    AZs for each physical shard.
    ComputeRedundancy *int64 `type:"integer"`

    // The name of the primary DB cluster for the DB shard group.
    DBClusterIdentifier *string `type:"string"`

    // The name of the DB shard group.
    DBShardGroupIdentifier *string `min:"1" type:"string"`

    // The Amazon Web Services Region-unique, immutable identifier for the DB shard
    // group.
    DBShardGroupResourceId *string `type:"string"`

    // The connection endpoint for the DB shard group.
    Endpoint *string `type:"string"`

    // The maximum capacity of the DB shard group in Aurora capacity units (ACUs).
    MaxACU *float64 `type:"double"`

    // Indicates whether the DB shard group is publicly accessible.
    //
    // When the DB shard group is publicly accessible, its Domain Name System (DNS)
    // endpoint resolves to the private IP address from within the DB shard group's
    // virtual private cloud (VPC). It resolves to the public IP address from outside
    // of the DB shard group's VPC. Access to the DB shard group is ultimately controlled
    // by the security group it uses. That public access isn't permitted if the
    // security group assigned to the DB shard group doesn't permit it.
    //
    // When the DB shard group isn't publicly accessible, it is an internal DB shard
    // group with a DNS name that resolves to a private IP address.
    //
    // For more information, see CreateDBShardGroup.
    //
    // This setting is only for Aurora Limitless Database.
    PubliclyAccessible *bool `type:"boolean"`

    // The status of the DB shard group.
    Status *string `type:"string"`
    // contains filtered or unexported fields
}

func (DeleteDBShardGroupOutput) GoString

func (s DeleteDBShardGroupOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBShardGroupOutput) SetComputeRedundancy

func (s *DeleteDBShardGroupOutput) SetComputeRedundancy(v int64) *DeleteDBShardGroupOutput

SetComputeRedundancy sets the ComputeRedundancy field's value.

func (*DeleteDBShardGroupOutput) SetDBClusterIdentifier

func (s *DeleteDBShardGroupOutput) SetDBClusterIdentifier(v string) *DeleteDBShardGroupOutput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*DeleteDBShardGroupOutput) SetDBShardGroupIdentifier

func (s *DeleteDBShardGroupOutput) SetDBShardGroupIdentifier(v string) *DeleteDBShardGroupOutput

SetDBShardGroupIdentifier sets the DBShardGroupIdentifier field's value.

func (*DeleteDBShardGroupOutput) SetDBShardGroupResourceId

func (s *DeleteDBShardGroupOutput) SetDBShardGroupResourceId(v string) *DeleteDBShardGroupOutput

SetDBShardGroupResourceId sets the DBShardGroupResourceId field's value.

func (*DeleteDBShardGroupOutput) SetEndpoint

func (s *DeleteDBShardGroupOutput) SetEndpoint(v string) *DeleteDBShardGroupOutput

SetEndpoint sets the Endpoint field's value.

func (*DeleteDBShardGroupOutput) SetMaxACU

func (s *DeleteDBShardGroupOutput) SetMaxACU(v float64) *DeleteDBShardGroupOutput

SetMaxACU sets the MaxACU field's value.

func (*DeleteDBShardGroupOutput) SetPubliclyAccessible

func (s *DeleteDBShardGroupOutput) SetPubliclyAccessible(v bool) *DeleteDBShardGroupOutput

SetPubliclyAccessible sets the PubliclyAccessible field's value.

func (*DeleteDBShardGroupOutput) SetStatus

func (s *DeleteDBShardGroupOutput) SetStatus(v string) *DeleteDBShardGroupOutput

SetStatus sets the Status field's value.

func (DeleteDBShardGroupOutput) String

func (s DeleteDBShardGroupOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteDBSnapshotInput

type DeleteDBSnapshotInput struct {

    // The DB snapshot identifier.
    //
    // Constraints: Must be the name of an existing DB snapshot in the available
    // state.
    //
    // DBSnapshotIdentifier is a required field
    DBSnapshotIdentifier *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteDBSnapshotInput) GoString

func (s DeleteDBSnapshotInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBSnapshotInput) SetDBSnapshotIdentifier

func (s *DeleteDBSnapshotInput) SetDBSnapshotIdentifier(v string) *DeleteDBSnapshotInput

SetDBSnapshotIdentifier sets the DBSnapshotIdentifier field's value.

func (DeleteDBSnapshotInput) String

func (s DeleteDBSnapshotInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBSnapshotInput) Validate

func (s *DeleteDBSnapshotInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteDBSnapshotOutput

type DeleteDBSnapshotOutput struct {

    // Contains the details of an Amazon RDS DB snapshot.
    //
    // This data type is used as a response element in the DescribeDBSnapshots action.
    DBSnapshot *DBSnapshot `type:"structure"`
    // contains filtered or unexported fields
}

func (DeleteDBSnapshotOutput) GoString

func (s DeleteDBSnapshotOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBSnapshotOutput) SetDBSnapshot

func (s *DeleteDBSnapshotOutput) SetDBSnapshot(v *DBSnapshot) *DeleteDBSnapshotOutput

SetDBSnapshot sets the DBSnapshot field's value.

func (DeleteDBSnapshotOutput) String

func (s DeleteDBSnapshotOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteDBSubnetGroupInput

type DeleteDBSubnetGroupInput struct {

    // The name of the database subnet group to delete.
    //
    // You can't delete the default subnet group.
    //
    // Constraints: Must match the name of an existing DBSubnetGroup. Must not be
    // default.
    //
    // Example: mydbsubnetgroup
    //
    // DBSubnetGroupName is a required field
    DBSubnetGroupName *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteDBSubnetGroupInput) GoString

func (s DeleteDBSubnetGroupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBSubnetGroupInput) SetDBSubnetGroupName

func (s *DeleteDBSubnetGroupInput) SetDBSubnetGroupName(v string) *DeleteDBSubnetGroupInput

SetDBSubnetGroupName sets the DBSubnetGroupName field's value.

func (DeleteDBSubnetGroupInput) String

func (s DeleteDBSubnetGroupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDBSubnetGroupInput) Validate

func (s *DeleteDBSubnetGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteDBSubnetGroupOutput

type DeleteDBSubnetGroupOutput struct {
    // contains filtered or unexported fields
}

func (DeleteDBSubnetGroupOutput) GoString

func (s DeleteDBSubnetGroupOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DeleteDBSubnetGroupOutput) String

func (s DeleteDBSubnetGroupOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteEventSubscriptionInput

type DeleteEventSubscriptionInput struct {

    // The name of the RDS event notification subscription you want to delete.
    //
    // SubscriptionName is a required field
    SubscriptionName *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteEventSubscriptionInput) GoString

func (s DeleteEventSubscriptionInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteEventSubscriptionInput) SetSubscriptionName

func (s *DeleteEventSubscriptionInput) SetSubscriptionName(v string) *DeleteEventSubscriptionInput

SetSubscriptionName sets the SubscriptionName field's value.

func (DeleteEventSubscriptionInput) String

func (s DeleteEventSubscriptionInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteEventSubscriptionInput) Validate

func (s *DeleteEventSubscriptionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteEventSubscriptionOutput

type DeleteEventSubscriptionOutput struct {

    // Contains the results of a successful invocation of the DescribeEventSubscriptions
    // action.
    EventSubscription *EventSubscription `type:"structure"`
    // contains filtered or unexported fields
}

func (DeleteEventSubscriptionOutput) GoString

func (s DeleteEventSubscriptionOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteEventSubscriptionOutput) SetEventSubscription

func (s *DeleteEventSubscriptionOutput) SetEventSubscription(v *EventSubscription) *DeleteEventSubscriptionOutput

SetEventSubscription sets the EventSubscription field's value.

func (DeleteEventSubscriptionOutput) String

func (s DeleteEventSubscriptionOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteGlobalClusterInput

type DeleteGlobalClusterInput struct {

    // The cluster identifier of the global database cluster being deleted.
    //
    // GlobalClusterIdentifier is a required field
    GlobalClusterIdentifier *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteGlobalClusterInput) GoString

func (s DeleteGlobalClusterInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteGlobalClusterInput) SetGlobalClusterIdentifier

func (s *DeleteGlobalClusterInput) SetGlobalClusterIdentifier(v string) *DeleteGlobalClusterInput

SetGlobalClusterIdentifier sets the GlobalClusterIdentifier field's value.

func (DeleteGlobalClusterInput) String

func (s DeleteGlobalClusterInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteGlobalClusterInput) Validate

func (s *DeleteGlobalClusterInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteGlobalClusterOutput

type DeleteGlobalClusterOutput struct {

    // A data type representing an Aurora global database.
    GlobalCluster *GlobalCluster `type:"structure"`
    // contains filtered or unexported fields
}

func (DeleteGlobalClusterOutput) GoString

func (s DeleteGlobalClusterOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteGlobalClusterOutput) SetGlobalCluster

func (s *DeleteGlobalClusterOutput) SetGlobalCluster(v *GlobalCluster) *DeleteGlobalClusterOutput

SetGlobalCluster sets the GlobalCluster field's value.

func (DeleteGlobalClusterOutput) String

func (s DeleteGlobalClusterOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteIntegrationInput

type DeleteIntegrationInput struct {

    // The unique identifier of the integration.
    //
    // IntegrationIdentifier is a required field
    IntegrationIdentifier *string `min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteIntegrationInput) GoString

func (s DeleteIntegrationInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteIntegrationInput) SetIntegrationIdentifier

func (s *DeleteIntegrationInput) SetIntegrationIdentifier(v string) *DeleteIntegrationInput

SetIntegrationIdentifier sets the IntegrationIdentifier field's value.

func (DeleteIntegrationInput) String

func (s DeleteIntegrationInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteIntegrationInput) Validate

func (s *DeleteIntegrationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteIntegrationOutput

type DeleteIntegrationOutput struct {

    // The encryption context for the integration. For more information, see Encryption
    // context (https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context)
    // in the Amazon Web Services Key Management Service Developer Guide.
    AdditionalEncryptionContext map[string]*string `type:"map"`

    // The time when the integration was created, in Universal Coordinated Time
    // (UTC).
    CreateTime *time.Time `type:"timestamp"`

    // Data filters for the integration. These filters determine which tables from
    // the source database are sent to the target Amazon Redshift data warehouse.
    DataFilter *string `min:"1" type:"string"`

    // A description of the integration.
    Description *string `type:"string"`

    // Any errors associated with the integration.
    Errors []*IntegrationError `locationNameList:"IntegrationError" type:"list"`

    // The ARN of the integration.
    IntegrationArn *string `min:"1" type:"string"`

    // The name of the integration.
    IntegrationName *string `min:"1" type:"string"`

    // The Amazon Web Services Key Management System (Amazon Web Services KMS) key
    // identifier for the key used to to encrypt the integration.
    KMSKeyId *string `type:"string"`

    // The Amazon Resource Name (ARN) of the database used as the source for replication.
    SourceArn *string `min:"1" type:"string"`

    // The current status of the integration.
    Status *string `type:"string" enum:"IntegrationStatus"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    Tags []*Tag `locationNameList:"Tag" type:"list"`

    // The ARN of the Redshift data warehouse used as the target for replication.
    TargetArn *string `min:"20" type:"string"`
    // contains filtered or unexported fields
}

A zero-ETL integration with Amazon Redshift.

func (DeleteIntegrationOutput) GoString

func (s DeleteIntegrationOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteIntegrationOutput) SetAdditionalEncryptionContext

func (s *DeleteIntegrationOutput) SetAdditionalEncryptionContext(v map[string]*string) *DeleteIntegrationOutput

SetAdditionalEncryptionContext sets the AdditionalEncryptionContext field's value.

func (*DeleteIntegrationOutput) SetCreateTime

func (s *DeleteIntegrationOutput) SetCreateTime(v time.Time) *DeleteIntegrationOutput

SetCreateTime sets the CreateTime field's value.

func (*DeleteIntegrationOutput) SetDataFilter

func (s *DeleteIntegrationOutput) SetDataFilter(v string) *DeleteIntegrationOutput

SetDataFilter sets the DataFilter field's value.

func (*DeleteIntegrationOutput) SetDescription

func (s *DeleteIntegrationOutput) SetDescription(v string) *DeleteIntegrationOutput

SetDescription sets the Description field's value.

func (*DeleteIntegrationOutput) SetErrors

func (s *DeleteIntegrationOutput) SetErrors(v []*IntegrationError) *DeleteIntegrationOutput

SetErrors sets the Errors field's value.

func (*DeleteIntegrationOutput) SetIntegrationArn

func (s *DeleteIntegrationOutput) SetIntegrationArn(v string) *DeleteIntegrationOutput

SetIntegrationArn sets the IntegrationArn field's value.

func (*DeleteIntegrationOutput) SetIntegrationName

func (s *DeleteIntegrationOutput) SetIntegrationName(v string) *DeleteIntegrationOutput

SetIntegrationName sets the IntegrationName field's value.

func (*DeleteIntegrationOutput) SetKMSKeyId

func (s *DeleteIntegrationOutput) SetKMSKeyId(v string) *DeleteIntegrationOutput

SetKMSKeyId sets the KMSKeyId field's value.

func (*DeleteIntegrationOutput) SetSourceArn

func (s *DeleteIntegrationOutput) SetSourceArn(v string) *DeleteIntegrationOutput

SetSourceArn sets the SourceArn field's value.

func (*DeleteIntegrationOutput) SetStatus

func (s *DeleteIntegrationOutput) SetStatus(v string) *DeleteIntegrationOutput

SetStatus sets the Status field's value.

func (*DeleteIntegrationOutput) SetTags

func (s *DeleteIntegrationOutput) SetTags(v []*Tag) *DeleteIntegrationOutput

SetTags sets the Tags field's value.

func (*DeleteIntegrationOutput) SetTargetArn

func (s *DeleteIntegrationOutput) SetTargetArn(v string) *DeleteIntegrationOutput

SetTargetArn sets the TargetArn field's value.

func (DeleteIntegrationOutput) String

func (s DeleteIntegrationOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteOptionGroupInput

type DeleteOptionGroupInput struct {

    // The name of the option group to be deleted.
    //
    // You can't delete default option groups.
    //
    // OptionGroupName is a required field
    OptionGroupName *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteOptionGroupInput) GoString

func (s DeleteOptionGroupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteOptionGroupInput) SetOptionGroupName

func (s *DeleteOptionGroupInput) SetOptionGroupName(v string) *DeleteOptionGroupInput

SetOptionGroupName sets the OptionGroupName field's value.

func (DeleteOptionGroupInput) String

func (s DeleteOptionGroupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteOptionGroupInput) Validate

func (s *DeleteOptionGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteOptionGroupOutput

type DeleteOptionGroupOutput struct {
    // contains filtered or unexported fields
}

func (DeleteOptionGroupOutput) GoString

func (s DeleteOptionGroupOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DeleteOptionGroupOutput) String

func (s DeleteOptionGroupOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteTenantDatabaseInput

type DeleteTenantDatabaseInput struct {

    // The user-supplied identifier for the DB instance that contains the tenant
    // database that you want to delete.
    //
    // DBInstanceIdentifier is a required field
    DBInstanceIdentifier *string `type:"string" required:"true"`

    // The DBSnapshotIdentifier of the new DBSnapshot created when the SkipFinalSnapshot
    // parameter is disabled.
    //
    // If you enable this parameter and also enable SkipFinalShapshot, the command
    // results in an error.
    FinalDBSnapshotIdentifier *string `type:"string"`

    // Specifies whether to skip the creation of a final DB snapshot before removing
    // the tenant database from your DB instance. If you enable this parameter,
    // RDS doesn't create a DB snapshot. If you don't enable this parameter, RDS
    // creates a DB snapshot before it deletes the tenant database. By default,
    // RDS doesn't skip the final snapshot. If you don't enable this parameter,
    // you must specify the FinalDBSnapshotIdentifier parameter.
    SkipFinalSnapshot *bool `type:"boolean"`

    // The user-supplied name of the tenant database that you want to remove from
    // your DB instance. Amazon RDS deletes the tenant database with this name.
    // This parameter isn’t case-sensitive.
    //
    // TenantDBName is a required field
    TenantDBName *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteTenantDatabaseInput) GoString

func (s DeleteTenantDatabaseInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteTenantDatabaseInput) SetDBInstanceIdentifier

func (s *DeleteTenantDatabaseInput) SetDBInstanceIdentifier(v string) *DeleteTenantDatabaseInput

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*DeleteTenantDatabaseInput) SetFinalDBSnapshotIdentifier

func (s *DeleteTenantDatabaseInput) SetFinalDBSnapshotIdentifier(v string) *DeleteTenantDatabaseInput

SetFinalDBSnapshotIdentifier sets the FinalDBSnapshotIdentifier field's value.

func (*DeleteTenantDatabaseInput) SetSkipFinalSnapshot

func (s *DeleteTenantDatabaseInput) SetSkipFinalSnapshot(v bool) *DeleteTenantDatabaseInput

SetSkipFinalSnapshot sets the SkipFinalSnapshot field's value.

func (*DeleteTenantDatabaseInput) SetTenantDBName

func (s *DeleteTenantDatabaseInput) SetTenantDBName(v string) *DeleteTenantDatabaseInput

SetTenantDBName sets the TenantDBName field's value.

func (DeleteTenantDatabaseInput) String

func (s DeleteTenantDatabaseInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteTenantDatabaseInput) Validate

func (s *DeleteTenantDatabaseInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteTenantDatabaseOutput

type DeleteTenantDatabaseOutput struct {

    // A tenant database in the DB instance. This data type is an element in the
    // response to the DescribeTenantDatabases action.
    TenantDatabase *TenantDatabase `type:"structure"`
    // contains filtered or unexported fields
}

func (DeleteTenantDatabaseOutput) GoString

func (s DeleteTenantDatabaseOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteTenantDatabaseOutput) SetTenantDatabase

func (s *DeleteTenantDatabaseOutput) SetTenantDatabase(v *TenantDatabase) *DeleteTenantDatabaseOutput

SetTenantDatabase sets the TenantDatabase field's value.

func (DeleteTenantDatabaseOutput) String

func (s DeleteTenantDatabaseOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeregisterDBProxyTargetsInput

type DeregisterDBProxyTargetsInput struct {

    // One or more DB cluster identifiers.
    DBClusterIdentifiers []*string `type:"list"`

    // One or more DB instance identifiers.
    DBInstanceIdentifiers []*string `type:"list"`

    // The identifier of the DBProxy that is associated with the DBProxyTargetGroup.
    //
    // DBProxyName is a required field
    DBProxyName *string `type:"string" required:"true"`

    // The identifier of the DBProxyTargetGroup.
    TargetGroupName *string `type:"string"`
    // contains filtered or unexported fields
}

func (DeregisterDBProxyTargetsInput) GoString

func (s DeregisterDBProxyTargetsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeregisterDBProxyTargetsInput) SetDBClusterIdentifiers

func (s *DeregisterDBProxyTargetsInput) SetDBClusterIdentifiers(v []*string) *DeregisterDBProxyTargetsInput

SetDBClusterIdentifiers sets the DBClusterIdentifiers field's value.

func (*DeregisterDBProxyTargetsInput) SetDBInstanceIdentifiers

func (s *DeregisterDBProxyTargetsInput) SetDBInstanceIdentifiers(v []*string) *DeregisterDBProxyTargetsInput

SetDBInstanceIdentifiers sets the DBInstanceIdentifiers field's value.

func (*DeregisterDBProxyTargetsInput) SetDBProxyName

func (s *DeregisterDBProxyTargetsInput) SetDBProxyName(v string) *DeregisterDBProxyTargetsInput

SetDBProxyName sets the DBProxyName field's value.

func (*DeregisterDBProxyTargetsInput) SetTargetGroupName

func (s *DeregisterDBProxyTargetsInput) SetTargetGroupName(v string) *DeregisterDBProxyTargetsInput

SetTargetGroupName sets the TargetGroupName field's value.

func (DeregisterDBProxyTargetsInput) String

func (s DeregisterDBProxyTargetsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeregisterDBProxyTargetsInput) Validate

func (s *DeregisterDBProxyTargetsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeregisterDBProxyTargetsOutput

type DeregisterDBProxyTargetsOutput struct {
    // contains filtered or unexported fields
}

func (DeregisterDBProxyTargetsOutput) GoString

func (s DeregisterDBProxyTargetsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DeregisterDBProxyTargetsOutput) String

func (s DeregisterDBProxyTargetsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeAccountAttributesInput

type DescribeAccountAttributesInput struct {
    // contains filtered or unexported fields
}

func (DescribeAccountAttributesInput) GoString

func (s DescribeAccountAttributesInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DescribeAccountAttributesInput) String

func (s DescribeAccountAttributesInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeAccountAttributesOutput

type DescribeAccountAttributesOutput struct {

    // A list of AccountQuota objects. Within this list, each quota has a name,
    // a count of usage toward the quota maximum, and a maximum value for the quota.
    AccountQuotas []*AccountQuota `locationNameList:"AccountQuota" type:"list"`
    // contains filtered or unexported fields
}

Data returned by the DescribeAccountAttributes action.

func (DescribeAccountAttributesOutput) GoString

func (s DescribeAccountAttributesOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeAccountAttributesOutput) SetAccountQuotas

func (s *DescribeAccountAttributesOutput) SetAccountQuotas(v []*AccountQuota) *DescribeAccountAttributesOutput

SetAccountQuotas sets the AccountQuotas field's value.

func (DescribeAccountAttributesOutput) String

func (s DescribeAccountAttributesOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeBlueGreenDeploymentsInput

type DescribeBlueGreenDeploymentsInput struct {

    // The blue/green deployment identifier. If you specify this parameter, the
    // response only includes information about the specific blue/green deployment.
    // This parameter isn't case-sensitive.
    //
    // Constraints:
    //
    //    * Must match an existing blue/green deployment identifier.
    BlueGreenDeploymentIdentifier *string `min:"1" type:"string"`

    // A filter that specifies one or more blue/green deployments to describe.
    //
    // Valid Values:
    //
    //    * blue-green-deployment-identifier - Accepts system-generated identifiers
    //    for blue/green deployments. The results list only includes information
    //    about the blue/green deployments with the specified identifiers.
    //
    //    * blue-green-deployment-name - Accepts user-supplied names for blue/green
    //    deployments. The results list only includes information about the blue/green
    //    deployments with the specified names.
    //
    //    * source - Accepts source databases for a blue/green deployment. The results
    //    list only includes information about the blue/green deployments with the
    //    specified source databases.
    //
    //    * target - Accepts target databases for a blue/green deployment. The results
    //    list only includes information about the blue/green deployments with the
    //    specified target databases.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // An optional pagination token provided by a previous DescribeBlueGreenDeployments
    // request. If you specify this parameter, the response only includes records
    // beyond the marker, up to the value specified by MaxRecords.
    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 you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints:
    //
    //    * Must be a minimum of 20.
    //
    //    * Can't exceed 100.
    MaxRecords *int64 `min:"20" type:"integer"`
    // contains filtered or unexported fields
}

func (DescribeBlueGreenDeploymentsInput) GoString

func (s DescribeBlueGreenDeploymentsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeBlueGreenDeploymentsInput) SetBlueGreenDeploymentIdentifier

func (s *DescribeBlueGreenDeploymentsInput) SetBlueGreenDeploymentIdentifier(v string) *DescribeBlueGreenDeploymentsInput

SetBlueGreenDeploymentIdentifier sets the BlueGreenDeploymentIdentifier field's value.

func (*DescribeBlueGreenDeploymentsInput) SetFilters

func (s *DescribeBlueGreenDeploymentsInput) SetFilters(v []*Filter) *DescribeBlueGreenDeploymentsInput

SetFilters sets the Filters field's value.

func (*DescribeBlueGreenDeploymentsInput) SetMarker

func (s *DescribeBlueGreenDeploymentsInput) SetMarker(v string) *DescribeBlueGreenDeploymentsInput

SetMarker sets the Marker field's value.

func (*DescribeBlueGreenDeploymentsInput) SetMaxRecords

func (s *DescribeBlueGreenDeploymentsInput) SetMaxRecords(v int64) *DescribeBlueGreenDeploymentsInput

SetMaxRecords sets the MaxRecords field's value.

func (DescribeBlueGreenDeploymentsInput) String

func (s DescribeBlueGreenDeploymentsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeBlueGreenDeploymentsInput) Validate

func (s *DescribeBlueGreenDeploymentsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeBlueGreenDeploymentsOutput

type DescribeBlueGreenDeploymentsOutput struct {

    // A list of blue/green deployments in the current account and Amazon Web Services
    // Region.
    BlueGreenDeployments []*BlueGreenDeployment `type:"list"`

    // A pagination token that can be used in a later DescribeBlueGreenDeployments
    // request.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeBlueGreenDeploymentsOutput) GoString

func (s DescribeBlueGreenDeploymentsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeBlueGreenDeploymentsOutput) SetBlueGreenDeployments

func (s *DescribeBlueGreenDeploymentsOutput) SetBlueGreenDeployments(v []*BlueGreenDeployment) *DescribeBlueGreenDeploymentsOutput

SetBlueGreenDeployments sets the BlueGreenDeployments field's value.

func (*DescribeBlueGreenDeploymentsOutput) SetMarker

func (s *DescribeBlueGreenDeploymentsOutput) SetMarker(v string) *DescribeBlueGreenDeploymentsOutput

SetMarker sets the Marker field's value.

func (DescribeBlueGreenDeploymentsOutput) String

func (s DescribeBlueGreenDeploymentsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeCertificatesInput

type DescribeCertificatesInput struct {

    // The user-supplied certificate identifier. If this parameter is specified,
    // information for only the identified certificate is returned. This parameter
    // isn't case-sensitive.
    //
    // Constraints:
    //
    //    * Must match an existing CertificateIdentifier.
    CertificateIdentifier *string `type:"string"`

    // This parameter isn't currently supported.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // An optional pagination token provided by a previous DescribeCertificates
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    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 you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `type:"integer"`
    // contains filtered or unexported fields
}

func (DescribeCertificatesInput) GoString

func (s DescribeCertificatesInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeCertificatesInput) SetCertificateIdentifier

func (s *DescribeCertificatesInput) SetCertificateIdentifier(v string) *DescribeCertificatesInput

SetCertificateIdentifier sets the CertificateIdentifier field's value.

func (*DescribeCertificatesInput) SetFilters

func (s *DescribeCertificatesInput) SetFilters(v []*Filter) *DescribeCertificatesInput

SetFilters sets the Filters field's value.

func (*DescribeCertificatesInput) SetMarker

func (s *DescribeCertificatesInput) SetMarker(v string) *DescribeCertificatesInput

SetMarker sets the Marker field's value.

func (*DescribeCertificatesInput) SetMaxRecords

func (s *DescribeCertificatesInput) SetMaxRecords(v int64) *DescribeCertificatesInput

SetMaxRecords sets the MaxRecords field's value.

func (DescribeCertificatesInput) String

func (s DescribeCertificatesInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeCertificatesInput) Validate

func (s *DescribeCertificatesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeCertificatesOutput

type DescribeCertificatesOutput struct {

    // The list of Certificate objects for the Amazon Web Services account.
    Certificates []*Certificate `locationNameList:"Certificate" type:"list"`

    // The default root CA for new databases created by your Amazon Web Services
    // account. This is either the root CA override set on your Amazon Web Services
    // account or the system default CA for the Region if no override exists. To
    // override the default CA, use the ModifyCertificates operation.
    DefaultCertificateForNewLaunches *string `type:"string"`

    // An optional pagination token provided by a previous DescribeCertificates
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords .
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

Data returned by the DescribeCertificates action.

func (DescribeCertificatesOutput) GoString

func (s DescribeCertificatesOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeCertificatesOutput) SetCertificates

func (s *DescribeCertificatesOutput) SetCertificates(v []*Certificate) *DescribeCertificatesOutput

SetCertificates sets the Certificates field's value.

func (*DescribeCertificatesOutput) SetDefaultCertificateForNewLaunches

func (s *DescribeCertificatesOutput) SetDefaultCertificateForNewLaunches(v string) *DescribeCertificatesOutput

SetDefaultCertificateForNewLaunches sets the DefaultCertificateForNewLaunches field's value.

func (*DescribeCertificatesOutput) SetMarker

func (s *DescribeCertificatesOutput) SetMarker(v string) *DescribeCertificatesOutput

SetMarker sets the Marker field's value.

func (DescribeCertificatesOutput) String

func (s DescribeCertificatesOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDBClusterAutomatedBackupsInput

type DescribeDBClusterAutomatedBackupsInput struct {

    // (Optional) The user-supplied DB cluster identifier. If this parameter is
    // specified, it must match the identifier of an existing DB cluster. It returns
    // information from the specific DB cluster's automated backup. This parameter
    // isn't case-sensitive.
    DBClusterIdentifier *string `type:"string"`

    // The resource ID of the DB cluster that is the source of the automated backup.
    // This parameter isn't case-sensitive.
    DbClusterResourceId *string `type:"string"`

    // A filter that specifies which resources to return based on status.
    //
    // Supported filters are the following:
    //
    //    * status retained - Automated backups for deleted clusters and after backup
    //    replication is stopped.
    //
    //    * db-cluster-id - Accepts DB cluster identifiers and Amazon Resource Names
    //    (ARNs). The results list includes only information about the DB cluster
    //    automated backups identified by these ARNs.
    //
    //    * db-cluster-resource-id - Accepts DB resource identifiers and Amazon
    //    Resource Names (ARNs). The results list includes only information about
    //    the DB cluster resources identified by these ARNs.
    //
    // Returns all resources by default. The status for each resource is specified
    // in the response.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // The pagination token provided in the previous request. If this parameter
    // is specified the response includes only records beyond the marker, up to
    // MaxRecords.
    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 you can retrieve the remaining results.
    MaxRecords *int64 `type:"integer"`
    // contains filtered or unexported fields
}

func (DescribeDBClusterAutomatedBackupsInput) GoString

func (s DescribeDBClusterAutomatedBackupsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBClusterAutomatedBackupsInput) SetDBClusterIdentifier

func (s *DescribeDBClusterAutomatedBackupsInput) SetDBClusterIdentifier(v string) *DescribeDBClusterAutomatedBackupsInput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*DescribeDBClusterAutomatedBackupsInput) SetDbClusterResourceId

func (s *DescribeDBClusterAutomatedBackupsInput) SetDbClusterResourceId(v string) *DescribeDBClusterAutomatedBackupsInput

SetDbClusterResourceId sets the DbClusterResourceId field's value.

func (*DescribeDBClusterAutomatedBackupsInput) SetFilters

func (s *DescribeDBClusterAutomatedBackupsInput) SetFilters(v []*Filter) *DescribeDBClusterAutomatedBackupsInput

SetFilters sets the Filters field's value.

func (*DescribeDBClusterAutomatedBackupsInput) SetMarker

func (s *DescribeDBClusterAutomatedBackupsInput) SetMarker(v string) *DescribeDBClusterAutomatedBackupsInput

SetMarker sets the Marker field's value.

func (*DescribeDBClusterAutomatedBackupsInput) SetMaxRecords

func (s *DescribeDBClusterAutomatedBackupsInput) SetMaxRecords(v int64) *DescribeDBClusterAutomatedBackupsInput

SetMaxRecords sets the MaxRecords field's value.

func (DescribeDBClusterAutomatedBackupsInput) String

func (s DescribeDBClusterAutomatedBackupsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBClusterAutomatedBackupsInput) Validate

func (s *DescribeDBClusterAutomatedBackupsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeDBClusterAutomatedBackupsOutput

type DescribeDBClusterAutomatedBackupsOutput struct {

    // A list of DBClusterAutomatedBackup backups.
    DBClusterAutomatedBackups []*DBClusterAutomatedBackup `locationNameList:"DBClusterAutomatedBackup" type:"list"`

    // The pagination token provided in the previous request. If this parameter
    // is specified the response includes only records beyond the marker, up to
    // MaxRecords.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeDBClusterAutomatedBackupsOutput) GoString

func (s DescribeDBClusterAutomatedBackupsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBClusterAutomatedBackupsOutput) SetDBClusterAutomatedBackups

func (s *DescribeDBClusterAutomatedBackupsOutput) SetDBClusterAutomatedBackups(v []*DBClusterAutomatedBackup) *DescribeDBClusterAutomatedBackupsOutput

SetDBClusterAutomatedBackups sets the DBClusterAutomatedBackups field's value.

func (*DescribeDBClusterAutomatedBackupsOutput) SetMarker

func (s *DescribeDBClusterAutomatedBackupsOutput) SetMarker(v string) *DescribeDBClusterAutomatedBackupsOutput

SetMarker sets the Marker field's value.

func (DescribeDBClusterAutomatedBackupsOutput) String

func (s DescribeDBClusterAutomatedBackupsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDBClusterBacktracksInput

type DescribeDBClusterBacktracksInput struct {

    // If specified, this value is the backtrack identifier of the backtrack to
    // be described.
    //
    // Constraints:
    //
    //    * Must contain a valid universally unique identifier (UUID). For more
    //    information about UUIDs, see Universally unique identifier (https://en.wikipedia.org/wiki/Universally_unique_identifier).
    //
    // Example: 123e4567-e89b-12d3-a456-426655440000
    BacktrackIdentifier *string `type:"string"`

    // The DB cluster identifier of the DB cluster to be described. This parameter
    // is stored as a lowercase string.
    //
    // Constraints:
    //
    //    * Must contain from 1 to 63 alphanumeric characters or hyphens.
    //
    //    * First character must be a letter.
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens.
    //
    // Example: my-cluster1
    //
    // DBClusterIdentifier is a required field
    DBClusterIdentifier *string `type:"string" required:"true"`

    // A filter that specifies one or more DB clusters to describe. Supported filters
    // include the following:
    //
    //    * db-cluster-backtrack-id - Accepts backtrack identifiers. The results
    //    list includes information about only the backtracks identified by these
    //    identifiers.
    //
    //    * db-cluster-backtrack-status - Accepts any of the following backtrack
    //    status values: applying completed failed pending The results list includes
    //    information about only the backtracks identified by these values.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // An optional pagination token provided by a previous DescribeDBClusterBacktracks
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    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 you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `type:"integer"`
    // contains filtered or unexported fields
}

func (DescribeDBClusterBacktracksInput) GoString

func (s DescribeDBClusterBacktracksInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBClusterBacktracksInput) SetBacktrackIdentifier

func (s *DescribeDBClusterBacktracksInput) SetBacktrackIdentifier(v string) *DescribeDBClusterBacktracksInput

SetBacktrackIdentifier sets the BacktrackIdentifier field's value.

func (*DescribeDBClusterBacktracksInput) SetDBClusterIdentifier

func (s *DescribeDBClusterBacktracksInput) SetDBClusterIdentifier(v string) *DescribeDBClusterBacktracksInput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*DescribeDBClusterBacktracksInput) SetFilters

func (s *DescribeDBClusterBacktracksInput) SetFilters(v []*Filter) *DescribeDBClusterBacktracksInput

SetFilters sets the Filters field's value.

func (*DescribeDBClusterBacktracksInput) SetMarker

func (s *DescribeDBClusterBacktracksInput) SetMarker(v string) *DescribeDBClusterBacktracksInput

SetMarker sets the Marker field's value.

func (*DescribeDBClusterBacktracksInput) SetMaxRecords

func (s *DescribeDBClusterBacktracksInput) SetMaxRecords(v int64) *DescribeDBClusterBacktracksInput

SetMaxRecords sets the MaxRecords field's value.

func (DescribeDBClusterBacktracksInput) String

func (s DescribeDBClusterBacktracksInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBClusterBacktracksInput) Validate

func (s *DescribeDBClusterBacktracksInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeDBClusterBacktracksOutput

type DescribeDBClusterBacktracksOutput struct {

    // Contains a list of backtracks for the user.
    DBClusterBacktracks []*BacktrackDBClusterOutput `locationNameList:"DBClusterBacktrack" type:"list"`

    // A pagination token that can be used in a later DescribeDBClusterBacktracks
    // request.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the result of a successful invocation of the DescribeDBClusterBacktracks action.

func (DescribeDBClusterBacktracksOutput) GoString

func (s DescribeDBClusterBacktracksOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBClusterBacktracksOutput) SetDBClusterBacktracks

func (s *DescribeDBClusterBacktracksOutput) SetDBClusterBacktracks(v []*BacktrackDBClusterOutput) *DescribeDBClusterBacktracksOutput

SetDBClusterBacktracks sets the DBClusterBacktracks field's value.

func (*DescribeDBClusterBacktracksOutput) SetMarker

func (s *DescribeDBClusterBacktracksOutput) SetMarker(v string) *DescribeDBClusterBacktracksOutput

SetMarker sets the Marker field's value.

func (DescribeDBClusterBacktracksOutput) String

func (s DescribeDBClusterBacktracksOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDBClusterEndpointsInput

type DescribeDBClusterEndpointsInput struct {

    // The identifier of the endpoint to describe. This parameter is stored as a
    // lowercase string.
    DBClusterEndpointIdentifier *string `type:"string"`

    // The DB cluster identifier of the DB cluster associated with the endpoint.
    // This parameter is stored as a lowercase string.
    DBClusterIdentifier *string `type:"string"`

    // A set of name-value pairs that define which endpoints to include in the output.
    // The filters are specified as name-value pairs, in the format Name=endpoint_type,Values=endpoint_type1,endpoint_type2,....
    // Name can be one of: db-cluster-endpoint-type, db-cluster-endpoint-custom-type,
    // db-cluster-endpoint-id, db-cluster-endpoint-status. Values for the db-cluster-endpoint-type
    // filter can be one or more of: reader, writer, custom. Values for the db-cluster-endpoint-custom-type
    // filter can be one or more of: reader, any. Values for the db-cluster-endpoint-status
    // filter can be one or more of: available, creating, deleting, inactive, modifying.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // An optional pagination token provided by a previous DescribeDBClusterEndpoints
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    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 you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `type:"integer"`
    // contains filtered or unexported fields
}

func (DescribeDBClusterEndpointsInput) GoString

func (s DescribeDBClusterEndpointsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBClusterEndpointsInput) SetDBClusterEndpointIdentifier

func (s *DescribeDBClusterEndpointsInput) SetDBClusterEndpointIdentifier(v string) *DescribeDBClusterEndpointsInput

SetDBClusterEndpointIdentifier sets the DBClusterEndpointIdentifier field's value.

func (*DescribeDBClusterEndpointsInput) SetDBClusterIdentifier

func (s *DescribeDBClusterEndpointsInput) SetDBClusterIdentifier(v string) *DescribeDBClusterEndpointsInput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*DescribeDBClusterEndpointsInput) SetFilters

func (s *DescribeDBClusterEndpointsInput) SetFilters(v []*Filter) *DescribeDBClusterEndpointsInput

SetFilters sets the Filters field's value.

func (*DescribeDBClusterEndpointsInput) SetMarker

func (s *DescribeDBClusterEndpointsInput) SetMarker(v string) *DescribeDBClusterEndpointsInput

SetMarker sets the Marker field's value.

func (*DescribeDBClusterEndpointsInput) SetMaxRecords

func (s *DescribeDBClusterEndpointsInput) SetMaxRecords(v int64) *DescribeDBClusterEndpointsInput

SetMaxRecords sets the MaxRecords field's value.

func (DescribeDBClusterEndpointsInput) String

func (s DescribeDBClusterEndpointsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBClusterEndpointsInput) Validate

func (s *DescribeDBClusterEndpointsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeDBClusterEndpointsOutput

type DescribeDBClusterEndpointsOutput struct {

    // Contains the details of the endpoints associated with the cluster and matching
    // any filter conditions.
    DBClusterEndpoints []*DBClusterEndpoint `locationNameList:"DBClusterEndpointList" type:"list"`

    // An optional pagination token provided by a previous DescribeDBClusterEndpoints
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeDBClusterEndpointsOutput) GoString

func (s DescribeDBClusterEndpointsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBClusterEndpointsOutput) SetDBClusterEndpoints

func (s *DescribeDBClusterEndpointsOutput) SetDBClusterEndpoints(v []*DBClusterEndpoint) *DescribeDBClusterEndpointsOutput

SetDBClusterEndpoints sets the DBClusterEndpoints field's value.

func (*DescribeDBClusterEndpointsOutput) SetMarker

func (s *DescribeDBClusterEndpointsOutput) SetMarker(v string) *DescribeDBClusterEndpointsOutput

SetMarker sets the Marker field's value.

func (DescribeDBClusterEndpointsOutput) String

func (s DescribeDBClusterEndpointsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDBClusterParameterGroupsInput

type DescribeDBClusterParameterGroupsInput struct {

    // The name of a specific DB cluster parameter group to return details for.
    //
    // Constraints:
    //
    //    * If supplied, must match the name of an existing DBClusterParameterGroup.
    DBClusterParameterGroupName *string `type:"string"`

    // This parameter isn't currently supported.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // An optional pagination token provided by a previous DescribeDBClusterParameterGroups
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    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 you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `type:"integer"`
    // contains filtered or unexported fields
}

func (DescribeDBClusterParameterGroupsInput) GoString

func (s DescribeDBClusterParameterGroupsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBClusterParameterGroupsInput) SetDBClusterParameterGroupName

func (s *DescribeDBClusterParameterGroupsInput) SetDBClusterParameterGroupName(v string) *DescribeDBClusterParameterGroupsInput

SetDBClusterParameterGroupName sets the DBClusterParameterGroupName field's value.

func (*DescribeDBClusterParameterGroupsInput) SetFilters

func (s *DescribeDBClusterParameterGroupsInput) SetFilters(v []*Filter) *DescribeDBClusterParameterGroupsInput

SetFilters sets the Filters field's value.

func (*DescribeDBClusterParameterGroupsInput) SetMarker

func (s *DescribeDBClusterParameterGroupsInput) SetMarker(v string) *DescribeDBClusterParameterGroupsInput

SetMarker sets the Marker field's value.

func (*DescribeDBClusterParameterGroupsInput) SetMaxRecords

func (s *DescribeDBClusterParameterGroupsInput) SetMaxRecords(v int64) *DescribeDBClusterParameterGroupsInput

SetMaxRecords sets the MaxRecords field's value.

func (DescribeDBClusterParameterGroupsInput) String

func (s DescribeDBClusterParameterGroupsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBClusterParameterGroupsInput) Validate

func (s *DescribeDBClusterParameterGroupsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeDBClusterParameterGroupsOutput

type DescribeDBClusterParameterGroupsOutput struct {

    // A list of DB cluster parameter groups.
    DBClusterParameterGroups []*DBClusterParameterGroup `locationNameList:"DBClusterParameterGroup" type:"list"`

    // An optional pagination token provided by a previous DescribeDBClusterParameterGroups
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeDBClusterParameterGroupsOutput) GoString

func (s DescribeDBClusterParameterGroupsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBClusterParameterGroupsOutput) SetDBClusterParameterGroups

func (s *DescribeDBClusterParameterGroupsOutput) SetDBClusterParameterGroups(v []*DBClusterParameterGroup) *DescribeDBClusterParameterGroupsOutput

SetDBClusterParameterGroups sets the DBClusterParameterGroups field's value.

func (*DescribeDBClusterParameterGroupsOutput) SetMarker

func (s *DescribeDBClusterParameterGroupsOutput) SetMarker(v string) *DescribeDBClusterParameterGroupsOutput

SetMarker sets the Marker field's value.

func (DescribeDBClusterParameterGroupsOutput) String

func (s DescribeDBClusterParameterGroupsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDBClusterParametersInput

type DescribeDBClusterParametersInput struct {

    // The name of a specific DB cluster parameter group to return parameter details
    // for.
    //
    // Constraints:
    //
    //    * If supplied, must match the name of an existing DBClusterParameterGroup.
    //
    // DBClusterParameterGroupName is a required field
    DBClusterParameterGroupName *string `type:"string" required:"true"`

    // This parameter isn't currently supported.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // An optional pagination token provided by a previous DescribeDBClusterParameters
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    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 you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `type:"integer"`

    // A specific source to return parameters for.
    //
    // Valid Values:
    //
    //    * customer
    //
    //    * engine
    //
    //    * service
    Source *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeDBClusterParametersInput) GoString

func (s DescribeDBClusterParametersInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBClusterParametersInput) SetDBClusterParameterGroupName

func (s *DescribeDBClusterParametersInput) SetDBClusterParameterGroupName(v string) *DescribeDBClusterParametersInput

SetDBClusterParameterGroupName sets the DBClusterParameterGroupName field's value.

func (*DescribeDBClusterParametersInput) SetFilters

func (s *DescribeDBClusterParametersInput) SetFilters(v []*Filter) *DescribeDBClusterParametersInput

SetFilters sets the Filters field's value.

func (*DescribeDBClusterParametersInput) SetMarker

func (s *DescribeDBClusterParametersInput) SetMarker(v string) *DescribeDBClusterParametersInput

SetMarker sets the Marker field's value.

func (*DescribeDBClusterParametersInput) SetMaxRecords

func (s *DescribeDBClusterParametersInput) SetMaxRecords(v int64) *DescribeDBClusterParametersInput

SetMaxRecords sets the MaxRecords field's value.

func (*DescribeDBClusterParametersInput) SetSource

func (s *DescribeDBClusterParametersInput) SetSource(v string) *DescribeDBClusterParametersInput

SetSource sets the Source field's value.

func (DescribeDBClusterParametersInput) String

func (s DescribeDBClusterParametersInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBClusterParametersInput) Validate

func (s *DescribeDBClusterParametersInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeDBClusterParametersOutput

type DescribeDBClusterParametersOutput struct {

    // An optional pagination token provided by a previous DescribeDBClusterParameters
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    Marker *string `type:"string"`

    // Provides a list of parameters for the DB cluster parameter group.
    Parameters []*Parameter `locationNameList:"Parameter" type:"list"`
    // contains filtered or unexported fields
}

Provides details about a DB cluster parameter group including the parameters in the DB cluster parameter group.

func (DescribeDBClusterParametersOutput) GoString

func (s DescribeDBClusterParametersOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBClusterParametersOutput) SetMarker

func (s *DescribeDBClusterParametersOutput) SetMarker(v string) *DescribeDBClusterParametersOutput

SetMarker sets the Marker field's value.

func (*DescribeDBClusterParametersOutput) SetParameters

func (s *DescribeDBClusterParametersOutput) SetParameters(v []*Parameter) *DescribeDBClusterParametersOutput

SetParameters sets the Parameters field's value.

func (DescribeDBClusterParametersOutput) String

func (s DescribeDBClusterParametersOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDBClusterSnapshotAttributesInput

type DescribeDBClusterSnapshotAttributesInput struct {

    // The identifier for the DB cluster snapshot to describe the attributes for.
    //
    // DBClusterSnapshotIdentifier is a required field
    DBClusterSnapshotIdentifier *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DescribeDBClusterSnapshotAttributesInput) GoString

func (s DescribeDBClusterSnapshotAttributesInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBClusterSnapshotAttributesInput) SetDBClusterSnapshotIdentifier

func (s *DescribeDBClusterSnapshotAttributesInput) SetDBClusterSnapshotIdentifier(v string) *DescribeDBClusterSnapshotAttributesInput

SetDBClusterSnapshotIdentifier sets the DBClusterSnapshotIdentifier field's value.

func (DescribeDBClusterSnapshotAttributesInput) String

func (s DescribeDBClusterSnapshotAttributesInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBClusterSnapshotAttributesInput) Validate

func (s *DescribeDBClusterSnapshotAttributesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeDBClusterSnapshotAttributesOutput

type DescribeDBClusterSnapshotAttributesOutput struct {

    // Contains the results of a successful call to the DescribeDBClusterSnapshotAttributes
    // API action.
    //
    // Manual DB cluster snapshot attributes are used to authorize other Amazon
    // Web Services accounts to copy or restore a manual DB cluster snapshot. For
    // more information, see the ModifyDBClusterSnapshotAttribute API action.
    DBClusterSnapshotAttributesResult *DBClusterSnapshotAttributesResult `type:"structure"`
    // contains filtered or unexported fields
}

func (DescribeDBClusterSnapshotAttributesOutput) GoString

func (s DescribeDBClusterSnapshotAttributesOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBClusterSnapshotAttributesOutput) SetDBClusterSnapshotAttributesResult

func (s *DescribeDBClusterSnapshotAttributesOutput) SetDBClusterSnapshotAttributesResult(v *DBClusterSnapshotAttributesResult) *DescribeDBClusterSnapshotAttributesOutput

SetDBClusterSnapshotAttributesResult sets the DBClusterSnapshotAttributesResult field's value.

func (DescribeDBClusterSnapshotAttributesOutput) String

func (s DescribeDBClusterSnapshotAttributesOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDBClusterSnapshotsInput

type DescribeDBClusterSnapshotsInput struct {

    // The ID of the DB cluster to retrieve the list of DB cluster snapshots for.
    // This parameter can't be used in conjunction with the DBClusterSnapshotIdentifier
    // parameter. This parameter isn't case-sensitive.
    //
    // Constraints:
    //
    //    * If supplied, must match the identifier of an existing DBCluster.
    DBClusterIdentifier *string `type:"string"`

    // A specific DB cluster snapshot identifier to describe. This parameter can't
    // be used in conjunction with the DBClusterIdentifier parameter. This value
    // is stored as a lowercase string.
    //
    // Constraints:
    //
    //    * If supplied, must match the identifier of an existing DBClusterSnapshot.
    //
    //    * If this identifier is for an automated snapshot, the SnapshotType parameter
    //    must also be specified.
    DBClusterSnapshotIdentifier *string `type:"string"`

    // A specific DB cluster resource ID to describe.
    DbClusterResourceId *string `type:"string"`

    // A filter that specifies one or more DB cluster snapshots to describe.
    //
    // Supported filters:
    //
    //    * db-cluster-id - Accepts DB cluster identifiers and DB cluster Amazon
    //    Resource Names (ARNs).
    //
    //    * db-cluster-snapshot-id - Accepts DB cluster snapshot identifiers.
    //
    //    * snapshot-type - Accepts types of DB cluster snapshots.
    //
    //    * engine - Accepts names of database engines.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // Specifies whether to include manual DB cluster snapshots that are public
    // and can be copied or restored by any Amazon Web Services account. By default,
    // the public snapshots are not included.
    //
    // You can share a manual DB cluster snapshot as public by using the ModifyDBClusterSnapshotAttribute
    // API action.
    IncludePublic *bool `type:"boolean"`

    // Specifies whether to include shared manual DB cluster snapshots from other
    // Amazon Web Services accounts that this Amazon Web Services account has been
    // given permission to copy or restore. By default, these snapshots are not
    // included.
    //
    // You can give an Amazon Web Services account permission to restore a manual
    // DB cluster snapshot from another Amazon Web Services account by the ModifyDBClusterSnapshotAttribute
    // API action.
    IncludeShared *bool `type:"boolean"`

    // An optional pagination token provided by a previous DescribeDBClusterSnapshots
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    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 you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `type:"integer"`

    // The type of DB cluster snapshots to be returned. You can specify one of the
    // following values:
    //
    //    * automated - Return all DB cluster snapshots that have been automatically
    //    taken by Amazon RDS for my Amazon Web Services account.
    //
    //    * manual - Return all DB cluster snapshots that have been taken by my
    //    Amazon Web Services account.
    //
    //    * shared - Return all manual DB cluster snapshots that have been shared
    //    to my Amazon Web Services account.
    //
    //    * public - Return all DB cluster snapshots that have been marked as public.
    //
    // If you don't specify a SnapshotType value, then both automated and manual
    // DB cluster snapshots are returned. You can include shared DB cluster snapshots
    // with these results by enabling the IncludeShared parameter. You can include
    // public DB cluster snapshots with these results by enabling the IncludePublic
    // parameter.
    //
    // The IncludeShared and IncludePublic parameters don't apply for SnapshotType
    // values of manual or automated. The IncludePublic parameter doesn't apply
    // when SnapshotType is set to shared. The IncludeShared parameter doesn't apply
    // when SnapshotType is set to public.
    SnapshotType *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeDBClusterSnapshotsInput) GoString

func (s DescribeDBClusterSnapshotsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBClusterSnapshotsInput) SetDBClusterIdentifier

func (s *DescribeDBClusterSnapshotsInput) SetDBClusterIdentifier(v string) *DescribeDBClusterSnapshotsInput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*DescribeDBClusterSnapshotsInput) SetDBClusterSnapshotIdentifier

func (s *DescribeDBClusterSnapshotsInput) SetDBClusterSnapshotIdentifier(v string) *DescribeDBClusterSnapshotsInput

SetDBClusterSnapshotIdentifier sets the DBClusterSnapshotIdentifier field's value.

func (*DescribeDBClusterSnapshotsInput) SetDbClusterResourceId

func (s *DescribeDBClusterSnapshotsInput) SetDbClusterResourceId(v string) *DescribeDBClusterSnapshotsInput

SetDbClusterResourceId sets the DbClusterResourceId field's value.

func (*DescribeDBClusterSnapshotsInput) SetFilters

func (s *DescribeDBClusterSnapshotsInput) SetFilters(v []*Filter) *DescribeDBClusterSnapshotsInput

SetFilters sets the Filters field's value.

func (*DescribeDBClusterSnapshotsInput) SetIncludePublic

func (s *DescribeDBClusterSnapshotsInput) SetIncludePublic(v bool) *DescribeDBClusterSnapshotsInput

SetIncludePublic sets the IncludePublic field's value.

func (*DescribeDBClusterSnapshotsInput) SetIncludeShared

func (s *DescribeDBClusterSnapshotsInput) SetIncludeShared(v bool) *DescribeDBClusterSnapshotsInput

SetIncludeShared sets the IncludeShared field's value.

func (*DescribeDBClusterSnapshotsInput) SetMarker

func (s *DescribeDBClusterSnapshotsInput) SetMarker(v string) *DescribeDBClusterSnapshotsInput

SetMarker sets the Marker field's value.

func (*DescribeDBClusterSnapshotsInput) SetMaxRecords

func (s *DescribeDBClusterSnapshotsInput) SetMaxRecords(v int64) *DescribeDBClusterSnapshotsInput

SetMaxRecords sets the MaxRecords field's value.

func (*DescribeDBClusterSnapshotsInput) SetSnapshotType

func (s *DescribeDBClusterSnapshotsInput) SetSnapshotType(v string) *DescribeDBClusterSnapshotsInput

SetSnapshotType sets the SnapshotType field's value.

func (DescribeDBClusterSnapshotsInput) String

func (s DescribeDBClusterSnapshotsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBClusterSnapshotsInput) Validate

func (s *DescribeDBClusterSnapshotsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeDBClusterSnapshotsOutput

type DescribeDBClusterSnapshotsOutput struct {

    // Provides a list of DB cluster snapshots for the user.
    DBClusterSnapshots []*DBClusterSnapshot `locationNameList:"DBClusterSnapshot" type:"list"`

    // An optional pagination token provided by a previous DescribeDBClusterSnapshots
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

Provides a list of DB cluster snapshots for the user as the result of a call to the DescribeDBClusterSnapshots action.

func (DescribeDBClusterSnapshotsOutput) GoString

func (s DescribeDBClusterSnapshotsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBClusterSnapshotsOutput) SetDBClusterSnapshots

func (s *DescribeDBClusterSnapshotsOutput) SetDBClusterSnapshots(v []*DBClusterSnapshot) *DescribeDBClusterSnapshotsOutput

SetDBClusterSnapshots sets the DBClusterSnapshots field's value.

func (*DescribeDBClusterSnapshotsOutput) SetMarker

func (s *DescribeDBClusterSnapshotsOutput) SetMarker(v string) *DescribeDBClusterSnapshotsOutput

SetMarker sets the Marker field's value.

func (DescribeDBClusterSnapshotsOutput) String

func (s DescribeDBClusterSnapshotsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDBClustersInput

type DescribeDBClustersInput struct {

    // The user-supplied DB cluster identifier or the Amazon Resource Name (ARN)
    // of the DB cluster. If this parameter is specified, information for only the
    // specific DB cluster is returned. This parameter isn't case-sensitive.
    //
    // Constraints:
    //
    //    * If supplied, must match an existing DB cluster identifier.
    DBClusterIdentifier *string `type:"string"`

    // A filter that specifies one or more DB clusters to describe.
    //
    // Supported Filters:
    //
    //    * clone-group-id - Accepts clone group identifiers. The results list only
    //    includes information about the DB clusters associated with these clone
    //    groups.
    //
    //    * db-cluster-id - Accepts DB cluster identifiers and DB cluster Amazon
    //    Resource Names (ARNs). The results list only includes information about
    //    the DB clusters identified by these ARNs.
    //
    //    * db-cluster-resource-id - Accepts DB cluster resource identifiers. The
    //    results list will only include information about the DB clusters identified
    //    by these DB cluster resource identifiers.
    //
    //    * domain - Accepts Active Directory directory IDs. The results list only
    //    includes information about the DB clusters associated with these domains.
    //
    //    * engine - Accepts engine names. The results list only includes information
    //    about the DB clusters for these engines.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // Specifies whether the output includes information about clusters shared from
    // other Amazon Web Services accounts.
    IncludeShared *bool `type:"boolean"`

    // An optional pagination token provided by a previous DescribeDBClusters request.
    // If this parameter is specified, the response includes only records beyond
    // the marker, up to the value specified by MaxRecords.
    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 you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100
    MaxRecords *int64 `type:"integer"`
    // contains filtered or unexported fields
}

func (DescribeDBClustersInput) GoString

func (s DescribeDBClustersInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBClustersInput) SetDBClusterIdentifier

func (s *DescribeDBClustersInput) SetDBClusterIdentifier(v string) *DescribeDBClustersInput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*DescribeDBClustersInput) SetFilters

func (s *DescribeDBClustersInput) SetFilters(v []*Filter) *DescribeDBClustersInput

SetFilters sets the Filters field's value.

func (*DescribeDBClustersInput) SetIncludeShared

func (s *DescribeDBClustersInput) SetIncludeShared(v bool) *DescribeDBClustersInput

SetIncludeShared sets the IncludeShared field's value.

func (*DescribeDBClustersInput) SetMarker

func (s *DescribeDBClustersInput) SetMarker(v string) *DescribeDBClustersInput

SetMarker sets the Marker field's value.

func (*DescribeDBClustersInput) SetMaxRecords

func (s *DescribeDBClustersInput) SetMaxRecords(v int64) *DescribeDBClustersInput

SetMaxRecords sets the MaxRecords field's value.

func (DescribeDBClustersInput) String

func (s DescribeDBClustersInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBClustersInput) Validate

func (s *DescribeDBClustersInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeDBClustersOutput

type DescribeDBClustersOutput struct {

    // Contains a list of DB clusters for the user.
    DBClusters []*DBCluster `locationNameList:"DBCluster" type:"list"`

    // A pagination token that can be used in a later DescribeDBClusters request.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the result of a successful invocation of the DescribeDBClusters action.

func (DescribeDBClustersOutput) GoString

func (s DescribeDBClustersOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBClustersOutput) SetDBClusters

func (s *DescribeDBClustersOutput) SetDBClusters(v []*DBCluster) *DescribeDBClustersOutput

SetDBClusters sets the DBClusters field's value.

func (*DescribeDBClustersOutput) SetMarker

func (s *DescribeDBClustersOutput) SetMarker(v string) *DescribeDBClustersOutput

SetMarker sets the Marker field's value.

func (DescribeDBClustersOutput) String

func (s DescribeDBClustersOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDBEngineVersionsInput

type DescribeDBEngineVersionsInput struct {

    // The name of a specific DB parameter group family to return details for.
    //
    // Constraints:
    //
    //    * If supplied, must match an existing DB parameter group family.
    DBParameterGroupFamily *string `type:"string"`

    // Specifies whether to return only the default version of the specified engine
    // or the engine and major version combination.
    DefaultOnly *bool `type:"boolean"`

    // The database engine to return version details for.
    //
    // Valid Values:
    //
    //    * aurora-mysql
    //
    //    * aurora-postgresql
    //
    //    * custom-oracle-ee
    //
    //    * db2-ae
    //
    //    * db2-se
    //
    //    * mariadb
    //
    //    * mysql
    //
    //    * oracle-ee
    //
    //    * oracle-ee-cdb
    //
    //    * oracle-se2
    //
    //    * oracle-se2-cdb
    //
    //    * postgres
    //
    //    * sqlserver-ee
    //
    //    * sqlserver-se
    //
    //    * sqlserver-ex
    //
    //    * sqlserver-web
    Engine *string `type:"string"`

    // A specific database engine version to return details for.
    //
    // Example: 5.1.49
    EngineVersion *string `type:"string"`

    // A filter that specifies one or more DB engine versions to describe.
    //
    // Supported filters:
    //
    //    * db-parameter-group-family - Accepts parameter groups family names. The
    //    results list only includes information about the DB engine versions for
    //    these parameter group families.
    //
    //    * engine - Accepts engine names. The results list only includes information
    //    about the DB engine versions for these engines.
    //
    //    * engine-mode - Accepts DB engine modes. The results list only includes
    //    information about the DB engine versions for these engine modes. Valid
    //    DB engine modes are the following: global multimaster parallelquery provisioned
    //    serverless
    //
    //    * engine-version - Accepts engine versions. The results list only includes
    //    information about the DB engine versions for these engine versions.
    //
    //    * status - Accepts engine version statuses. The results list only includes
    //    information about the DB engine versions for these statuses. Valid statuses
    //    are the following: available deprecated
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // Specifies whether to also list the engine versions that aren't available.
    // The default is to list only available engine versions.
    IncludeAll *bool `type:"boolean"`

    // Specifies whether to list the supported character sets for each engine version.
    //
    // If this parameter is enabled and the requested engine supports the CharacterSetName
    // parameter for CreateDBInstance, the response includes a list of supported
    // character sets for each engine version.
    //
    // For RDS Custom, the default is not to list supported character sets. If you
    // enable this parameter, RDS Custom returns no results.
    ListSupportedCharacterSets *bool `type:"boolean"`

    // Specifies whether to list the supported time zones for each engine version.
    //
    // If this parameter is enabled and the requested engine supports the TimeZone
    // parameter for CreateDBInstance, the response includes a list of supported
    // time zones for each engine version.
    //
    // For RDS Custom, the default is not to list supported time zones. If you enable
    // this parameter, RDS Custom returns no results.
    ListSupportedTimezones *bool `type:"boolean"`

    // An optional pagination token provided by a previous request. If this parameter
    // is specified, the response includes only records beyond the marker, up to
    // the value specified by MaxRecords.
    Marker *string `type:"string"`

    // The maximum number of records to include in the response. If more than the
    // MaxRecords value is available, a pagination token called a marker is included
    // in the response so you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `type:"integer"`
    // contains filtered or unexported fields
}

func (DescribeDBEngineVersionsInput) GoString

func (s DescribeDBEngineVersionsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBEngineVersionsInput) SetDBParameterGroupFamily

func (s *DescribeDBEngineVersionsInput) SetDBParameterGroupFamily(v string) *DescribeDBEngineVersionsInput

SetDBParameterGroupFamily sets the DBParameterGroupFamily field's value.

func (*DescribeDBEngineVersionsInput) SetDefaultOnly

func (s *DescribeDBEngineVersionsInput) SetDefaultOnly(v bool) *DescribeDBEngineVersionsInput

SetDefaultOnly sets the DefaultOnly field's value.

func (*DescribeDBEngineVersionsInput) SetEngine

func (s *DescribeDBEngineVersionsInput) SetEngine(v string) *DescribeDBEngineVersionsInput

SetEngine sets the Engine field's value.

func (*DescribeDBEngineVersionsInput) SetEngineVersion

func (s *DescribeDBEngineVersionsInput) SetEngineVersion(v string) *DescribeDBEngineVersionsInput

SetEngineVersion sets the EngineVersion field's value.

func (*DescribeDBEngineVersionsInput) SetFilters

func (s *DescribeDBEngineVersionsInput) SetFilters(v []*Filter) *DescribeDBEngineVersionsInput

SetFilters sets the Filters field's value.

func (*DescribeDBEngineVersionsInput) SetIncludeAll

func (s *DescribeDBEngineVersionsInput) SetIncludeAll(v bool) *DescribeDBEngineVersionsInput

SetIncludeAll sets the IncludeAll field's value.

func (*DescribeDBEngineVersionsInput) SetListSupportedCharacterSets

func (s *DescribeDBEngineVersionsInput) SetListSupportedCharacterSets(v bool) *DescribeDBEngineVersionsInput

SetListSupportedCharacterSets sets the ListSupportedCharacterSets field's value.

func (*DescribeDBEngineVersionsInput) SetListSupportedTimezones

func (s *DescribeDBEngineVersionsInput) SetListSupportedTimezones(v bool) *DescribeDBEngineVersionsInput

SetListSupportedTimezones sets the ListSupportedTimezones field's value.

func (*DescribeDBEngineVersionsInput) SetMarker

func (s *DescribeDBEngineVersionsInput) SetMarker(v string) *DescribeDBEngineVersionsInput

SetMarker sets the Marker field's value.

func (*DescribeDBEngineVersionsInput) SetMaxRecords

func (s *DescribeDBEngineVersionsInput) SetMaxRecords(v int64) *DescribeDBEngineVersionsInput

SetMaxRecords sets the MaxRecords field's value.

func (DescribeDBEngineVersionsInput) String

func (s DescribeDBEngineVersionsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBEngineVersionsInput) Validate

func (s *DescribeDBEngineVersionsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeDBEngineVersionsOutput

type DescribeDBEngineVersionsOutput struct {

    // A list of DBEngineVersion elements.
    DBEngineVersions []*DBEngineVersion `locationNameList:"DBEngineVersion" type:"list"`

    // An optional pagination token provided by a previous request. If this parameter
    // is specified, the response includes only records beyond the marker, up to
    // the value specified by MaxRecords.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the result of a successful invocation of the DescribeDBEngineVersions action.

func (DescribeDBEngineVersionsOutput) GoString

func (s DescribeDBEngineVersionsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBEngineVersionsOutput) SetDBEngineVersions

func (s *DescribeDBEngineVersionsOutput) SetDBEngineVersions(v []*DBEngineVersion) *DescribeDBEngineVersionsOutput

SetDBEngineVersions sets the DBEngineVersions field's value.

func (*DescribeDBEngineVersionsOutput) SetMarker

func (s *DescribeDBEngineVersionsOutput) SetMarker(v string) *DescribeDBEngineVersionsOutput

SetMarker sets the Marker field's value.

func (DescribeDBEngineVersionsOutput) String

func (s DescribeDBEngineVersionsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDBInstanceAutomatedBackupsInput

type DescribeDBInstanceAutomatedBackupsInput struct {

    // The Amazon Resource Name (ARN) of the replicated automated backups, for example,
    // arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE.
    //
    // This setting doesn't apply to RDS Custom.
    DBInstanceAutomatedBackupsArn *string `type:"string"`

    // (Optional) The user-supplied instance identifier. If this parameter is specified,
    // it must match the identifier of an existing DB instance. It returns information
    // from the specific DB instance's automated backup. This parameter isn't case-sensitive.
    DBInstanceIdentifier *string `type:"string"`

    // The resource ID of the DB instance that is the source of the automated backup.
    // This parameter isn't case-sensitive.
    DbiResourceId *string `type:"string"`

    // A filter that specifies which resources to return based on status.
    //
    // Supported filters are the following:
    //
    //    * status active - Automated backups for current instances. creating -
    //    Automated backups that are waiting for the first automated snapshot to
    //    be available. retained - Automated backups for deleted instances and after
    //    backup replication is stopped.
    //
    //    * db-instance-id - Accepts DB instance identifiers and Amazon Resource
    //    Names (ARNs). The results list includes only information about the DB
    //    instance automated backups identified by these ARNs.
    //
    //    * dbi-resource-id - Accepts DB resource identifiers and Amazon Resource
    //    Names (ARNs). The results list includes only information about the DB
    //    instance resources identified by these ARNs.
    //
    // Returns all resources by default. The status for each resource is specified
    // in the response.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // The pagination token provided in the previous request. If this parameter
    // is specified the response includes only records beyond the marker, up to
    // MaxRecords.
    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 you can retrieve the remaining results.
    MaxRecords *int64 `type:"integer"`
    // contains filtered or unexported fields
}

Parameter input for DescribeDBInstanceAutomatedBackups.

func (DescribeDBInstanceAutomatedBackupsInput) GoString

func (s DescribeDBInstanceAutomatedBackupsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBInstanceAutomatedBackupsInput) SetDBInstanceAutomatedBackupsArn

func (s *DescribeDBInstanceAutomatedBackupsInput) SetDBInstanceAutomatedBackupsArn(v string) *DescribeDBInstanceAutomatedBackupsInput

SetDBInstanceAutomatedBackupsArn sets the DBInstanceAutomatedBackupsArn field's value.

func (*DescribeDBInstanceAutomatedBackupsInput) SetDBInstanceIdentifier

func (s *DescribeDBInstanceAutomatedBackupsInput) SetDBInstanceIdentifier(v string) *DescribeDBInstanceAutomatedBackupsInput

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*DescribeDBInstanceAutomatedBackupsInput) SetDbiResourceId

func (s *DescribeDBInstanceAutomatedBackupsInput) SetDbiResourceId(v string) *DescribeDBInstanceAutomatedBackupsInput

SetDbiResourceId sets the DbiResourceId field's value.

func (*DescribeDBInstanceAutomatedBackupsInput) SetFilters

func (s *DescribeDBInstanceAutomatedBackupsInput) SetFilters(v []*Filter) *DescribeDBInstanceAutomatedBackupsInput

SetFilters sets the Filters field's value.

func (*DescribeDBInstanceAutomatedBackupsInput) SetMarker

func (s *DescribeDBInstanceAutomatedBackupsInput) SetMarker(v string) *DescribeDBInstanceAutomatedBackupsInput

SetMarker sets the Marker field's value.

func (*DescribeDBInstanceAutomatedBackupsInput) SetMaxRecords

func (s *DescribeDBInstanceAutomatedBackupsInput) SetMaxRecords(v int64) *DescribeDBInstanceAutomatedBackupsInput

SetMaxRecords sets the MaxRecords field's value.

func (DescribeDBInstanceAutomatedBackupsInput) String

func (s DescribeDBInstanceAutomatedBackupsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBInstanceAutomatedBackupsInput) Validate

func (s *DescribeDBInstanceAutomatedBackupsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeDBInstanceAutomatedBackupsOutput

type DescribeDBInstanceAutomatedBackupsOutput struct {

    // A list of DBInstanceAutomatedBackup instances.
    DBInstanceAutomatedBackups []*DBInstanceAutomatedBackup `locationNameList:"DBInstanceAutomatedBackup" type:"list"`

    // An optional pagination token provided by a previous request. If this parameter
    // is specified, the response includes only records beyond the marker, up to
    // the value specified by MaxRecords.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the result of a successful invocation of the DescribeDBInstanceAutomatedBackups action.

func (DescribeDBInstanceAutomatedBackupsOutput) GoString

func (s DescribeDBInstanceAutomatedBackupsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBInstanceAutomatedBackupsOutput) SetDBInstanceAutomatedBackups

func (s *DescribeDBInstanceAutomatedBackupsOutput) SetDBInstanceAutomatedBackups(v []*DBInstanceAutomatedBackup) *DescribeDBInstanceAutomatedBackupsOutput

SetDBInstanceAutomatedBackups sets the DBInstanceAutomatedBackups field's value.

func (*DescribeDBInstanceAutomatedBackupsOutput) SetMarker

func (s *DescribeDBInstanceAutomatedBackupsOutput) SetMarker(v string) *DescribeDBInstanceAutomatedBackupsOutput

SetMarker sets the Marker field's value.

func (DescribeDBInstanceAutomatedBackupsOutput) String

func (s DescribeDBInstanceAutomatedBackupsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDBInstancesInput

type DescribeDBInstancesInput struct {

    // The user-supplied instance identifier or the Amazon Resource Name (ARN) of
    // the DB instance. If this parameter is specified, information from only the
    // specific DB instance is returned. This parameter isn't case-sensitive.
    //
    // Constraints:
    //
    //    * If supplied, must match the identifier of an existing DB instance.
    DBInstanceIdentifier *string `type:"string"`

    // A filter that specifies one or more DB instances to describe.
    //
    // Supported Filters:
    //
    //    * db-cluster-id - Accepts DB cluster identifiers and DB cluster Amazon
    //    Resource Names (ARNs). The results list only includes information about
    //    the DB instances associated with the DB clusters identified by these ARNs.
    //
    //    * db-instance-id - Accepts DB instance identifiers and DB instance Amazon
    //    Resource Names (ARNs). The results list only includes information about
    //    the DB instances identified by these ARNs.
    //
    //    * dbi-resource-id - Accepts DB instance resource identifiers. The results
    //    list only includes information about the DB instances identified by these
    //    DB instance resource identifiers.
    //
    //    * domain - Accepts Active Directory directory IDs. The results list only
    //    includes information about the DB instances associated with these domains.
    //
    //    * engine - Accepts engine names. The results list only includes information
    //    about the DB instances for these engines.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // An optional pagination token provided by a previous DescribeDBInstances request.
    // If this parameter is specified, the response includes only records beyond
    // the marker, up to the value specified by MaxRecords.
    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 you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `type:"integer"`
    // contains filtered or unexported fields
}

func (DescribeDBInstancesInput) GoString

func (s DescribeDBInstancesInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBInstancesInput) SetDBInstanceIdentifier

func (s *DescribeDBInstancesInput) SetDBInstanceIdentifier(v string) *DescribeDBInstancesInput

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*DescribeDBInstancesInput) SetFilters

func (s *DescribeDBInstancesInput) SetFilters(v []*Filter) *DescribeDBInstancesInput

SetFilters sets the Filters field's value.

func (*DescribeDBInstancesInput) SetMarker

func (s *DescribeDBInstancesInput) SetMarker(v string) *DescribeDBInstancesInput

SetMarker sets the Marker field's value.

func (*DescribeDBInstancesInput) SetMaxRecords

func (s *DescribeDBInstancesInput) SetMaxRecords(v int64) *DescribeDBInstancesInput

SetMaxRecords sets the MaxRecords field's value.

func (DescribeDBInstancesInput) String

func (s DescribeDBInstancesInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBInstancesInput) Validate

func (s *DescribeDBInstancesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeDBInstancesOutput

type DescribeDBInstancesOutput struct {

    // A list of DBInstance instances.
    DBInstances []*DBInstance `locationNameList:"DBInstance" type:"list"`

    // An optional pagination token provided by a previous request. If this parameter
    // is specified, the response includes only records beyond the marker, up to
    // the value specified by MaxRecords .
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the result of a successful invocation of the DescribeDBInstances action.

func (DescribeDBInstancesOutput) GoString

func (s DescribeDBInstancesOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBInstancesOutput) SetDBInstances

func (s *DescribeDBInstancesOutput) SetDBInstances(v []*DBInstance) *DescribeDBInstancesOutput

SetDBInstances sets the DBInstances field's value.

func (*DescribeDBInstancesOutput) SetMarker

func (s *DescribeDBInstancesOutput) SetMarker(v string) *DescribeDBInstancesOutput

SetMarker sets the Marker field's value.

func (DescribeDBInstancesOutput) String

func (s DescribeDBInstancesOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDBLogFilesDetails

type DescribeDBLogFilesDetails struct {

    // A POSIX timestamp when the last log entry was written.
    LastWritten *int64 `type:"long"`

    // The name of the log file for the specified DB instance.
    LogFileName *string `type:"string"`

    // The size, in bytes, of the log file for the specified DB instance.
    Size *int64 `type:"long"`
    // contains filtered or unexported fields
}

This data type is used as a response element to DescribeDBLogFiles.

func (DescribeDBLogFilesDetails) GoString

func (s DescribeDBLogFilesDetails) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBLogFilesDetails) SetLastWritten

func (s *DescribeDBLogFilesDetails) SetLastWritten(v int64) *DescribeDBLogFilesDetails

SetLastWritten sets the LastWritten field's value.

func (*DescribeDBLogFilesDetails) SetLogFileName

func (s *DescribeDBLogFilesDetails) SetLogFileName(v string) *DescribeDBLogFilesDetails

SetLogFileName sets the LogFileName field's value.

func (*DescribeDBLogFilesDetails) SetSize

func (s *DescribeDBLogFilesDetails) SetSize(v int64) *DescribeDBLogFilesDetails

SetSize sets the Size field's value.

func (DescribeDBLogFilesDetails) String

func (s DescribeDBLogFilesDetails) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDBLogFilesInput

type DescribeDBLogFilesInput struct {

    // The customer-assigned name of the DB instance that contains the log files
    // you want to list.
    //
    // Constraints:
    //
    //    * Must match the identifier of an existing DBInstance.
    //
    // DBInstanceIdentifier is a required field
    DBInstanceIdentifier *string `type:"string" required:"true"`

    // Filters the available log files for files written since the specified date,
    // in POSIX timestamp format with milliseconds.
    FileLastWritten *int64 `type:"long"`

    // Filters the available log files for files larger than the specified size.
    FileSize *int64 `type:"long"`

    // Filters the available log files for log file names that contain the specified
    // string.
    FilenameContains *string `type:"string"`

    // This parameter isn't currently supported.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // The pagination token provided in the previous request. If this parameter
    // is specified the response includes only records beyond the marker, up to
    // MaxRecords.
    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 you can retrieve the remaining results.
    MaxRecords *int64 `type:"integer"`
    // contains filtered or unexported fields
}

func (DescribeDBLogFilesInput) GoString

func (s DescribeDBLogFilesInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBLogFilesInput) SetDBInstanceIdentifier

func (s *DescribeDBLogFilesInput) SetDBInstanceIdentifier(v string) *DescribeDBLogFilesInput

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*DescribeDBLogFilesInput) SetFileLastWritten

func (s *DescribeDBLogFilesInput) SetFileLastWritten(v int64) *DescribeDBLogFilesInput

SetFileLastWritten sets the FileLastWritten field's value.

func (*DescribeDBLogFilesInput) SetFileSize

func (s *DescribeDBLogFilesInput) SetFileSize(v int64) *DescribeDBLogFilesInput

SetFileSize sets the FileSize field's value.

func (*DescribeDBLogFilesInput) SetFilenameContains

func (s *DescribeDBLogFilesInput) SetFilenameContains(v string) *DescribeDBLogFilesInput

SetFilenameContains sets the FilenameContains field's value.

func (*DescribeDBLogFilesInput) SetFilters

func (s *DescribeDBLogFilesInput) SetFilters(v []*Filter) *DescribeDBLogFilesInput

SetFilters sets the Filters field's value.

func (*DescribeDBLogFilesInput) SetMarker

func (s *DescribeDBLogFilesInput) SetMarker(v string) *DescribeDBLogFilesInput

SetMarker sets the Marker field's value.

func (*DescribeDBLogFilesInput) SetMaxRecords

func (s *DescribeDBLogFilesInput) SetMaxRecords(v int64) *DescribeDBLogFilesInput

SetMaxRecords sets the MaxRecords field's value.

func (DescribeDBLogFilesInput) String

func (s DescribeDBLogFilesInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBLogFilesInput) Validate

func (s *DescribeDBLogFilesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeDBLogFilesOutput

type DescribeDBLogFilesOutput struct {

    // The DB log files returned.
    DescribeDBLogFiles []*DescribeDBLogFilesDetails `locationNameList:"DescribeDBLogFilesDetails" type:"list"`

    // A pagination token that can be used in a later DescribeDBLogFiles request.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

The response from a call to DescribeDBLogFiles.

func (DescribeDBLogFilesOutput) GoString

func (s DescribeDBLogFilesOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBLogFilesOutput) SetDescribeDBLogFiles

func (s *DescribeDBLogFilesOutput) SetDescribeDBLogFiles(v []*DescribeDBLogFilesDetails) *DescribeDBLogFilesOutput

SetDescribeDBLogFiles sets the DescribeDBLogFiles field's value.

func (*DescribeDBLogFilesOutput) SetMarker

func (s *DescribeDBLogFilesOutput) SetMarker(v string) *DescribeDBLogFilesOutput

SetMarker sets the Marker field's value.

func (DescribeDBLogFilesOutput) String

func (s DescribeDBLogFilesOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDBParameterGroupsInput

type DescribeDBParameterGroupsInput struct {

    // The name of a specific DB parameter group to return details for.
    //
    // Constraints:
    //
    //    * If supplied, must match the name of an existing DBClusterParameterGroup.
    DBParameterGroupName *string `type:"string"`

    // This parameter isn't currently supported.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // An optional pagination token provided by a previous DescribeDBParameterGroups
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    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 you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `type:"integer"`
    // contains filtered or unexported fields
}

func (DescribeDBParameterGroupsInput) GoString

func (s DescribeDBParameterGroupsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBParameterGroupsInput) SetDBParameterGroupName

func (s *DescribeDBParameterGroupsInput) SetDBParameterGroupName(v string) *DescribeDBParameterGroupsInput

SetDBParameterGroupName sets the DBParameterGroupName field's value.

func (*DescribeDBParameterGroupsInput) SetFilters

func (s *DescribeDBParameterGroupsInput) SetFilters(v []*Filter) *DescribeDBParameterGroupsInput

SetFilters sets the Filters field's value.

func (*DescribeDBParameterGroupsInput) SetMarker

func (s *DescribeDBParameterGroupsInput) SetMarker(v string) *DescribeDBParameterGroupsInput

SetMarker sets the Marker field's value.

func (*DescribeDBParameterGroupsInput) SetMaxRecords

func (s *DescribeDBParameterGroupsInput) SetMaxRecords(v int64) *DescribeDBParameterGroupsInput

SetMaxRecords sets the MaxRecords field's value.

func (DescribeDBParameterGroupsInput) String

func (s DescribeDBParameterGroupsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBParameterGroupsInput) Validate

func (s *DescribeDBParameterGroupsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeDBParameterGroupsOutput

type DescribeDBParameterGroupsOutput struct {

    // A list of DBParameterGroup instances.
    DBParameterGroups []*DBParameterGroup `locationNameList:"DBParameterGroup" type:"list"`

    // An optional pagination token provided by a previous request. If this parameter
    // is specified, the response includes only records beyond the marker, up to
    // the value specified by MaxRecords.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the result of a successful invocation of the DescribeDBParameterGroups action.

func (DescribeDBParameterGroupsOutput) GoString

func (s DescribeDBParameterGroupsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBParameterGroupsOutput) SetDBParameterGroups

func (s *DescribeDBParameterGroupsOutput) SetDBParameterGroups(v []*DBParameterGroup) *DescribeDBParameterGroupsOutput

SetDBParameterGroups sets the DBParameterGroups field's value.

func (*DescribeDBParameterGroupsOutput) SetMarker

func (s *DescribeDBParameterGroupsOutput) SetMarker(v string) *DescribeDBParameterGroupsOutput

SetMarker sets the Marker field's value.

func (DescribeDBParameterGroupsOutput) String

func (s DescribeDBParameterGroupsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDBParametersInput

type DescribeDBParametersInput struct {

    // The name of a specific DB parameter group to return details for.
    //
    // Constraints:
    //
    //    * If supplied, must match the name of an existing DBParameterGroup.
    //
    // DBParameterGroupName is a required field
    DBParameterGroupName *string `type:"string" required:"true"`

    // This parameter isn't currently supported.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // An optional pagination token provided by a previous DescribeDBParameters
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    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 you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `type:"integer"`

    // The parameter types to return.
    //
    // Default: All parameter types returned
    //
    // Valid Values: user | system | engine-default
    Source *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeDBParametersInput) GoString

func (s DescribeDBParametersInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBParametersInput) SetDBParameterGroupName

func (s *DescribeDBParametersInput) SetDBParameterGroupName(v string) *DescribeDBParametersInput

SetDBParameterGroupName sets the DBParameterGroupName field's value.

func (*DescribeDBParametersInput) SetFilters

func (s *DescribeDBParametersInput) SetFilters(v []*Filter) *DescribeDBParametersInput

SetFilters sets the Filters field's value.

func (*DescribeDBParametersInput) SetMarker

func (s *DescribeDBParametersInput) SetMarker(v string) *DescribeDBParametersInput

SetMarker sets the Marker field's value.

func (*DescribeDBParametersInput) SetMaxRecords

func (s *DescribeDBParametersInput) SetMaxRecords(v int64) *DescribeDBParametersInput

SetMaxRecords sets the MaxRecords field's value.

func (*DescribeDBParametersInput) SetSource

func (s *DescribeDBParametersInput) SetSource(v string) *DescribeDBParametersInput

SetSource sets the Source field's value.

func (DescribeDBParametersInput) String

func (s DescribeDBParametersInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBParametersInput) Validate

func (s *DescribeDBParametersInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeDBParametersOutput

type DescribeDBParametersOutput struct {

    // An optional pagination token provided by a previous request. If this parameter
    // is specified, the response includes only records beyond the marker, up to
    // the value specified by MaxRecords.
    Marker *string `type:"string"`

    // A list of Parameter values.
    Parameters []*Parameter `locationNameList:"Parameter" type:"list"`
    // contains filtered or unexported fields
}

Contains the result of a successful invocation of the DescribeDBParameters action.

func (DescribeDBParametersOutput) GoString

func (s DescribeDBParametersOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBParametersOutput) SetMarker

func (s *DescribeDBParametersOutput) SetMarker(v string) *DescribeDBParametersOutput

SetMarker sets the Marker field's value.

func (*DescribeDBParametersOutput) SetParameters

func (s *DescribeDBParametersOutput) SetParameters(v []*Parameter) *DescribeDBParametersOutput

SetParameters sets the Parameters field's value.

func (DescribeDBParametersOutput) String

func (s DescribeDBParametersOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDBProxiesInput

type DescribeDBProxiesInput struct {

    // The name of the DB proxy. If you omit this parameter, the output includes
    // information about all DB proxies owned by your Amazon Web Services account
    // ID.
    DBProxyName *string `type:"string"`

    // This parameter is not currently supported.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // An optional pagination token provided by a previous request. If this parameter
    // is specified, the response includes only records beyond the marker, up to
    // the value specified by MaxRecords.
    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.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `min:"20" type:"integer"`
    // contains filtered or unexported fields
}

func (DescribeDBProxiesInput) GoString

func (s DescribeDBProxiesInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBProxiesInput) SetDBProxyName

func (s *DescribeDBProxiesInput) SetDBProxyName(v string) *DescribeDBProxiesInput

SetDBProxyName sets the DBProxyName field's value.

func (*DescribeDBProxiesInput) SetFilters

func (s *DescribeDBProxiesInput) SetFilters(v []*Filter) *DescribeDBProxiesInput

SetFilters sets the Filters field's value.

func (*DescribeDBProxiesInput) SetMarker

func (s *DescribeDBProxiesInput) SetMarker(v string) *DescribeDBProxiesInput

SetMarker sets the Marker field's value.

func (*DescribeDBProxiesInput) SetMaxRecords

func (s *DescribeDBProxiesInput) SetMaxRecords(v int64) *DescribeDBProxiesInput

SetMaxRecords sets the MaxRecords field's value.

func (DescribeDBProxiesInput) String

func (s DescribeDBProxiesInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBProxiesInput) Validate

func (s *DescribeDBProxiesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeDBProxiesOutput

type DescribeDBProxiesOutput struct {

    // A return value representing an arbitrary number of DBProxy data structures.
    DBProxies []*DBProxy `type:"list"`

    // An optional pagination token provided by a previous request. If this parameter
    // is specified, the response includes only records beyond the marker, up to
    // the value specified by MaxRecords.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeDBProxiesOutput) GoString

func (s DescribeDBProxiesOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBProxiesOutput) SetDBProxies

func (s *DescribeDBProxiesOutput) SetDBProxies(v []*DBProxy) *DescribeDBProxiesOutput

SetDBProxies sets the DBProxies field's value.

func (*DescribeDBProxiesOutput) SetMarker

func (s *DescribeDBProxiesOutput) SetMarker(v string) *DescribeDBProxiesOutput

SetMarker sets the Marker field's value.

func (DescribeDBProxiesOutput) String

func (s DescribeDBProxiesOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDBProxyEndpointsInput

type DescribeDBProxyEndpointsInput struct {

    // The name of a DB proxy endpoint to describe. If you omit this parameter,
    // the output includes information about all DB proxy endpoints associated with
    // the specified proxy.
    DBProxyEndpointName *string `min:"1" type:"string"`

    // The name of the DB proxy whose endpoints you want to describe. If you omit
    // this parameter, the output includes information about all DB proxy endpoints
    // associated with all your DB proxies.
    DBProxyName *string `min:"1" type:"string"`

    // This parameter is not currently supported.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // An optional pagination token provided by a previous request. If this parameter
    // is specified, the response includes only records beyond the marker, up to
    // the value specified by MaxRecords.
    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.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `min:"20" type:"integer"`
    // contains filtered or unexported fields
}

func (DescribeDBProxyEndpointsInput) GoString

func (s DescribeDBProxyEndpointsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBProxyEndpointsInput) SetDBProxyEndpointName

func (s *DescribeDBProxyEndpointsInput) SetDBProxyEndpointName(v string) *DescribeDBProxyEndpointsInput

SetDBProxyEndpointName sets the DBProxyEndpointName field's value.

func (*DescribeDBProxyEndpointsInput) SetDBProxyName

func (s *DescribeDBProxyEndpointsInput) SetDBProxyName(v string) *DescribeDBProxyEndpointsInput

SetDBProxyName sets the DBProxyName field's value.

func (*DescribeDBProxyEndpointsInput) SetFilters

func (s *DescribeDBProxyEndpointsInput) SetFilters(v []*Filter) *DescribeDBProxyEndpointsInput

SetFilters sets the Filters field's value.

func (*DescribeDBProxyEndpointsInput) SetMarker

func (s *DescribeDBProxyEndpointsInput) SetMarker(v string) *DescribeDBProxyEndpointsInput

SetMarker sets the Marker field's value.

func (*DescribeDBProxyEndpointsInput) SetMaxRecords

func (s *DescribeDBProxyEndpointsInput) SetMaxRecords(v int64) *DescribeDBProxyEndpointsInput

SetMaxRecords sets the MaxRecords field's value.

func (DescribeDBProxyEndpointsInput) String

func (s DescribeDBProxyEndpointsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBProxyEndpointsInput) Validate

func (s *DescribeDBProxyEndpointsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeDBProxyEndpointsOutput

type DescribeDBProxyEndpointsOutput struct {

    // The list of ProxyEndpoint objects returned by the API operation.
    DBProxyEndpoints []*DBProxyEndpoint `type:"list"`

    // An optional pagination token provided by a previous request. If this parameter
    // is specified, the response includes only records beyond the marker, up to
    // the value specified by MaxRecords.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeDBProxyEndpointsOutput) GoString

func (s DescribeDBProxyEndpointsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBProxyEndpointsOutput) SetDBProxyEndpoints

func (s *DescribeDBProxyEndpointsOutput) SetDBProxyEndpoints(v []*DBProxyEndpoint) *DescribeDBProxyEndpointsOutput

SetDBProxyEndpoints sets the DBProxyEndpoints field's value.

func (*DescribeDBProxyEndpointsOutput) SetMarker

func (s *DescribeDBProxyEndpointsOutput) SetMarker(v string) *DescribeDBProxyEndpointsOutput

SetMarker sets the Marker field's value.

func (DescribeDBProxyEndpointsOutput) String

func (s DescribeDBProxyEndpointsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDBProxyTargetGroupsInput

type DescribeDBProxyTargetGroupsInput struct {

    // The identifier of the DBProxy associated with the target group.
    //
    // DBProxyName is a required field
    DBProxyName *string `type:"string" required:"true"`

    // This parameter is not currently supported.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // An optional pagination token provided by a previous request. If this parameter
    // is specified, the response includes only records beyond the marker, up to
    // the value specified by MaxRecords.
    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.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `min:"20" type:"integer"`

    // The identifier of the DBProxyTargetGroup to describe.
    TargetGroupName *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeDBProxyTargetGroupsInput) GoString

func (s DescribeDBProxyTargetGroupsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBProxyTargetGroupsInput) SetDBProxyName

func (s *DescribeDBProxyTargetGroupsInput) SetDBProxyName(v string) *DescribeDBProxyTargetGroupsInput

SetDBProxyName sets the DBProxyName field's value.

func (*DescribeDBProxyTargetGroupsInput) SetFilters

func (s *DescribeDBProxyTargetGroupsInput) SetFilters(v []*Filter) *DescribeDBProxyTargetGroupsInput

SetFilters sets the Filters field's value.

func (*DescribeDBProxyTargetGroupsInput) SetMarker

func (s *DescribeDBProxyTargetGroupsInput) SetMarker(v string) *DescribeDBProxyTargetGroupsInput

SetMarker sets the Marker field's value.

func (*DescribeDBProxyTargetGroupsInput) SetMaxRecords

func (s *DescribeDBProxyTargetGroupsInput) SetMaxRecords(v int64) *DescribeDBProxyTargetGroupsInput

SetMaxRecords sets the MaxRecords field's value.

func (*DescribeDBProxyTargetGroupsInput) SetTargetGroupName

func (s *DescribeDBProxyTargetGroupsInput) SetTargetGroupName(v string) *DescribeDBProxyTargetGroupsInput

SetTargetGroupName sets the TargetGroupName field's value.

func (DescribeDBProxyTargetGroupsInput) String

func (s DescribeDBProxyTargetGroupsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBProxyTargetGroupsInput) Validate

func (s *DescribeDBProxyTargetGroupsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeDBProxyTargetGroupsOutput

type DescribeDBProxyTargetGroupsOutput struct {

    // An optional pagination token provided by a previous request. If this parameter
    // is specified, the response includes only records beyond the marker, up to
    // the value specified by MaxRecords.
    Marker *string `type:"string"`

    // An arbitrary number of DBProxyTargetGroup objects, containing details of
    // the corresponding target groups.
    TargetGroups []*DBProxyTargetGroup `type:"list"`
    // contains filtered or unexported fields
}

func (DescribeDBProxyTargetGroupsOutput) GoString

func (s DescribeDBProxyTargetGroupsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBProxyTargetGroupsOutput) SetMarker

func (s *DescribeDBProxyTargetGroupsOutput) SetMarker(v string) *DescribeDBProxyTargetGroupsOutput

SetMarker sets the Marker field's value.

func (*DescribeDBProxyTargetGroupsOutput) SetTargetGroups

func (s *DescribeDBProxyTargetGroupsOutput) SetTargetGroups(v []*DBProxyTargetGroup) *DescribeDBProxyTargetGroupsOutput

SetTargetGroups sets the TargetGroups field's value.

func (DescribeDBProxyTargetGroupsOutput) String

func (s DescribeDBProxyTargetGroupsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDBProxyTargetsInput

type DescribeDBProxyTargetsInput struct {

    // The identifier of the DBProxyTarget to describe.
    //
    // DBProxyName is a required field
    DBProxyName *string `type:"string" required:"true"`

    // This parameter is not currently supported.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // An optional pagination token provided by a previous request. If this parameter
    // is specified, the response includes only records beyond the marker, up to
    // the value specified by MaxRecords.
    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.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `min:"20" type:"integer"`

    // The identifier of the DBProxyTargetGroup to describe.
    TargetGroupName *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeDBProxyTargetsInput) GoString

func (s DescribeDBProxyTargetsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBProxyTargetsInput) SetDBProxyName

func (s *DescribeDBProxyTargetsInput) SetDBProxyName(v string) *DescribeDBProxyTargetsInput

SetDBProxyName sets the DBProxyName field's value.

func (*DescribeDBProxyTargetsInput) SetFilters

func (s *DescribeDBProxyTargetsInput) SetFilters(v []*Filter) *DescribeDBProxyTargetsInput

SetFilters sets the Filters field's value.

func (*DescribeDBProxyTargetsInput) SetMarker

func (s *DescribeDBProxyTargetsInput) SetMarker(v string) *DescribeDBProxyTargetsInput

SetMarker sets the Marker field's value.

func (*DescribeDBProxyTargetsInput) SetMaxRecords

func (s *DescribeDBProxyTargetsInput) SetMaxRecords(v int64) *DescribeDBProxyTargetsInput

SetMaxRecords sets the MaxRecords field's value.

func (*DescribeDBProxyTargetsInput) SetTargetGroupName

func (s *DescribeDBProxyTargetsInput) SetTargetGroupName(v string) *DescribeDBProxyTargetsInput

SetTargetGroupName sets the TargetGroupName field's value.

func (DescribeDBProxyTargetsInput) String

func (s DescribeDBProxyTargetsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBProxyTargetsInput) Validate

func (s *DescribeDBProxyTargetsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeDBProxyTargetsOutput

type DescribeDBProxyTargetsOutput struct {

    // An optional pagination token provided by a previous request. If this parameter
    // is specified, the response includes only records beyond the marker, up to
    // the value specified by MaxRecords.
    Marker *string `type:"string"`

    // An arbitrary number of DBProxyTarget objects, containing details of the corresponding
    // targets.
    Targets []*DBProxyTarget `type:"list"`
    // contains filtered or unexported fields
}

func (DescribeDBProxyTargetsOutput) GoString

func (s DescribeDBProxyTargetsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBProxyTargetsOutput) SetMarker

func (s *DescribeDBProxyTargetsOutput) SetMarker(v string) *DescribeDBProxyTargetsOutput

SetMarker sets the Marker field's value.

func (*DescribeDBProxyTargetsOutput) SetTargets

func (s *DescribeDBProxyTargetsOutput) SetTargets(v []*DBProxyTarget) *DescribeDBProxyTargetsOutput

SetTargets sets the Targets field's value.

func (DescribeDBProxyTargetsOutput) String

func (s DescribeDBProxyTargetsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDBRecommendationsInput

type DescribeDBRecommendationsInput struct {

    // A filter that specifies one or more recommendations to describe.
    //
    // Supported Filters:
    //
    //    * recommendation-id - Accepts a list of recommendation identifiers. The
    //    results list only includes the recommendations whose identifier is one
    //    of the specified filter values.
    //
    //    * status - Accepts a list of recommendation statuses. Valid values: active
    //    - The recommendations which are ready for you to apply. pending - The
    //    applied or scheduled recommendations which are in progress. resolved -
    //    The recommendations which are completed. dismissed - The recommendations
    //    that you dismissed. The results list only includes the recommendations
    //    whose status is one of the specified filter values.
    //
    //    * severity - Accepts a list of recommendation severities. The results
    //    list only includes the recommendations whose severity is one of the specified
    //    filter values. Valid values: high medium low informational
    //
    //    * type-id - Accepts a list of recommendation type identifiers. The results
    //    list only includes the recommendations whose type is one of the specified
    //    filter values.
    //
    //    * dbi-resource-id - Accepts a list of database resource identifiers. The
    //    results list only includes the recommendations that generated for the
    //    specified databases.
    //
    //    * cluster-resource-id - Accepts a list of cluster resource identifiers.
    //    The results list only includes the recommendations that generated for
    //    the specified clusters.
    //
    //    * pg-arn - Accepts a list of parameter group ARNs. The results list only
    //    includes the recommendations that generated for the specified parameter
    //    groups.
    //
    //    * cluster-pg-arn - Accepts a list of cluster parameter group ARNs. The
    //    results list only includes the recommendations that generated for the
    //    specified cluster parameter groups.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // A filter to include only the recommendations that were updated after this
    // specified time.
    LastUpdatedAfter *time.Time `type:"timestamp"`

    // A filter to include only the recommendations that were updated before this
    // specified time.
    LastUpdatedBefore *time.Time `type:"timestamp"`

    // The language that you choose to return the list of recommendations.
    //
    // Valid values:
    //
    //    * en
    //
    //    * en_UK
    //
    //    * de
    //
    //    * es
    //
    //    * fr
    //
    //    * id
    //
    //    * it
    //
    //    * ja
    //
    //    * ko
    //
    //    * pt_BR
    //
    //    * zh_TW
    //
    //    * zh_CN
    Locale *string `type:"string"`

    // An optional pagination token provided by a previous DescribeDBRecommendations
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    Marker *string `type:"string"`

    // The maximum number of recommendations 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 you can retrieve the remaining
    // results.
    MaxRecords *int64 `type:"integer"`
    // contains filtered or unexported fields
}

func (DescribeDBRecommendationsInput) GoString

func (s DescribeDBRecommendationsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBRecommendationsInput) SetFilters

func (s *DescribeDBRecommendationsInput) SetFilters(v []*Filter) *DescribeDBRecommendationsInput

SetFilters sets the Filters field's value.

func (*DescribeDBRecommendationsInput) SetLastUpdatedAfter

func (s *DescribeDBRecommendationsInput) SetLastUpdatedAfter(v time.Time) *DescribeDBRecommendationsInput

SetLastUpdatedAfter sets the LastUpdatedAfter field's value.

func (*DescribeDBRecommendationsInput) SetLastUpdatedBefore

func (s *DescribeDBRecommendationsInput) SetLastUpdatedBefore(v time.Time) *DescribeDBRecommendationsInput

SetLastUpdatedBefore sets the LastUpdatedBefore field's value.

func (*DescribeDBRecommendationsInput) SetLocale

func (s *DescribeDBRecommendationsInput) SetLocale(v string) *DescribeDBRecommendationsInput

SetLocale sets the Locale field's value.

func (*DescribeDBRecommendationsInput) SetMarker

func (s *DescribeDBRecommendationsInput) SetMarker(v string) *DescribeDBRecommendationsInput

SetMarker sets the Marker field's value.

func (*DescribeDBRecommendationsInput) SetMaxRecords

func (s *DescribeDBRecommendationsInput) SetMaxRecords(v int64) *DescribeDBRecommendationsInput

SetMaxRecords sets the MaxRecords field's value.

func (DescribeDBRecommendationsInput) String

func (s DescribeDBRecommendationsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBRecommendationsInput) Validate

func (s *DescribeDBRecommendationsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeDBRecommendationsOutput

type DescribeDBRecommendationsOutput struct {

    // A list of recommendations which is returned from DescribeDBRecommendations
    // API request.
    DBRecommendations []*DBRecommendation `type:"list"`

    // An optional pagination token provided by a previous DBRecommendationsMessage
    // request. This token can be used later in a DescribeDBRecomendations request.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeDBRecommendationsOutput) GoString

func (s DescribeDBRecommendationsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBRecommendationsOutput) SetDBRecommendations

func (s *DescribeDBRecommendationsOutput) SetDBRecommendations(v []*DBRecommendation) *DescribeDBRecommendationsOutput

SetDBRecommendations sets the DBRecommendations field's value.

func (*DescribeDBRecommendationsOutput) SetMarker

func (s *DescribeDBRecommendationsOutput) SetMarker(v string) *DescribeDBRecommendationsOutput

SetMarker sets the Marker field's value.

func (DescribeDBRecommendationsOutput) String

func (s DescribeDBRecommendationsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDBSecurityGroupsInput

type DescribeDBSecurityGroupsInput struct {

    // The name of the DB security group to return details for.
    DBSecurityGroupName *string `type:"string"`

    // This parameter isn't currently supported.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // An optional pagination token provided by a previous DescribeDBSecurityGroups
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    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 you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `type:"integer"`
    // contains filtered or unexported fields
}

func (DescribeDBSecurityGroupsInput) GoString

func (s DescribeDBSecurityGroupsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBSecurityGroupsInput) SetDBSecurityGroupName

func (s *DescribeDBSecurityGroupsInput) SetDBSecurityGroupName(v string) *DescribeDBSecurityGroupsInput

SetDBSecurityGroupName sets the DBSecurityGroupName field's value.

func (*DescribeDBSecurityGroupsInput) SetFilters

func (s *DescribeDBSecurityGroupsInput) SetFilters(v []*Filter) *DescribeDBSecurityGroupsInput

SetFilters sets the Filters field's value.

func (*DescribeDBSecurityGroupsInput) SetMarker

func (s *DescribeDBSecurityGroupsInput) SetMarker(v string) *DescribeDBSecurityGroupsInput

SetMarker sets the Marker field's value.

func (*DescribeDBSecurityGroupsInput) SetMaxRecords

func (s *DescribeDBSecurityGroupsInput) SetMaxRecords(v int64) *DescribeDBSecurityGroupsInput

SetMaxRecords sets the MaxRecords field's value.

func (DescribeDBSecurityGroupsInput) String

func (s DescribeDBSecurityGroupsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBSecurityGroupsInput) Validate

func (s *DescribeDBSecurityGroupsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeDBSecurityGroupsOutput

type DescribeDBSecurityGroupsOutput struct {

    // A list of DBSecurityGroup instances.
    DBSecurityGroups []*DBSecurityGroup `locationNameList:"DBSecurityGroup" type:"list"`

    // An optional pagination token provided by a previous request. If this parameter
    // is specified, the response includes only records beyond the marker, up to
    // the value specified by MaxRecords.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the result of a successful invocation of the DescribeDBSecurityGroups action.

func (DescribeDBSecurityGroupsOutput) GoString

func (s DescribeDBSecurityGroupsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBSecurityGroupsOutput) SetDBSecurityGroups

func (s *DescribeDBSecurityGroupsOutput) SetDBSecurityGroups(v []*DBSecurityGroup) *DescribeDBSecurityGroupsOutput

SetDBSecurityGroups sets the DBSecurityGroups field's value.

func (*DescribeDBSecurityGroupsOutput) SetMarker

func (s *DescribeDBSecurityGroupsOutput) SetMarker(v string) *DescribeDBSecurityGroupsOutput

SetMarker sets the Marker field's value.

func (DescribeDBSecurityGroupsOutput) String

func (s DescribeDBSecurityGroupsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDBShardGroupsInput

type DescribeDBShardGroupsInput struct {

    // The user-supplied DB shard group identifier or the Amazon Resource Name (ARN)
    // of the DB shard group. If this parameter is specified, information for only
    // the specific DB shard group is returned. This parameter isn't case-sensitive.
    //
    // Constraints:
    //
    //    * If supplied, must match an existing DB shard group identifier.
    DBShardGroupIdentifier *string `min:"1" type:"string"`

    // A filter that specifies one or more DB shard groups to describe.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // An optional pagination token provided by a previous DescribeDBShardGroups
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    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 you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100
    MaxRecords *int64 `min:"20" type:"integer"`
    // contains filtered or unexported fields
}

func (DescribeDBShardGroupsInput) GoString

func (s DescribeDBShardGroupsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBShardGroupsInput) SetDBShardGroupIdentifier

func (s *DescribeDBShardGroupsInput) SetDBShardGroupIdentifier(v string) *DescribeDBShardGroupsInput

SetDBShardGroupIdentifier sets the DBShardGroupIdentifier field's value.

func (*DescribeDBShardGroupsInput) SetFilters

func (s *DescribeDBShardGroupsInput) SetFilters(v []*Filter) *DescribeDBShardGroupsInput

SetFilters sets the Filters field's value.

func (*DescribeDBShardGroupsInput) SetMarker

func (s *DescribeDBShardGroupsInput) SetMarker(v string) *DescribeDBShardGroupsInput

SetMarker sets the Marker field's value.

func (*DescribeDBShardGroupsInput) SetMaxRecords

func (s *DescribeDBShardGroupsInput) SetMaxRecords(v int64) *DescribeDBShardGroupsInput

SetMaxRecords sets the MaxRecords field's value.

func (DescribeDBShardGroupsInput) String

func (s DescribeDBShardGroupsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBShardGroupsInput) Validate

func (s *DescribeDBShardGroupsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeDBShardGroupsOutput

type DescribeDBShardGroupsOutput struct {

    // Contains a list of DB shard groups for the user.
    DBShardGroups []*DBShardGroup `locationNameList:"DBShardGroup" type:"list"`

    // A pagination token that can be used in a later DescribeDBClusters request.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeDBShardGroupsOutput) GoString

func (s DescribeDBShardGroupsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBShardGroupsOutput) SetDBShardGroups

func (s *DescribeDBShardGroupsOutput) SetDBShardGroups(v []*DBShardGroup) *DescribeDBShardGroupsOutput

SetDBShardGroups sets the DBShardGroups field's value.

func (*DescribeDBShardGroupsOutput) SetMarker

func (s *DescribeDBShardGroupsOutput) SetMarker(v string) *DescribeDBShardGroupsOutput

SetMarker sets the Marker field's value.

func (DescribeDBShardGroupsOutput) String

func (s DescribeDBShardGroupsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDBSnapshotAttributesInput

type DescribeDBSnapshotAttributesInput struct {

    // The identifier for the DB snapshot to describe the attributes for.
    //
    // DBSnapshotIdentifier is a required field
    DBSnapshotIdentifier *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DescribeDBSnapshotAttributesInput) GoString

func (s DescribeDBSnapshotAttributesInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBSnapshotAttributesInput) SetDBSnapshotIdentifier

func (s *DescribeDBSnapshotAttributesInput) SetDBSnapshotIdentifier(v string) *DescribeDBSnapshotAttributesInput

SetDBSnapshotIdentifier sets the DBSnapshotIdentifier field's value.

func (DescribeDBSnapshotAttributesInput) String

func (s DescribeDBSnapshotAttributesInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBSnapshotAttributesInput) Validate

func (s *DescribeDBSnapshotAttributesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeDBSnapshotAttributesOutput

type DescribeDBSnapshotAttributesOutput struct {

    // Contains the results of a successful call to the DescribeDBSnapshotAttributes
    // API action.
    //
    // Manual DB snapshot attributes are used to authorize other Amazon Web Services
    // accounts to copy or restore a manual DB snapshot. For more information, see
    // the ModifyDBSnapshotAttribute API action.
    DBSnapshotAttributesResult *DBSnapshotAttributesResult `type:"structure"`
    // contains filtered or unexported fields
}

func (DescribeDBSnapshotAttributesOutput) GoString

func (s DescribeDBSnapshotAttributesOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBSnapshotAttributesOutput) SetDBSnapshotAttributesResult

func (s *DescribeDBSnapshotAttributesOutput) SetDBSnapshotAttributesResult(v *DBSnapshotAttributesResult) *DescribeDBSnapshotAttributesOutput

SetDBSnapshotAttributesResult sets the DBSnapshotAttributesResult field's value.

func (DescribeDBSnapshotAttributesOutput) String

func (s DescribeDBSnapshotAttributesOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDBSnapshotTenantDatabasesInput

type DescribeDBSnapshotTenantDatabasesInput struct {

    // The ID of the DB instance used to create the DB snapshots. This parameter
    // isn't case-sensitive.
    //
    // Constraints:
    //
    //    * If supplied, must match the identifier of an existing DBInstance.
    DBInstanceIdentifier *string `type:"string"`

    // The ID of a DB snapshot that contains the tenant databases to describe. This
    // value is stored as a lowercase string.
    //
    // Constraints:
    //
    //    * If you specify this parameter, the value must match the ID of an existing
    //    DB snapshot.
    //
    //    * If you specify an automatic snapshot, you must also specify SnapshotType.
    DBSnapshotIdentifier *string `type:"string"`

    // A specific DB resource identifier to describe.
    DbiResourceId *string `type:"string"`

    // A filter that specifies one or more tenant databases to describe.
    //
    // Supported filters:
    //
    //    * tenant-db-name - Tenant database names. The results list only includes
    //    information about the tenant databases that match these tenant DB names.
    //
    //    * tenant-database-resource-id - Tenant database resource identifiers.
    //    The results list only includes information about the tenant databases
    //    contained within the DB snapshots.
    //
    //    * dbi-resource-id - DB instance resource identifiers. The results list
    //    only includes information about snapshots containing tenant databases
    //    contained within the DB instances identified by these resource identifiers.
    //
    //    * db-instance-id - Accepts DB instance identifiers and DB instance Amazon
    //    Resource Names (ARNs).
    //
    //    * db-snapshot-id - Accepts DB snapshot identifiers.
    //
    //    * snapshot-type - Accepts types of DB snapshots.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // An optional pagination token provided by a previous DescribeDBSnapshotTenantDatabases
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    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 you can retrieve the remaining results.
    MaxRecords *int64 `type:"integer"`

    // The type of DB snapshots to be returned. You can specify one of the following
    // values:
    //
    //    * automated – All DB snapshots that have been automatically taken by
    //    Amazon RDS for my Amazon Web Services account.
    //
    //    * manual – All DB snapshots that have been taken by my Amazon Web Services
    //    account.
    //
    //    * shared – All manual DB snapshots that have been shared to my Amazon
    //    Web Services account.
    //
    //    * public – All DB snapshots that have been marked as public.
    //
    //    * awsbackup – All DB snapshots managed by the Amazon Web Services Backup
    //    service.
    SnapshotType *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeDBSnapshotTenantDatabasesInput) GoString

func (s DescribeDBSnapshotTenantDatabasesInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBSnapshotTenantDatabasesInput) SetDBInstanceIdentifier

func (s *DescribeDBSnapshotTenantDatabasesInput) SetDBInstanceIdentifier(v string) *DescribeDBSnapshotTenantDatabasesInput

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*DescribeDBSnapshotTenantDatabasesInput) SetDBSnapshotIdentifier

func (s *DescribeDBSnapshotTenantDatabasesInput) SetDBSnapshotIdentifier(v string) *DescribeDBSnapshotTenantDatabasesInput

SetDBSnapshotIdentifier sets the DBSnapshotIdentifier field's value.

func (*DescribeDBSnapshotTenantDatabasesInput) SetDbiResourceId

func (s *DescribeDBSnapshotTenantDatabasesInput) SetDbiResourceId(v string) *DescribeDBSnapshotTenantDatabasesInput

SetDbiResourceId sets the DbiResourceId field's value.

func (*DescribeDBSnapshotTenantDatabasesInput) SetFilters

func (s *DescribeDBSnapshotTenantDatabasesInput) SetFilters(v []*Filter) *DescribeDBSnapshotTenantDatabasesInput

SetFilters sets the Filters field's value.

func (*DescribeDBSnapshotTenantDatabasesInput) SetMarker

func (s *DescribeDBSnapshotTenantDatabasesInput) SetMarker(v string) *DescribeDBSnapshotTenantDatabasesInput

SetMarker sets the Marker field's value.

func (*DescribeDBSnapshotTenantDatabasesInput) SetMaxRecords

func (s *DescribeDBSnapshotTenantDatabasesInput) SetMaxRecords(v int64) *DescribeDBSnapshotTenantDatabasesInput

SetMaxRecords sets the MaxRecords field's value.

func (*DescribeDBSnapshotTenantDatabasesInput) SetSnapshotType

func (s *DescribeDBSnapshotTenantDatabasesInput) SetSnapshotType(v string) *DescribeDBSnapshotTenantDatabasesInput

SetSnapshotType sets the SnapshotType field's value.

func (DescribeDBSnapshotTenantDatabasesInput) String

func (s DescribeDBSnapshotTenantDatabasesInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBSnapshotTenantDatabasesInput) Validate

func (s *DescribeDBSnapshotTenantDatabasesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeDBSnapshotTenantDatabasesOutput

type DescribeDBSnapshotTenantDatabasesOutput struct {

    // A list of DB snapshot tenant databases.
    DBSnapshotTenantDatabases []*DBSnapshotTenantDatabase `locationNameList:"DBSnapshotTenantDatabase" type:"list"`

    // An optional pagination token provided by a previous request. If this parameter
    // is specified, the response includes only records beyond the marker, up to
    // the value specified by MaxRecords.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeDBSnapshotTenantDatabasesOutput) GoString

func (s DescribeDBSnapshotTenantDatabasesOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBSnapshotTenantDatabasesOutput) SetDBSnapshotTenantDatabases

func (s *DescribeDBSnapshotTenantDatabasesOutput) SetDBSnapshotTenantDatabases(v []*DBSnapshotTenantDatabase) *DescribeDBSnapshotTenantDatabasesOutput

SetDBSnapshotTenantDatabases sets the DBSnapshotTenantDatabases field's value.

func (*DescribeDBSnapshotTenantDatabasesOutput) SetMarker

func (s *DescribeDBSnapshotTenantDatabasesOutput) SetMarker(v string) *DescribeDBSnapshotTenantDatabasesOutput

SetMarker sets the Marker field's value.

func (DescribeDBSnapshotTenantDatabasesOutput) String

func (s DescribeDBSnapshotTenantDatabasesOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDBSnapshotsInput

type DescribeDBSnapshotsInput struct {

    // The ID of the DB instance to retrieve the list of DB snapshots for. This
    // parameter isn't case-sensitive.
    //
    // Constraints:
    //
    //    * If supplied, must match the identifier of an existing DBInstance.
    DBInstanceIdentifier *string `type:"string"`

    // A specific DB snapshot identifier to describe. This value is stored as a
    // lowercase string.
    //
    // Constraints:
    //
    //    * If supplied, must match the identifier of an existing DBSnapshot.
    //
    //    * If this identifier is for an automated snapshot, the SnapshotType parameter
    //    must also be specified.
    DBSnapshotIdentifier *string `type:"string"`

    // A specific DB resource ID to describe.
    DbiResourceId *string `type:"string"`

    // A filter that specifies one or more DB snapshots to describe.
    //
    // Supported filters:
    //
    //    * db-instance-id - Accepts DB instance identifiers and DB instance Amazon
    //    Resource Names (ARNs).
    //
    //    * db-snapshot-id - Accepts DB snapshot identifiers.
    //
    //    * dbi-resource-id - Accepts identifiers of source DB instances.
    //
    //    * snapshot-type - Accepts types of DB snapshots.
    //
    //    * engine - Accepts names of database engines.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // Specifies whether to include manual DB cluster snapshots that are public
    // and can be copied or restored by any Amazon Web Services account. By default,
    // the public snapshots are not included.
    //
    // You can share a manual DB snapshot as public by using the ModifyDBSnapshotAttribute
    // API.
    //
    // This setting doesn't apply to RDS Custom.
    IncludePublic *bool `type:"boolean"`

    // Specifies whether to include shared manual DB cluster snapshots from other
    // Amazon Web Services accounts that this Amazon Web Services account has been
    // given permission to copy or restore. By default, these snapshots are not
    // included.
    //
    // You can give an Amazon Web Services account permission to restore a manual
    // DB snapshot from another Amazon Web Services account by using the ModifyDBSnapshotAttribute
    // API action.
    //
    // This setting doesn't apply to RDS Custom.
    IncludeShared *bool `type:"boolean"`

    // An optional pagination token provided by a previous DescribeDBSnapshots request.
    // If this parameter is specified, the response includes only records beyond
    // the marker, up to the value specified by MaxRecords.
    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 you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `type:"integer"`

    // The type of snapshots to be returned. You can specify one of the following
    // values:
    //
    //    * automated - Return all DB snapshots that have been automatically taken
    //    by Amazon RDS for my Amazon Web Services account.
    //
    //    * manual - Return all DB snapshots that have been taken by my Amazon Web
    //    Services account.
    //
    //    * shared - Return all manual DB snapshots that have been shared to my
    //    Amazon Web Services account.
    //
    //    * public - Return all DB snapshots that have been marked as public.
    //
    //    * awsbackup - Return the DB snapshots managed by the Amazon Web Services
    //    Backup service. For information about Amazon Web Services Backup, see
    //    the Amazon Web Services Backup Developer Guide. (https://docs.aws.amazon.com/aws-backup/latest/devguide/whatisbackup.html)
    //    The awsbackup type does not apply to Aurora.
    //
    // If you don't specify a SnapshotType value, then both automated and manual
    // snapshots are returned. Shared and public DB snapshots are not included in
    // the returned results by default. You can include shared snapshots with these
    // results by enabling the IncludeShared parameter. You can include public snapshots
    // with these results by enabling the IncludePublic parameter.
    //
    // The IncludeShared and IncludePublic parameters don't apply for SnapshotType
    // values of manual or automated. The IncludePublic parameter doesn't apply
    // when SnapshotType is set to shared. The IncludeShared parameter doesn't apply
    // when SnapshotType is set to public.
    SnapshotType *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeDBSnapshotsInput) GoString

func (s DescribeDBSnapshotsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBSnapshotsInput) SetDBInstanceIdentifier

func (s *DescribeDBSnapshotsInput) SetDBInstanceIdentifier(v string) *DescribeDBSnapshotsInput

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*DescribeDBSnapshotsInput) SetDBSnapshotIdentifier

func (s *DescribeDBSnapshotsInput) SetDBSnapshotIdentifier(v string) *DescribeDBSnapshotsInput

SetDBSnapshotIdentifier sets the DBSnapshotIdentifier field's value.

func (*DescribeDBSnapshotsInput) SetDbiResourceId

func (s *DescribeDBSnapshotsInput) SetDbiResourceId(v string) *DescribeDBSnapshotsInput

SetDbiResourceId sets the DbiResourceId field's value.

func (*DescribeDBSnapshotsInput) SetFilters

func (s *DescribeDBSnapshotsInput) SetFilters(v []*Filter) *DescribeDBSnapshotsInput

SetFilters sets the Filters field's value.

func (*DescribeDBSnapshotsInput) SetIncludePublic

func (s *DescribeDBSnapshotsInput) SetIncludePublic(v bool) *DescribeDBSnapshotsInput

SetIncludePublic sets the IncludePublic field's value.

func (*DescribeDBSnapshotsInput) SetIncludeShared

func (s *DescribeDBSnapshotsInput) SetIncludeShared(v bool) *DescribeDBSnapshotsInput

SetIncludeShared sets the IncludeShared field's value.

func (*DescribeDBSnapshotsInput) SetMarker

func (s *DescribeDBSnapshotsInput) SetMarker(v string) *DescribeDBSnapshotsInput

SetMarker sets the Marker field's value.

func (*DescribeDBSnapshotsInput) SetMaxRecords

func (s *DescribeDBSnapshotsInput) SetMaxRecords(v int64) *DescribeDBSnapshotsInput

SetMaxRecords sets the MaxRecords field's value.

func (*DescribeDBSnapshotsInput) SetSnapshotType

func (s *DescribeDBSnapshotsInput) SetSnapshotType(v string) *DescribeDBSnapshotsInput

SetSnapshotType sets the SnapshotType field's value.

func (DescribeDBSnapshotsInput) String

func (s DescribeDBSnapshotsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBSnapshotsInput) Validate

func (s *DescribeDBSnapshotsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeDBSnapshotsOutput

type DescribeDBSnapshotsOutput struct {

    // A list of DBSnapshot instances.
    DBSnapshots []*DBSnapshot `locationNameList:"DBSnapshot" type:"list"`

    // An optional pagination token provided by a previous request. If this parameter
    // is specified, the response includes only records beyond the marker, up to
    // the value specified by MaxRecords.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the result of a successful invocation of the DescribeDBSnapshots action.

func (DescribeDBSnapshotsOutput) GoString

func (s DescribeDBSnapshotsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBSnapshotsOutput) SetDBSnapshots

func (s *DescribeDBSnapshotsOutput) SetDBSnapshots(v []*DBSnapshot) *DescribeDBSnapshotsOutput

SetDBSnapshots sets the DBSnapshots field's value.

func (*DescribeDBSnapshotsOutput) SetMarker

func (s *DescribeDBSnapshotsOutput) SetMarker(v string) *DescribeDBSnapshotsOutput

SetMarker sets the Marker field's value.

func (DescribeDBSnapshotsOutput) String

func (s DescribeDBSnapshotsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDBSubnetGroupsInput

type DescribeDBSubnetGroupsInput struct {

    // The name of the DB subnet group to return details for.
    DBSubnetGroupName *string `type:"string"`

    // This parameter isn't currently supported.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // An optional pagination token provided by a previous DescribeDBSubnetGroups
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    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 you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `type:"integer"`
    // contains filtered or unexported fields
}

func (DescribeDBSubnetGroupsInput) GoString

func (s DescribeDBSubnetGroupsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBSubnetGroupsInput) SetDBSubnetGroupName

func (s *DescribeDBSubnetGroupsInput) SetDBSubnetGroupName(v string) *DescribeDBSubnetGroupsInput

SetDBSubnetGroupName sets the DBSubnetGroupName field's value.

func (*DescribeDBSubnetGroupsInput) SetFilters

func (s *DescribeDBSubnetGroupsInput) SetFilters(v []*Filter) *DescribeDBSubnetGroupsInput

SetFilters sets the Filters field's value.

func (*DescribeDBSubnetGroupsInput) SetMarker

func (s *DescribeDBSubnetGroupsInput) SetMarker(v string) *DescribeDBSubnetGroupsInput

SetMarker sets the Marker field's value.

func (*DescribeDBSubnetGroupsInput) SetMaxRecords

func (s *DescribeDBSubnetGroupsInput) SetMaxRecords(v int64) *DescribeDBSubnetGroupsInput

SetMaxRecords sets the MaxRecords field's value.

func (DescribeDBSubnetGroupsInput) String

func (s DescribeDBSubnetGroupsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBSubnetGroupsInput) Validate

func (s *DescribeDBSubnetGroupsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeDBSubnetGroupsOutput

type DescribeDBSubnetGroupsOutput struct {

    // A list of DBSubnetGroup instances.
    DBSubnetGroups []*DBSubnetGroup `locationNameList:"DBSubnetGroup" type:"list"`

    // An optional pagination token provided by a previous request. If this parameter
    // is specified, the response includes only records beyond the marker, up to
    // the value specified by MaxRecords.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the result of a successful invocation of the DescribeDBSubnetGroups action.

func (DescribeDBSubnetGroupsOutput) GoString

func (s DescribeDBSubnetGroupsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDBSubnetGroupsOutput) SetDBSubnetGroups

func (s *DescribeDBSubnetGroupsOutput) SetDBSubnetGroups(v []*DBSubnetGroup) *DescribeDBSubnetGroupsOutput

SetDBSubnetGroups sets the DBSubnetGroups field's value.

func (*DescribeDBSubnetGroupsOutput) SetMarker

func (s *DescribeDBSubnetGroupsOutput) SetMarker(v string) *DescribeDBSubnetGroupsOutput

SetMarker sets the Marker field's value.

func (DescribeDBSubnetGroupsOutput) String

func (s DescribeDBSubnetGroupsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeEngineDefaultClusterParametersInput

type DescribeEngineDefaultClusterParametersInput struct {

    // The name of the DB cluster parameter group family to return engine parameter
    // information for.
    //
    // DBParameterGroupFamily is a required field
    DBParameterGroupFamily *string `type:"string" required:"true"`

    // This parameter isn't currently supported.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // An optional pagination token provided by a previous DescribeEngineDefaultClusterParameters
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    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 you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `type:"integer"`
    // contains filtered or unexported fields
}

func (DescribeEngineDefaultClusterParametersInput) GoString

func (s DescribeEngineDefaultClusterParametersInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeEngineDefaultClusterParametersInput) SetDBParameterGroupFamily

func (s *DescribeEngineDefaultClusterParametersInput) SetDBParameterGroupFamily(v string) *DescribeEngineDefaultClusterParametersInput

SetDBParameterGroupFamily sets the DBParameterGroupFamily field's value.

func (*DescribeEngineDefaultClusterParametersInput) SetFilters

func (s *DescribeEngineDefaultClusterParametersInput) SetFilters(v []*Filter) *DescribeEngineDefaultClusterParametersInput

SetFilters sets the Filters field's value.

func (*DescribeEngineDefaultClusterParametersInput) SetMarker

func (s *DescribeEngineDefaultClusterParametersInput) SetMarker(v string) *DescribeEngineDefaultClusterParametersInput

SetMarker sets the Marker field's value.

func (*DescribeEngineDefaultClusterParametersInput) SetMaxRecords

func (s *DescribeEngineDefaultClusterParametersInput) SetMaxRecords(v int64) *DescribeEngineDefaultClusterParametersInput

SetMaxRecords sets the MaxRecords field's value.

func (DescribeEngineDefaultClusterParametersInput) String

func (s DescribeEngineDefaultClusterParametersInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeEngineDefaultClusterParametersInput) Validate

func (s *DescribeEngineDefaultClusterParametersInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeEngineDefaultClusterParametersOutput

type DescribeEngineDefaultClusterParametersOutput struct {

    // Contains the result of a successful invocation of the DescribeEngineDefaultParameters
    // action.
    EngineDefaults *EngineDefaults `type:"structure"`
    // contains filtered or unexported fields
}

func (DescribeEngineDefaultClusterParametersOutput) GoString

func (s DescribeEngineDefaultClusterParametersOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeEngineDefaultClusterParametersOutput) SetEngineDefaults

func (s *DescribeEngineDefaultClusterParametersOutput) SetEngineDefaults(v *EngineDefaults) *DescribeEngineDefaultClusterParametersOutput

SetEngineDefaults sets the EngineDefaults field's value.

func (DescribeEngineDefaultClusterParametersOutput) String

func (s DescribeEngineDefaultClusterParametersOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeEngineDefaultParametersInput

type DescribeEngineDefaultParametersInput struct {

    // The name of the DB parameter group family.
    //
    // Valid Values:
    //
    //    * aurora-mysql5.7
    //
    //    * aurora-mysql8.0
    //
    //    * aurora-postgresql10
    //
    //    * aurora-postgresql11
    //
    //    * aurora-postgresql12
    //
    //    * aurora-postgresql13
    //
    //    * aurora-postgresql14
    //
    //    * custom-oracle-ee-19
    //
    //    * db2-ae
    //
    //    * db2-se
    //
    //    * mariadb10.2
    //
    //    * mariadb10.3
    //
    //    * mariadb10.4
    //
    //    * mariadb10.5
    //
    //    * mariadb10.6
    //
    //    * mysql5.7
    //
    //    * mysql8.0
    //
    //    * oracle-ee-19
    //
    //    * oracle-ee-cdb-19
    //
    //    * oracle-ee-cdb-21
    //
    //    * oracle-se2-19
    //
    //    * oracle-se2-cdb-19
    //
    //    * oracle-se2-cdb-21
    //
    //    * postgres10
    //
    //    * postgres11
    //
    //    * postgres12
    //
    //    * postgres13
    //
    //    * postgres14
    //
    //    * sqlserver-ee-11.0
    //
    //    * sqlserver-ee-12.0
    //
    //    * sqlserver-ee-13.0
    //
    //    * sqlserver-ee-14.0
    //
    //    * sqlserver-ee-15.0
    //
    //    * sqlserver-ex-11.0
    //
    //    * sqlserver-ex-12.0
    //
    //    * sqlserver-ex-13.0
    //
    //    * sqlserver-ex-14.0
    //
    //    * sqlserver-ex-15.0
    //
    //    * sqlserver-se-11.0
    //
    //    * sqlserver-se-12.0
    //
    //    * sqlserver-se-13.0
    //
    //    * sqlserver-se-14.0
    //
    //    * sqlserver-se-15.0
    //
    //    * sqlserver-web-11.0
    //
    //    * sqlserver-web-12.0
    //
    //    * sqlserver-web-13.0
    //
    //    * sqlserver-web-14.0
    //
    //    * sqlserver-web-15.0
    //
    // DBParameterGroupFamily is a required field
    DBParameterGroupFamily *string `type:"string" required:"true"`

    // This parameter isn't currently supported.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // An optional pagination token provided by a previous DescribeEngineDefaultParameters
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    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 you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `type:"integer"`
    // contains filtered or unexported fields
}

func (DescribeEngineDefaultParametersInput) GoString

func (s DescribeEngineDefaultParametersInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeEngineDefaultParametersInput) SetDBParameterGroupFamily

func (s *DescribeEngineDefaultParametersInput) SetDBParameterGroupFamily(v string) *DescribeEngineDefaultParametersInput

SetDBParameterGroupFamily sets the DBParameterGroupFamily field's value.

func (*DescribeEngineDefaultParametersInput) SetFilters

func (s *DescribeEngineDefaultParametersInput) SetFilters(v []*Filter) *DescribeEngineDefaultParametersInput

SetFilters sets the Filters field's value.

func (*DescribeEngineDefaultParametersInput) SetMarker

func (s *DescribeEngineDefaultParametersInput) SetMarker(v string) *DescribeEngineDefaultParametersInput

SetMarker sets the Marker field's value.

func (*DescribeEngineDefaultParametersInput) SetMaxRecords

func (s *DescribeEngineDefaultParametersInput) SetMaxRecords(v int64) *DescribeEngineDefaultParametersInput

SetMaxRecords sets the MaxRecords field's value.

func (DescribeEngineDefaultParametersInput) String

func (s DescribeEngineDefaultParametersInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeEngineDefaultParametersInput) Validate

func (s *DescribeEngineDefaultParametersInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeEngineDefaultParametersOutput

type DescribeEngineDefaultParametersOutput struct {

    // Contains the result of a successful invocation of the DescribeEngineDefaultParameters
    // action.
    EngineDefaults *EngineDefaults `type:"structure"`
    // contains filtered or unexported fields
}

func (DescribeEngineDefaultParametersOutput) GoString

func (s DescribeEngineDefaultParametersOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeEngineDefaultParametersOutput) SetEngineDefaults

func (s *DescribeEngineDefaultParametersOutput) SetEngineDefaults(v *EngineDefaults) *DescribeEngineDefaultParametersOutput

SetEngineDefaults sets the EngineDefaults field's value.

func (DescribeEngineDefaultParametersOutput) String

func (s DescribeEngineDefaultParametersOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeEventCategoriesInput

type DescribeEventCategoriesInput struct {

    // This parameter isn't currently supported.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // The type of source that is generating the events. For RDS Proxy events, specify
    // db-proxy.
    //
    // Valid Values: db-instance | db-cluster | db-parameter-group | db-security-group
    // | db-snapshot | db-cluster-snapshot | db-proxy
    SourceType *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeEventCategoriesInput) GoString

func (s DescribeEventCategoriesInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeEventCategoriesInput) SetFilters

func (s *DescribeEventCategoriesInput) SetFilters(v []*Filter) *DescribeEventCategoriesInput

SetFilters sets the Filters field's value.

func (*DescribeEventCategoriesInput) SetSourceType

func (s *DescribeEventCategoriesInput) SetSourceType(v string) *DescribeEventCategoriesInput

SetSourceType sets the SourceType field's value.

func (DescribeEventCategoriesInput) String

func (s DescribeEventCategoriesInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeEventCategoriesInput) Validate

func (s *DescribeEventCategoriesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeEventCategoriesOutput

type DescribeEventCategoriesOutput struct {

    // A list of EventCategoriesMap data types.
    EventCategoriesMapList []*EventCategoriesMap `locationNameList:"EventCategoriesMap" type:"list"`
    // contains filtered or unexported fields
}

Data returned from the DescribeEventCategories operation.

func (DescribeEventCategoriesOutput) GoString

func (s DescribeEventCategoriesOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeEventCategoriesOutput) SetEventCategoriesMapList

func (s *DescribeEventCategoriesOutput) SetEventCategoriesMapList(v []*EventCategoriesMap) *DescribeEventCategoriesOutput

SetEventCategoriesMapList sets the EventCategoriesMapList field's value.

func (DescribeEventCategoriesOutput) String

func (s DescribeEventCategoriesOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeEventSubscriptionsInput

type DescribeEventSubscriptionsInput struct {

    // This parameter isn't currently supported.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // An optional pagination token provided by a previous DescribeOrderableDBInstanceOptions
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords .
    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 you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `type:"integer"`

    // The name of the RDS event notification subscription you want to describe.
    SubscriptionName *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeEventSubscriptionsInput) GoString

func (s DescribeEventSubscriptionsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeEventSubscriptionsInput) SetFilters

func (s *DescribeEventSubscriptionsInput) SetFilters(v []*Filter) *DescribeEventSubscriptionsInput

SetFilters sets the Filters field's value.

func (*DescribeEventSubscriptionsInput) SetMarker

func (s *DescribeEventSubscriptionsInput) SetMarker(v string) *DescribeEventSubscriptionsInput

SetMarker sets the Marker field's value.

func (*DescribeEventSubscriptionsInput) SetMaxRecords

func (s *DescribeEventSubscriptionsInput) SetMaxRecords(v int64) *DescribeEventSubscriptionsInput

SetMaxRecords sets the MaxRecords field's value.

func (*DescribeEventSubscriptionsInput) SetSubscriptionName

func (s *DescribeEventSubscriptionsInput) SetSubscriptionName(v string) *DescribeEventSubscriptionsInput

SetSubscriptionName sets the SubscriptionName field's value.

func (DescribeEventSubscriptionsInput) String

func (s DescribeEventSubscriptionsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeEventSubscriptionsInput) Validate

func (s *DescribeEventSubscriptionsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeEventSubscriptionsOutput

type DescribeEventSubscriptionsOutput struct {

    // A list of EventSubscriptions data types.
    EventSubscriptionsList []*EventSubscription `locationNameList:"EventSubscription" type:"list"`

    // An optional pagination token provided by a previous DescribeOrderableDBInstanceOptions
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

Data returned by the DescribeEventSubscriptions action.

func (DescribeEventSubscriptionsOutput) GoString

func (s DescribeEventSubscriptionsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeEventSubscriptionsOutput) SetEventSubscriptionsList

func (s *DescribeEventSubscriptionsOutput) SetEventSubscriptionsList(v []*EventSubscription) *DescribeEventSubscriptionsOutput

SetEventSubscriptionsList sets the EventSubscriptionsList field's value.

func (*DescribeEventSubscriptionsOutput) SetMarker

func (s *DescribeEventSubscriptionsOutput) SetMarker(v string) *DescribeEventSubscriptionsOutput

SetMarker sets the Marker field's value.

func (DescribeEventSubscriptionsOutput) String

func (s DescribeEventSubscriptionsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeEventsInput

type DescribeEventsInput struct {

    // The number of minutes to retrieve events for.
    //
    // 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"`

    // A list of event categories that trigger notifications for a event notification
    // subscription.
    EventCategories []*string `locationNameList:"EventCategory" type:"list"`

    // This parameter isn't currently supported.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // An optional pagination token provided by a previous DescribeEvents request.
    // If this parameter is specified, the response includes only records beyond
    // the marker, up to the value specified by MaxRecords.
    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 you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `type:"integer"`

    // The identifier of the event source for which events are returned. If not
    // specified, then all sources are included in the response.
    //
    // Constraints:
    //
    //    * If SourceIdentifier is supplied, SourceType must also be provided.
    //
    //    * If the source type is a DB instance, a DBInstanceIdentifier value must
    //    be supplied.
    //
    //    * If the source type is a DB cluster, a DBClusterIdentifier value must
    //    be supplied.
    //
    //    * If the source type is a DB parameter group, a DBParameterGroupName value
    //    must be supplied.
    //
    //    * If the source type is a DB security group, a DBSecurityGroupName value
    //    must be supplied.
    //
    //    * If the source type is a DB snapshot, a DBSnapshotIdentifier value must
    //    be supplied.
    //
    //    * If the source type is a DB cluster snapshot, a DBClusterSnapshotIdentifier
    //    value must be supplied.
    //
    //    * If the source type is an RDS Proxy, a DBProxyName value must be supplied.
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens.
    SourceIdentifier *string `type:"string"`

    // The event source to retrieve events for. If no value is specified, all events
    // are returned.
    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 (DescribeEventsInput) GoString

func (s DescribeEventsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeEventsInput) SetDuration

func (s *DescribeEventsInput) SetDuration(v int64) *DescribeEventsInput

SetDuration sets the Duration field's value.

func (*DescribeEventsInput) SetEndTime

func (s *DescribeEventsInput) SetEndTime(v time.Time) *DescribeEventsInput

SetEndTime sets the EndTime field's value.

func (*DescribeEventsInput) SetEventCategories

func (s *DescribeEventsInput) SetEventCategories(v []*string) *DescribeEventsInput

SetEventCategories sets the EventCategories field's value.

func (*DescribeEventsInput) SetFilters

func (s *DescribeEventsInput) SetFilters(v []*Filter) *DescribeEventsInput

SetFilters sets the Filters field's value.

func (*DescribeEventsInput) SetMarker

func (s *DescribeEventsInput) SetMarker(v string) *DescribeEventsInput

SetMarker sets the Marker field's value.

func (*DescribeEventsInput) SetMaxRecords

func (s *DescribeEventsInput) SetMaxRecords(v int64) *DescribeEventsInput

SetMaxRecords sets the MaxRecords field's value.

func (*DescribeEventsInput) SetSourceIdentifier

func (s *DescribeEventsInput) SetSourceIdentifier(v string) *DescribeEventsInput

SetSourceIdentifier sets the SourceIdentifier field's value.

func (*DescribeEventsInput) SetSourceType

func (s *DescribeEventsInput) SetSourceType(v string) *DescribeEventsInput

SetSourceType sets the SourceType field's value.

func (*DescribeEventsInput) SetStartTime

func (s *DescribeEventsInput) SetStartTime(v time.Time) *DescribeEventsInput

SetStartTime sets the StartTime field's value.

func (DescribeEventsInput) String

func (s DescribeEventsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeEventsInput) Validate

func (s *DescribeEventsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeEventsOutput

type DescribeEventsOutput struct {

    // A list of Event instances.
    Events []*Event `locationNameList:"Event" type:"list"`

    // An optional pagination token provided by a previous Events request. If this
    // parameter is specified, the response includes only records beyond the marker,
    // up to the value specified by MaxRecords.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the result of a successful invocation of the DescribeEvents action.

func (DescribeEventsOutput) GoString

func (s DescribeEventsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeEventsOutput) SetEvents

func (s *DescribeEventsOutput) SetEvents(v []*Event) *DescribeEventsOutput

SetEvents sets the Events field's value.

func (*DescribeEventsOutput) SetMarker

func (s *DescribeEventsOutput) SetMarker(v string) *DescribeEventsOutput

SetMarker sets the Marker field's value.

func (DescribeEventsOutput) String

func (s DescribeEventsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeExportTasksInput

type DescribeExportTasksInput struct {

    // The identifier of the snapshot or cluster export task to be described.
    ExportTaskIdentifier *string `type:"string"`

    // Filters specify one or more snapshot or cluster exports to describe. The
    // filters are specified as name-value pairs that define what to include in
    // the output. Filter names and values are case-sensitive.
    //
    // Supported filters include the following:
    //
    //    * export-task-identifier - An identifier for the snapshot or cluster export
    //    task.
    //
    //    * s3-bucket - The Amazon S3 bucket the data is exported to.
    //
    //    * source-arn - The Amazon Resource Name (ARN) of the snapshot or cluster
    //    exported to Amazon S3.
    //
    //    * status - The status of the export task. Must be lowercase. Valid statuses
    //    are the following: canceled canceling complete failed in_progress starting
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // An optional pagination token provided by a previous DescribeExportTasks request.
    // If you specify this parameter, 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 value, a pagination token called a marker is included
    // in the response. You can use the marker in a later DescribeExportTasks request
    // to retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `min:"20" type:"integer"`

    // The Amazon Resource Name (ARN) of the snapshot or cluster exported to Amazon
    // S3.
    SourceArn *string `type:"string"`

    // The type of source for the export.
    SourceType *string `type:"string" enum:"ExportSourceType"`
    // contains filtered or unexported fields
}

func (DescribeExportTasksInput) GoString

func (s DescribeExportTasksInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeExportTasksInput) SetExportTaskIdentifier

func (s *DescribeExportTasksInput) SetExportTaskIdentifier(v string) *DescribeExportTasksInput

SetExportTaskIdentifier sets the ExportTaskIdentifier field's value.

func (*DescribeExportTasksInput) SetFilters

func (s *DescribeExportTasksInput) SetFilters(v []*Filter) *DescribeExportTasksInput

SetFilters sets the Filters field's value.

func (*DescribeExportTasksInput) SetMarker

func (s *DescribeExportTasksInput) SetMarker(v string) *DescribeExportTasksInput

SetMarker sets the Marker field's value.

func (*DescribeExportTasksInput) SetMaxRecords

func (s *DescribeExportTasksInput) SetMaxRecords(v int64) *DescribeExportTasksInput

SetMaxRecords sets the MaxRecords field's value.

func (*DescribeExportTasksInput) SetSourceArn

func (s *DescribeExportTasksInput) SetSourceArn(v string) *DescribeExportTasksInput

SetSourceArn sets the SourceArn field's value.

func (*DescribeExportTasksInput) SetSourceType

func (s *DescribeExportTasksInput) SetSourceType(v string) *DescribeExportTasksInput

SetSourceType sets the SourceType field's value.

func (DescribeExportTasksInput) String

func (s DescribeExportTasksInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeExportTasksInput) Validate

func (s *DescribeExportTasksInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeExportTasksOutput

type DescribeExportTasksOutput struct {

    // Information about an export of a snapshot or cluster to Amazon S3.
    ExportTasks []*ExportTask `locationNameList:"ExportTask" type:"list"`

    // A pagination token that can be used in a later DescribeExportTasks request.
    // A marker is used for pagination to identify the location to begin output
    // for the next response of DescribeExportTasks.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeExportTasksOutput) GoString

func (s DescribeExportTasksOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeExportTasksOutput) SetExportTasks

func (s *DescribeExportTasksOutput) SetExportTasks(v []*ExportTask) *DescribeExportTasksOutput

SetExportTasks sets the ExportTasks field's value.

func (*DescribeExportTasksOutput) SetMarker

func (s *DescribeExportTasksOutput) SetMarker(v string) *DescribeExportTasksOutput

SetMarker sets the Marker field's value.

func (DescribeExportTasksOutput) String

func (s DescribeExportTasksOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeGlobalClustersInput

type DescribeGlobalClustersInput struct {

    // A filter that specifies one or more global database clusters to describe.
    // This parameter is case-sensitive.
    //
    // Currently, the only supported filter is region.
    //
    // If used, the request returns information about any global cluster with at
    // least one member (primary or secondary) in the specified Amazon Web Services
    // Regions.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // The user-supplied DB cluster identifier. If this parameter is specified,
    // information from only the specific DB cluster is returned. This parameter
    // isn't case-sensitive.
    //
    // Constraints:
    //
    //    * If supplied, must match an existing DBClusterIdentifier.
    GlobalClusterIdentifier *string `type:"string"`

    // An optional pagination token provided by a previous DescribeGlobalClusters
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    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 you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `type:"integer"`
    // contains filtered or unexported fields
}

func (DescribeGlobalClustersInput) GoString

func (s DescribeGlobalClustersInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeGlobalClustersInput) SetFilters

func (s *DescribeGlobalClustersInput) SetFilters(v []*Filter) *DescribeGlobalClustersInput

SetFilters sets the Filters field's value.

func (*DescribeGlobalClustersInput) SetGlobalClusterIdentifier

func (s *DescribeGlobalClustersInput) SetGlobalClusterIdentifier(v string) *DescribeGlobalClustersInput

SetGlobalClusterIdentifier sets the GlobalClusterIdentifier field's value.

func (*DescribeGlobalClustersInput) SetMarker

func (s *DescribeGlobalClustersInput) SetMarker(v string) *DescribeGlobalClustersInput

SetMarker sets the Marker field's value.

func (*DescribeGlobalClustersInput) SetMaxRecords

func (s *DescribeGlobalClustersInput) SetMaxRecords(v int64) *DescribeGlobalClustersInput

SetMaxRecords sets the MaxRecords field's value.

func (DescribeGlobalClustersInput) String

func (s DescribeGlobalClustersInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeGlobalClustersInput) Validate

func (s *DescribeGlobalClustersInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeGlobalClustersOutput

type DescribeGlobalClustersOutput struct {

    // The list of global clusters returned by this request.
    GlobalClusters []*GlobalCluster `locationNameList:"GlobalClusterMember" type:"list"`

    // An optional pagination token provided by a previous DescribeGlobalClusters
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeGlobalClustersOutput) GoString

func (s DescribeGlobalClustersOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeGlobalClustersOutput) SetGlobalClusters

func (s *DescribeGlobalClustersOutput) SetGlobalClusters(v []*GlobalCluster) *DescribeGlobalClustersOutput

SetGlobalClusters sets the GlobalClusters field's value.

func (*DescribeGlobalClustersOutput) SetMarker

func (s *DescribeGlobalClustersOutput) SetMarker(v string) *DescribeGlobalClustersOutput

SetMarker sets the Marker field's value.

func (DescribeGlobalClustersOutput) String

func (s DescribeGlobalClustersOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeIntegrationsInput

type DescribeIntegrationsInput struct {

    // A filter that specifies one or more resources to return.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // The unique identifier of the integration.
    IntegrationIdentifier *string `min:"1" type:"string"`

    // An optional pagination token provided by a previous DescribeIntegrations
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    Marker *string `min:"1" 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 you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `type:"integer"`
    // contains filtered or unexported fields
}

func (DescribeIntegrationsInput) GoString

func (s DescribeIntegrationsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeIntegrationsInput) SetFilters

func (s *DescribeIntegrationsInput) SetFilters(v []*Filter) *DescribeIntegrationsInput

SetFilters sets the Filters field's value.

func (*DescribeIntegrationsInput) SetIntegrationIdentifier

func (s *DescribeIntegrationsInput) SetIntegrationIdentifier(v string) *DescribeIntegrationsInput

SetIntegrationIdentifier sets the IntegrationIdentifier field's value.

func (*DescribeIntegrationsInput) SetMarker

func (s *DescribeIntegrationsInput) SetMarker(v string) *DescribeIntegrationsInput

SetMarker sets the Marker field's value.

func (*DescribeIntegrationsInput) SetMaxRecords

func (s *DescribeIntegrationsInput) SetMaxRecords(v int64) *DescribeIntegrationsInput

SetMaxRecords sets the MaxRecords field's value.

func (DescribeIntegrationsInput) String

func (s DescribeIntegrationsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeIntegrationsInput) Validate

func (s *DescribeIntegrationsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeIntegrationsOutput

type DescribeIntegrationsOutput struct {

    // A list of integrations.
    Integrations []*Integration `locationNameList:"Integration" type:"list"`

    // A pagination token that can be used in a later DescribeIntegrations request.
    Marker *string `min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (DescribeIntegrationsOutput) GoString

func (s DescribeIntegrationsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeIntegrationsOutput) SetIntegrations

func (s *DescribeIntegrationsOutput) SetIntegrations(v []*Integration) *DescribeIntegrationsOutput

SetIntegrations sets the Integrations field's value.

func (*DescribeIntegrationsOutput) SetMarker

func (s *DescribeIntegrationsOutput) SetMarker(v string) *DescribeIntegrationsOutput

SetMarker sets the Marker field's value.

func (DescribeIntegrationsOutput) String

func (s DescribeIntegrationsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeOptionGroupOptionsInput

type DescribeOptionGroupOptionsInput struct {

    // The name of the engine to describe options for.
    //
    // Valid Values:
    //
    //    * db2-ae
    //
    //    * db2-se
    //
    //    * mariadb
    //
    //    * mysql
    //
    //    * oracle-ee
    //
    //    * oracle-ee-cdb
    //
    //    * oracle-se2
    //
    //    * oracle-se2-cdb
    //
    //    * postgres
    //
    //    * sqlserver-ee
    //
    //    * sqlserver-se
    //
    //    * sqlserver-ex
    //
    //    * sqlserver-web
    //
    // EngineName is a required field
    EngineName *string `type:"string" required:"true"`

    // This parameter isn't currently supported.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // If specified, filters the results to include only options for the specified
    // major engine version.
    MajorEngineVersion *string `type:"string"`

    // An optional pagination token provided by a previous request. If this parameter
    // is specified, the response includes only records beyond the marker, up to
    // the value specified by MaxRecords.
    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 you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `type:"integer"`
    // contains filtered or unexported fields
}

func (DescribeOptionGroupOptionsInput) GoString

func (s DescribeOptionGroupOptionsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeOptionGroupOptionsInput) SetEngineName

func (s *DescribeOptionGroupOptionsInput) SetEngineName(v string) *DescribeOptionGroupOptionsInput

SetEngineName sets the EngineName field's value.

func (*DescribeOptionGroupOptionsInput) SetFilters

func (s *DescribeOptionGroupOptionsInput) SetFilters(v []*Filter) *DescribeOptionGroupOptionsInput

SetFilters sets the Filters field's value.

func (*DescribeOptionGroupOptionsInput) SetMajorEngineVersion

func (s *DescribeOptionGroupOptionsInput) SetMajorEngineVersion(v string) *DescribeOptionGroupOptionsInput

SetMajorEngineVersion sets the MajorEngineVersion field's value.

func (*DescribeOptionGroupOptionsInput) SetMarker

func (s *DescribeOptionGroupOptionsInput) SetMarker(v string) *DescribeOptionGroupOptionsInput

SetMarker sets the Marker field's value.

func (*DescribeOptionGroupOptionsInput) SetMaxRecords

func (s *DescribeOptionGroupOptionsInput) SetMaxRecords(v int64) *DescribeOptionGroupOptionsInput

SetMaxRecords sets the MaxRecords field's value.

func (DescribeOptionGroupOptionsInput) String

func (s DescribeOptionGroupOptionsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeOptionGroupOptionsInput) Validate

func (s *DescribeOptionGroupOptionsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeOptionGroupOptionsOutput

type DescribeOptionGroupOptionsOutput struct {

    // An optional pagination token provided by a previous request. If this parameter
    // is specified, the response includes only records beyond the marker, up to
    // the value specified by MaxRecords.
    Marker *string `type:"string"`

    // List of available option group options.
    OptionGroupOptions []*OptionGroupOption `locationNameList:"OptionGroupOption" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeOptionGroupOptionsOutput) GoString

func (s DescribeOptionGroupOptionsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeOptionGroupOptionsOutput) SetMarker

func (s *DescribeOptionGroupOptionsOutput) SetMarker(v string) *DescribeOptionGroupOptionsOutput

SetMarker sets the Marker field's value.

func (*DescribeOptionGroupOptionsOutput) SetOptionGroupOptions

func (s *DescribeOptionGroupOptionsOutput) SetOptionGroupOptions(v []*OptionGroupOption) *DescribeOptionGroupOptionsOutput

SetOptionGroupOptions sets the OptionGroupOptions field's value.

func (DescribeOptionGroupOptionsOutput) String

func (s DescribeOptionGroupOptionsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeOptionGroupsInput

type DescribeOptionGroupsInput struct {

    // A filter to only include option groups associated with this database engine.
    //
    // Valid Values:
    //
    //    * db2-ae
    //
    //    * db2-se
    //
    //    * mariadb
    //
    //    * mysql
    //
    //    * oracle-ee
    //
    //    * oracle-ee-cdb
    //
    //    * oracle-se2
    //
    //    * oracle-se2-cdb
    //
    //    * postgres
    //
    //    * sqlserver-ee
    //
    //    * sqlserver-se
    //
    //    * sqlserver-ex
    //
    //    * sqlserver-web
    EngineName *string `type:"string"`

    // This parameter isn't currently supported.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // Filters the list of option groups to only include groups associated with
    // a specific database engine version. If specified, then EngineName must also
    // be specified.
    MajorEngineVersion *string `type:"string"`

    // An optional pagination token provided by a previous DescribeOptionGroups
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    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 you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `type:"integer"`

    // The name of the option group to describe. Can't be supplied together with
    // EngineName or MajorEngineVersion.
    OptionGroupName *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeOptionGroupsInput) GoString

func (s DescribeOptionGroupsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeOptionGroupsInput) SetEngineName

func (s *DescribeOptionGroupsInput) SetEngineName(v string) *DescribeOptionGroupsInput

SetEngineName sets the EngineName field's value.

func (*DescribeOptionGroupsInput) SetFilters

func (s *DescribeOptionGroupsInput) SetFilters(v []*Filter) *DescribeOptionGroupsInput

SetFilters sets the Filters field's value.

func (*DescribeOptionGroupsInput) SetMajorEngineVersion

func (s *DescribeOptionGroupsInput) SetMajorEngineVersion(v string) *DescribeOptionGroupsInput

SetMajorEngineVersion sets the MajorEngineVersion field's value.

func (*DescribeOptionGroupsInput) SetMarker

func (s *DescribeOptionGroupsInput) SetMarker(v string) *DescribeOptionGroupsInput

SetMarker sets the Marker field's value.

func (*DescribeOptionGroupsInput) SetMaxRecords

func (s *DescribeOptionGroupsInput) SetMaxRecords(v int64) *DescribeOptionGroupsInput

SetMaxRecords sets the MaxRecords field's value.

func (*DescribeOptionGroupsInput) SetOptionGroupName

func (s *DescribeOptionGroupsInput) SetOptionGroupName(v string) *DescribeOptionGroupsInput

SetOptionGroupName sets the OptionGroupName field's value.

func (DescribeOptionGroupsInput) String

func (s DescribeOptionGroupsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeOptionGroupsInput) Validate

func (s *DescribeOptionGroupsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeOptionGroupsOutput

type DescribeOptionGroupsOutput struct {

    // An optional pagination token provided by a previous request. If this parameter
    // is specified, the response includes only records beyond the marker, up to
    // the value specified by MaxRecords.
    Marker *string `type:"string"`

    // List of option groups.
    OptionGroupsList []*OptionGroup `locationNameList:"OptionGroup" type:"list"`
    // contains filtered or unexported fields
}

List of option groups.

func (DescribeOptionGroupsOutput) GoString

func (s DescribeOptionGroupsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeOptionGroupsOutput) SetMarker

func (s *DescribeOptionGroupsOutput) SetMarker(v string) *DescribeOptionGroupsOutput

SetMarker sets the Marker field's value.

func (*DescribeOptionGroupsOutput) SetOptionGroupsList

func (s *DescribeOptionGroupsOutput) SetOptionGroupsList(v []*OptionGroup) *DescribeOptionGroupsOutput

SetOptionGroupsList sets the OptionGroupsList field's value.

func (DescribeOptionGroupsOutput) String

func (s DescribeOptionGroupsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeOrderableDBInstanceOptionsInput

type DescribeOrderableDBInstanceOptionsInput struct {

    // The Availability Zone group associated with a Local Zone. Specify this parameter
    // to retrieve available options for the Local Zones in the group.
    //
    // Omit this parameter to show the available options in the specified Amazon
    // Web Services Region.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    AvailabilityZoneGroup *string `type:"string"`

    // A filter to include only the available options for the specified DB instance
    // class.
    DBInstanceClass *string `type:"string"`

    // The name of the engine to describe DB instance options for.
    //
    // Valid Values:
    //
    //    * aurora-mysql
    //
    //    * aurora-postgresql
    //
    //    * custom-oracle-ee
    //
    //    * db2-ae
    //
    //    * db2-se
    //
    //    * mariadb
    //
    //    * mysql
    //
    //    * oracle-ee
    //
    //    * oracle-ee-cdb
    //
    //    * oracle-se2
    //
    //    * oracle-se2-cdb
    //
    //    * postgres
    //
    //    * sqlserver-ee
    //
    //    * sqlserver-se
    //
    //    * sqlserver-ex
    //
    //    * sqlserver-web
    //
    // Engine is a required field
    Engine *string `type:"string" required:"true"`

    // A filter to include only the available options for the specified engine version.
    EngineVersion *string `type:"string"`

    // This parameter isn't currently supported.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // A filter to include only the available options for the specified license
    // model.
    //
    // RDS Custom supports only the BYOL licensing model.
    LicenseModel *string `type:"string"`

    // An optional pagination token provided by a previous DescribeOrderableDBInstanceOptions
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    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 you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 10000.
    MaxRecords *int64 `type:"integer"`

    // Specifies whether to show only VPC or non-VPC offerings. RDS Custom supports
    // only VPC offerings.
    //
    // RDS Custom supports only VPC offerings. If you describe non-VPC offerings
    // for RDS Custom, the output shows VPC offerings.
    Vpc *bool `type:"boolean"`
    // contains filtered or unexported fields
}

func (DescribeOrderableDBInstanceOptionsInput) GoString

func (s DescribeOrderableDBInstanceOptionsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeOrderableDBInstanceOptionsInput) SetAvailabilityZoneGroup

func (s *DescribeOrderableDBInstanceOptionsInput) SetAvailabilityZoneGroup(v string) *DescribeOrderableDBInstanceOptionsInput

SetAvailabilityZoneGroup sets the AvailabilityZoneGroup field's value.

func (*DescribeOrderableDBInstanceOptionsInput) SetDBInstanceClass

func (s *DescribeOrderableDBInstanceOptionsInput) SetDBInstanceClass(v string) *DescribeOrderableDBInstanceOptionsInput

SetDBInstanceClass sets the DBInstanceClass field's value.

func (*DescribeOrderableDBInstanceOptionsInput) SetEngine

func (s *DescribeOrderableDBInstanceOptionsInput) SetEngine(v string) *DescribeOrderableDBInstanceOptionsInput

SetEngine sets the Engine field's value.

func (*DescribeOrderableDBInstanceOptionsInput) SetEngineVersion

func (s *DescribeOrderableDBInstanceOptionsInput) SetEngineVersion(v string) *DescribeOrderableDBInstanceOptionsInput

SetEngineVersion sets the EngineVersion field's value.

func (*DescribeOrderableDBInstanceOptionsInput) SetFilters

func (s *DescribeOrderableDBInstanceOptionsInput) SetFilters(v []*Filter) *DescribeOrderableDBInstanceOptionsInput

SetFilters sets the Filters field's value.

func (*DescribeOrderableDBInstanceOptionsInput) SetLicenseModel

func (s *DescribeOrderableDBInstanceOptionsInput) SetLicenseModel(v string) *DescribeOrderableDBInstanceOptionsInput

SetLicenseModel sets the LicenseModel field's value.

func (*DescribeOrderableDBInstanceOptionsInput) SetMarker

func (s *DescribeOrderableDBInstanceOptionsInput) SetMarker(v string) *DescribeOrderableDBInstanceOptionsInput

SetMarker sets the Marker field's value.

func (*DescribeOrderableDBInstanceOptionsInput) SetMaxRecords

func (s *DescribeOrderableDBInstanceOptionsInput) SetMaxRecords(v int64) *DescribeOrderableDBInstanceOptionsInput

SetMaxRecords sets the MaxRecords field's value.

func (*DescribeOrderableDBInstanceOptionsInput) SetVpc

func (s *DescribeOrderableDBInstanceOptionsInput) SetVpc(v bool) *DescribeOrderableDBInstanceOptionsInput

SetVpc sets the Vpc field's value.

func (DescribeOrderableDBInstanceOptionsInput) String

func (s DescribeOrderableDBInstanceOptionsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeOrderableDBInstanceOptionsInput) Validate

func (s *DescribeOrderableDBInstanceOptionsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeOrderableDBInstanceOptionsOutput

type DescribeOrderableDBInstanceOptionsOutput struct {

    // An optional pagination token provided by a previous OrderableDBInstanceOptions
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    Marker *string `type:"string"`

    // An OrderableDBInstanceOption structure containing information about orderable
    // options for the DB instance.
    OrderableDBInstanceOptions []*OrderableDBInstanceOption `locationNameList:"OrderableDBInstanceOption" type:"list"`
    // contains filtered or unexported fields
}

Contains the result of a successful invocation of the DescribeOrderableDBInstanceOptions action.

func (DescribeOrderableDBInstanceOptionsOutput) GoString

func (s DescribeOrderableDBInstanceOptionsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeOrderableDBInstanceOptionsOutput) SetMarker

func (s *DescribeOrderableDBInstanceOptionsOutput) SetMarker(v string) *DescribeOrderableDBInstanceOptionsOutput

SetMarker sets the Marker field's value.

func (*DescribeOrderableDBInstanceOptionsOutput) SetOrderableDBInstanceOptions

func (s *DescribeOrderableDBInstanceOptionsOutput) SetOrderableDBInstanceOptions(v []*OrderableDBInstanceOption) *DescribeOrderableDBInstanceOptionsOutput

SetOrderableDBInstanceOptions sets the OrderableDBInstanceOptions field's value.

func (DescribeOrderableDBInstanceOptionsOutput) String

func (s DescribeOrderableDBInstanceOptionsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribePendingMaintenanceActionsInput

type DescribePendingMaintenanceActionsInput struct {

    // A filter that specifies one or more resources to return pending maintenance
    // actions for.
    //
    // Supported filters:
    //
    //    * db-cluster-id - Accepts DB cluster identifiers and DB cluster Amazon
    //    Resource Names (ARNs). The results list only includes pending maintenance
    //    actions for the DB clusters identified by these ARNs.
    //
    //    * db-instance-id - Accepts DB instance identifiers and DB instance ARNs.
    //    The results list only includes pending maintenance actions for the DB
    //    instances identified by these ARNs.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // An optional pagination token provided by a previous DescribePendingMaintenanceActions
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to a number of records specified by MaxRecords.
    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 you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `type:"integer"`

    // The ARN of a resource to return pending maintenance actions for.
    ResourceIdentifier *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribePendingMaintenanceActionsInput) GoString

func (s DescribePendingMaintenanceActionsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribePendingMaintenanceActionsInput) SetFilters

func (s *DescribePendingMaintenanceActionsInput) SetFilters(v []*Filter) *DescribePendingMaintenanceActionsInput

SetFilters sets the Filters field's value.

func (*DescribePendingMaintenanceActionsInput) SetMarker

func (s *DescribePendingMaintenanceActionsInput) SetMarker(v string) *DescribePendingMaintenanceActionsInput

SetMarker sets the Marker field's value.

func (*DescribePendingMaintenanceActionsInput) SetMaxRecords

func (s *DescribePendingMaintenanceActionsInput) SetMaxRecords(v int64) *DescribePendingMaintenanceActionsInput

SetMaxRecords sets the MaxRecords field's value.

func (*DescribePendingMaintenanceActionsInput) SetResourceIdentifier

func (s *DescribePendingMaintenanceActionsInput) SetResourceIdentifier(v string) *DescribePendingMaintenanceActionsInput

SetResourceIdentifier sets the ResourceIdentifier field's value.

func (DescribePendingMaintenanceActionsInput) String

func (s DescribePendingMaintenanceActionsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribePendingMaintenanceActionsInput) Validate

func (s *DescribePendingMaintenanceActionsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribePendingMaintenanceActionsOutput

type DescribePendingMaintenanceActionsOutput struct {

    // An optional pagination token provided by a previous DescribePendingMaintenanceActions
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to a number of records specified by MaxRecords.
    Marker *string `type:"string"`

    // A list of the pending maintenance actions for the resource.
    PendingMaintenanceActions []*ResourcePendingMaintenanceActions `locationNameList:"ResourcePendingMaintenanceActions" type:"list"`
    // contains filtered or unexported fields
}

Data returned from the DescribePendingMaintenanceActions action.

func (DescribePendingMaintenanceActionsOutput) GoString

func (s DescribePendingMaintenanceActionsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribePendingMaintenanceActionsOutput) SetMarker

func (s *DescribePendingMaintenanceActionsOutput) SetMarker(v string) *DescribePendingMaintenanceActionsOutput

SetMarker sets the Marker field's value.

func (*DescribePendingMaintenanceActionsOutput) SetPendingMaintenanceActions

func (s *DescribePendingMaintenanceActionsOutput) SetPendingMaintenanceActions(v []*ResourcePendingMaintenanceActions) *DescribePendingMaintenanceActionsOutput

SetPendingMaintenanceActions sets the PendingMaintenanceActions field's value.

func (DescribePendingMaintenanceActionsOutput) String

func (s DescribePendingMaintenanceActionsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeReservedDBInstancesInput

type DescribeReservedDBInstancesInput struct {

    // The DB instance class filter value. Specify this parameter to show only those
    // reservations matching the specified DB instances class.
    DBInstanceClass *string `type:"string"`

    // The duration filter value, specified in years or seconds. Specify this parameter
    // to show only reservations for this duration.
    //
    // Valid Values: 1 | 3 | 31536000 | 94608000
    Duration *string `type:"string"`

    // This parameter isn't currently supported.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // The lease identifier filter value. Specify this parameter to show only the
    // reservation that matches the specified lease ID.
    //
    // Amazon Web Services Support might request the lease ID for an issue related
    // to a reserved DB instance.
    LeaseId *string `type:"string"`

    // An optional pagination token provided by a previous request. If this parameter
    // is specified, the response includes only records beyond the marker, up to
    // the value specified by MaxRecords.
    Marker *string `type:"string"`

    // The maximum number of records to include in the response. If more than the
    // MaxRecords value is available, a pagination token called a marker is included
    // in the response so you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `type:"integer"`

    // Specifies whether to show only those reservations that support Multi-AZ.
    MultiAZ *bool `type:"boolean"`

    // The offering type filter value. Specify this parameter to show only the available
    // offerings matching the specified offering type.
    //
    // Valid Values: "Partial Upfront" | "All Upfront" | "No Upfront"
    OfferingType *string `type:"string"`

    // The product description filter value. Specify this parameter to show only
    // those reservations matching the specified product description.
    ProductDescription *string `type:"string"`

    // The reserved DB instance identifier filter value. Specify this parameter
    // to show only the reservation that matches the specified reservation ID.
    ReservedDBInstanceId *string `type:"string"`

    // The offering identifier filter value. Specify this parameter to show only
    // purchased reservations matching the specified offering identifier.
    ReservedDBInstancesOfferingId *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeReservedDBInstancesInput) GoString

func (s DescribeReservedDBInstancesInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeReservedDBInstancesInput) SetDBInstanceClass

func (s *DescribeReservedDBInstancesInput) SetDBInstanceClass(v string) *DescribeReservedDBInstancesInput

SetDBInstanceClass sets the DBInstanceClass field's value.

func (*DescribeReservedDBInstancesInput) SetDuration

func (s *DescribeReservedDBInstancesInput) SetDuration(v string) *DescribeReservedDBInstancesInput

SetDuration sets the Duration field's value.

func (*DescribeReservedDBInstancesInput) SetFilters

func (s *DescribeReservedDBInstancesInput) SetFilters(v []*Filter) *DescribeReservedDBInstancesInput

SetFilters sets the Filters field's value.

func (*DescribeReservedDBInstancesInput) SetLeaseId

func (s *DescribeReservedDBInstancesInput) SetLeaseId(v string) *DescribeReservedDBInstancesInput

SetLeaseId sets the LeaseId field's value.

func (*DescribeReservedDBInstancesInput) SetMarker

func (s *DescribeReservedDBInstancesInput) SetMarker(v string) *DescribeReservedDBInstancesInput

SetMarker sets the Marker field's value.

func (*DescribeReservedDBInstancesInput) SetMaxRecords

func (s *DescribeReservedDBInstancesInput) SetMaxRecords(v int64) *DescribeReservedDBInstancesInput

SetMaxRecords sets the MaxRecords field's value.

func (*DescribeReservedDBInstancesInput) SetMultiAZ

func (s *DescribeReservedDBInstancesInput) SetMultiAZ(v bool) *DescribeReservedDBInstancesInput

SetMultiAZ sets the MultiAZ field's value.

func (*DescribeReservedDBInstancesInput) SetOfferingType

func (s *DescribeReservedDBInstancesInput) SetOfferingType(v string) *DescribeReservedDBInstancesInput

SetOfferingType sets the OfferingType field's value.

func (*DescribeReservedDBInstancesInput) SetProductDescription

func (s *DescribeReservedDBInstancesInput) SetProductDescription(v string) *DescribeReservedDBInstancesInput

SetProductDescription sets the ProductDescription field's value.

func (*DescribeReservedDBInstancesInput) SetReservedDBInstanceId

func (s *DescribeReservedDBInstancesInput) SetReservedDBInstanceId(v string) *DescribeReservedDBInstancesInput

SetReservedDBInstanceId sets the ReservedDBInstanceId field's value.

func (*DescribeReservedDBInstancesInput) SetReservedDBInstancesOfferingId

func (s *DescribeReservedDBInstancesInput) SetReservedDBInstancesOfferingId(v string) *DescribeReservedDBInstancesInput

SetReservedDBInstancesOfferingId sets the ReservedDBInstancesOfferingId field's value.

func (DescribeReservedDBInstancesInput) String

func (s DescribeReservedDBInstancesInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeReservedDBInstancesInput) Validate

func (s *DescribeReservedDBInstancesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeReservedDBInstancesOfferingsInput

type DescribeReservedDBInstancesOfferingsInput struct {

    // The DB instance class filter value. Specify this parameter to show only the
    // available offerings matching the specified DB instance class.
    DBInstanceClass *string `type:"string"`

    // Duration filter value, specified in years or seconds. Specify this parameter
    // to show only reservations for this duration.
    //
    // Valid Values: 1 | 3 | 31536000 | 94608000
    Duration *string `type:"string"`

    // This parameter isn't currently supported.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // An optional pagination token provided by a previous request. If this parameter
    // is specified, the response includes only records beyond the marker, up to
    // the value specified by MaxRecords.
    Marker *string `type:"string"`

    // The maximum number of records to include in the response. If more than the
    // MaxRecords value is available, a pagination token called a marker is included
    // in the response so you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `type:"integer"`

    // Specifies whether to show only those reservations that support Multi-AZ.
    MultiAZ *bool `type:"boolean"`

    // The offering type filter value. Specify this parameter to show only the available
    // offerings matching the specified offering type.
    //
    // Valid Values: "Partial Upfront" | "All Upfront" | "No Upfront"
    OfferingType *string `type:"string"`

    // Product description filter value. Specify this parameter to show only the
    // available offerings that contain the specified product description.
    //
    // The results show offerings that partially match the filter value.
    ProductDescription *string `type:"string"`

    // The offering identifier filter value. Specify this parameter to show only
    // the available offering that matches the specified reservation identifier.
    //
    // Example: 438012d3-4052-4cc7-b2e3-8d3372e0e706
    ReservedDBInstancesOfferingId *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeReservedDBInstancesOfferingsInput) GoString

func (s DescribeReservedDBInstancesOfferingsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeReservedDBInstancesOfferingsInput) SetDBInstanceClass

func (s *DescribeReservedDBInstancesOfferingsInput) SetDBInstanceClass(v string) *DescribeReservedDBInstancesOfferingsInput

SetDBInstanceClass sets the DBInstanceClass field's value.

func (*DescribeReservedDBInstancesOfferingsInput) SetDuration

func (s *DescribeReservedDBInstancesOfferingsInput) SetDuration(v string) *DescribeReservedDBInstancesOfferingsInput

SetDuration sets the Duration field's value.

func (*DescribeReservedDBInstancesOfferingsInput) SetFilters

func (s *DescribeReservedDBInstancesOfferingsInput) SetFilters(v []*Filter) *DescribeReservedDBInstancesOfferingsInput

SetFilters sets the Filters field's value.

func (*DescribeReservedDBInstancesOfferingsInput) SetMarker

func (s *DescribeReservedDBInstancesOfferingsInput) SetMarker(v string) *DescribeReservedDBInstancesOfferingsInput

SetMarker sets the Marker field's value.

func (*DescribeReservedDBInstancesOfferingsInput) SetMaxRecords

func (s *DescribeReservedDBInstancesOfferingsInput) SetMaxRecords(v int64) *DescribeReservedDBInstancesOfferingsInput

SetMaxRecords sets the MaxRecords field's value.

func (*DescribeReservedDBInstancesOfferingsInput) SetMultiAZ

func (s *DescribeReservedDBInstancesOfferingsInput) SetMultiAZ(v bool) *DescribeReservedDBInstancesOfferingsInput

SetMultiAZ sets the MultiAZ field's value.

func (*DescribeReservedDBInstancesOfferingsInput) SetOfferingType

func (s *DescribeReservedDBInstancesOfferingsInput) SetOfferingType(v string) *DescribeReservedDBInstancesOfferingsInput

SetOfferingType sets the OfferingType field's value.

func (*DescribeReservedDBInstancesOfferingsInput) SetProductDescription

func (s *DescribeReservedDBInstancesOfferingsInput) SetProductDescription(v string) *DescribeReservedDBInstancesOfferingsInput

SetProductDescription sets the ProductDescription field's value.

func (*DescribeReservedDBInstancesOfferingsInput) SetReservedDBInstancesOfferingId

func (s *DescribeReservedDBInstancesOfferingsInput) SetReservedDBInstancesOfferingId(v string) *DescribeReservedDBInstancesOfferingsInput

SetReservedDBInstancesOfferingId sets the ReservedDBInstancesOfferingId field's value.

func (DescribeReservedDBInstancesOfferingsInput) String

func (s DescribeReservedDBInstancesOfferingsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeReservedDBInstancesOfferingsInput) Validate

func (s *DescribeReservedDBInstancesOfferingsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeReservedDBInstancesOfferingsOutput

type DescribeReservedDBInstancesOfferingsOutput struct {

    // An optional pagination token provided by a previous request. If this parameter
    // is specified, the response includes only records beyond the marker, up to
    // the value specified by MaxRecords.
    Marker *string `type:"string"`

    // A list of reserved DB instance offerings.
    ReservedDBInstancesOfferings []*ReservedDBInstancesOffering `locationNameList:"ReservedDBInstancesOffering" type:"list"`
    // contains filtered or unexported fields
}

Contains the result of a successful invocation of the DescribeReservedDBInstancesOfferings action.

func (DescribeReservedDBInstancesOfferingsOutput) GoString

func (s DescribeReservedDBInstancesOfferingsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeReservedDBInstancesOfferingsOutput) SetMarker

func (s *DescribeReservedDBInstancesOfferingsOutput) SetMarker(v string) *DescribeReservedDBInstancesOfferingsOutput

SetMarker sets the Marker field's value.

func (*DescribeReservedDBInstancesOfferingsOutput) SetReservedDBInstancesOfferings

func (s *DescribeReservedDBInstancesOfferingsOutput) SetReservedDBInstancesOfferings(v []*ReservedDBInstancesOffering) *DescribeReservedDBInstancesOfferingsOutput

SetReservedDBInstancesOfferings sets the ReservedDBInstancesOfferings field's value.

func (DescribeReservedDBInstancesOfferingsOutput) String

func (s DescribeReservedDBInstancesOfferingsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeReservedDBInstancesOutput

type DescribeReservedDBInstancesOutput struct {

    // An optional pagination token provided by a previous request. If this parameter
    // is specified, the response includes only records beyond the marker, up to
    // the value specified by MaxRecords.
    Marker *string `type:"string"`

    // A list of reserved DB instances.
    ReservedDBInstances []*ReservedDBInstance `locationNameList:"ReservedDBInstance" type:"list"`
    // contains filtered or unexported fields
}

Contains the result of a successful invocation of the DescribeReservedDBInstances action.

func (DescribeReservedDBInstancesOutput) GoString

func (s DescribeReservedDBInstancesOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeReservedDBInstancesOutput) SetMarker

func (s *DescribeReservedDBInstancesOutput) SetMarker(v string) *DescribeReservedDBInstancesOutput

SetMarker sets the Marker field's value.

func (*DescribeReservedDBInstancesOutput) SetReservedDBInstances

func (s *DescribeReservedDBInstancesOutput) SetReservedDBInstances(v []*ReservedDBInstance) *DescribeReservedDBInstancesOutput

SetReservedDBInstances sets the ReservedDBInstances field's value.

func (DescribeReservedDBInstancesOutput) String

func (s DescribeReservedDBInstancesOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeSourceRegionsInput

type DescribeSourceRegionsInput struct {

    // This parameter isn't currently supported.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // An optional pagination token provided by a previous DescribeSourceRegions
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    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 you can retrieve the remaining results.
    //
    // Default: 100
    //
    // Constraints: Minimum 20, maximum 100.
    MaxRecords *int64 `type:"integer"`

    // The source Amazon Web Services Region name. For example, us-east-1.
    //
    // Constraints:
    //
    //    * Must specify a valid Amazon Web Services Region name.
    RegionName *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeSourceRegionsInput) GoString

func (s DescribeSourceRegionsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeSourceRegionsInput) SetFilters

func (s *DescribeSourceRegionsInput) SetFilters(v []*Filter) *DescribeSourceRegionsInput

SetFilters sets the Filters field's value.

func (*DescribeSourceRegionsInput) SetMarker

func (s *DescribeSourceRegionsInput) SetMarker(v string) *DescribeSourceRegionsInput

SetMarker sets the Marker field's value.

func (*DescribeSourceRegionsInput) SetMaxRecords

func (s *DescribeSourceRegionsInput) SetMaxRecords(v int64) *DescribeSourceRegionsInput

SetMaxRecords sets the MaxRecords field's value.

func (*DescribeSourceRegionsInput) SetRegionName

func (s *DescribeSourceRegionsInput) SetRegionName(v string) *DescribeSourceRegionsInput

SetRegionName sets the RegionName field's value.

func (DescribeSourceRegionsInput) String

func (s DescribeSourceRegionsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeSourceRegionsInput) Validate

func (s *DescribeSourceRegionsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeSourceRegionsOutput

type DescribeSourceRegionsOutput struct {

    // An optional pagination token provided by a previous request. If this parameter
    // is specified, the response includes only records beyond the marker, up to
    // the value specified by MaxRecords.
    Marker *string `type:"string"`

    // A list of SourceRegion instances that contains each source Amazon Web Services
    // Region that the current Amazon Web Services Region can get a read replica
    // or a DB snapshot from.
    SourceRegions []*SourceRegion `locationNameList:"SourceRegion" type:"list"`
    // contains filtered or unexported fields
}

Contains the result of a successful invocation of the DescribeSourceRegions action.

func (DescribeSourceRegionsOutput) GoString

func (s DescribeSourceRegionsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeSourceRegionsOutput) SetMarker

func (s *DescribeSourceRegionsOutput) SetMarker(v string) *DescribeSourceRegionsOutput

SetMarker sets the Marker field's value.

func (*DescribeSourceRegionsOutput) SetSourceRegions

func (s *DescribeSourceRegionsOutput) SetSourceRegions(v []*SourceRegion) *DescribeSourceRegionsOutput

SetSourceRegions sets the SourceRegions field's value.

func (DescribeSourceRegionsOutput) String

func (s DescribeSourceRegionsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeTenantDatabasesInput

type DescribeTenantDatabasesInput struct {

    // The user-supplied DB instance identifier, which must match the identifier
    // of an existing instance owned by the Amazon Web Services account. This parameter
    // isn't case-sensitive.
    DBInstanceIdentifier *string `type:"string"`

    // A filter that specifies one or more database tenants to describe.
    //
    // Supported filters:
    //
    //    * tenant-db-name - Tenant database names. The results list only includes
    //    information about the tenant databases that match these tenant DB names.
    //
    //    * tenant-database-resource-id - Tenant database resource identifiers.
    //
    //    * dbi-resource-id - DB instance resource identifiers. The results list
    //    only includes information about the tenants contained within the DB instances
    //    identified by these resource identifiers.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // An optional pagination token provided by a previous DescribeTenantDatabases
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    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 you can retrieve the remaining results.
    MaxRecords *int64 `type:"integer"`

    // The user-supplied tenant database name, which must match the name of an existing
    // tenant database on the specified DB instance owned by your Amazon Web Services
    // account. This parameter isn’t case-sensitive.
    TenantDBName *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeTenantDatabasesInput) GoString

func (s DescribeTenantDatabasesInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeTenantDatabasesInput) SetDBInstanceIdentifier

func (s *DescribeTenantDatabasesInput) SetDBInstanceIdentifier(v string) *DescribeTenantDatabasesInput

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*DescribeTenantDatabasesInput) SetFilters

func (s *DescribeTenantDatabasesInput) SetFilters(v []*Filter) *DescribeTenantDatabasesInput

SetFilters sets the Filters field's value.

func (*DescribeTenantDatabasesInput) SetMarker

func (s *DescribeTenantDatabasesInput) SetMarker(v string) *DescribeTenantDatabasesInput

SetMarker sets the Marker field's value.

func (*DescribeTenantDatabasesInput) SetMaxRecords

func (s *DescribeTenantDatabasesInput) SetMaxRecords(v int64) *DescribeTenantDatabasesInput

SetMaxRecords sets the MaxRecords field's value.

func (*DescribeTenantDatabasesInput) SetTenantDBName

func (s *DescribeTenantDatabasesInput) SetTenantDBName(v string) *DescribeTenantDatabasesInput

SetTenantDBName sets the TenantDBName field's value.

func (DescribeTenantDatabasesInput) String

func (s DescribeTenantDatabasesInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeTenantDatabasesInput) Validate

func (s *DescribeTenantDatabasesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeTenantDatabasesOutput

type DescribeTenantDatabasesOutput struct {

    // An optional pagination token provided by a previous DescribeTenantDatabases
    // request. If this parameter is specified, the response includes only records
    // beyond the marker, up to the value specified by MaxRecords.
    Marker *string `type:"string"`

    // An array of the tenant databases requested by the DescribeTenantDatabases
    // operation.
    TenantDatabases []*TenantDatabase `locationNameList:"TenantDatabase" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeTenantDatabasesOutput) GoString

func (s DescribeTenantDatabasesOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeTenantDatabasesOutput) SetMarker

func (s *DescribeTenantDatabasesOutput) SetMarker(v string) *DescribeTenantDatabasesOutput

SetMarker sets the Marker field's value.

func (*DescribeTenantDatabasesOutput) SetTenantDatabases

func (s *DescribeTenantDatabasesOutput) SetTenantDatabases(v []*TenantDatabase) *DescribeTenantDatabasesOutput

SetTenantDatabases sets the TenantDatabases field's value.

func (DescribeTenantDatabasesOutput) String

func (s DescribeTenantDatabasesOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeValidDBInstanceModificationsInput

type DescribeValidDBInstanceModificationsInput struct {

    // The customer identifier or the ARN of your DB instance.
    //
    // DBInstanceIdentifier is a required field
    DBInstanceIdentifier *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DescribeValidDBInstanceModificationsInput) GoString

func (s DescribeValidDBInstanceModificationsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeValidDBInstanceModificationsInput) SetDBInstanceIdentifier

func (s *DescribeValidDBInstanceModificationsInput) SetDBInstanceIdentifier(v string) *DescribeValidDBInstanceModificationsInput

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (DescribeValidDBInstanceModificationsInput) String

func (s DescribeValidDBInstanceModificationsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeValidDBInstanceModificationsInput) Validate

func (s *DescribeValidDBInstanceModificationsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeValidDBInstanceModificationsOutput

type DescribeValidDBInstanceModificationsOutput struct {

    // Information about valid modifications that you can make to your DB instance.
    // Contains the result of a successful call to the DescribeValidDBInstanceModifications
    // action. You can use this information when you call ModifyDBInstance.
    ValidDBInstanceModificationsMessage *ValidDBInstanceModificationsMessage `type:"structure"`
    // contains filtered or unexported fields
}

func (DescribeValidDBInstanceModificationsOutput) GoString

func (s DescribeValidDBInstanceModificationsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeValidDBInstanceModificationsOutput) SetValidDBInstanceModificationsMessage

func (s *DescribeValidDBInstanceModificationsOutput) SetValidDBInstanceModificationsMessage(v *ValidDBInstanceModificationsMessage) *DescribeValidDBInstanceModificationsOutput

SetValidDBInstanceModificationsMessage sets the ValidDBInstanceModificationsMessage field's value.

func (DescribeValidDBInstanceModificationsOutput) String

func (s DescribeValidDBInstanceModificationsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DisableHttpEndpointInput

type DisableHttpEndpointInput struct {

    // The Amazon Resource Name (ARN) of the DB cluster.
    //
    // ResourceArn is a required field
    ResourceArn *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DisableHttpEndpointInput) GoString

func (s DisableHttpEndpointInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DisableHttpEndpointInput) SetResourceArn

func (s *DisableHttpEndpointInput) SetResourceArn(v string) *DisableHttpEndpointInput

SetResourceArn sets the ResourceArn field's value.

func (DisableHttpEndpointInput) String

func (s DisableHttpEndpointInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DisableHttpEndpointInput) Validate

func (s *DisableHttpEndpointInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DisableHttpEndpointOutput

type DisableHttpEndpointOutput struct {

    // Indicates whether the HTTP endpoint is enabled or disabled for the DB cluster.
    HttpEndpointEnabled *bool `type:"boolean"`

    // The ARN of the DB cluster.
    ResourceArn *string `type:"string"`
    // contains filtered or unexported fields
}

func (DisableHttpEndpointOutput) GoString

func (s DisableHttpEndpointOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DisableHttpEndpointOutput) SetHttpEndpointEnabled

func (s *DisableHttpEndpointOutput) SetHttpEndpointEnabled(v bool) *DisableHttpEndpointOutput

SetHttpEndpointEnabled sets the HttpEndpointEnabled field's value.

func (*DisableHttpEndpointOutput) SetResourceArn

func (s *DisableHttpEndpointOutput) SetResourceArn(v string) *DisableHttpEndpointOutput

SetResourceArn sets the ResourceArn field's value.

func (DisableHttpEndpointOutput) String

func (s DisableHttpEndpointOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DocLink struct {

    // The text with the link to documentation for the recommendation.
    Text *string `type:"string"`

    // The URL for the documentation for the recommendation.
    Url *string `type:"string"`
    // contains filtered or unexported fields
}

A link to documentation that provides additional information for a recommendation.

func (DocLink) GoString

func (s DocLink) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DocLink) SetText

func (s *DocLink) SetText(v string) *DocLink

SetText sets the Text field's value.

func (*DocLink) SetUrl

func (s *DocLink) SetUrl(v string) *DocLink

SetUrl sets the Url field's value.

func (DocLink) String

func (s DocLink) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DomainMembership

type DomainMembership struct {

    // The ARN for the Secrets Manager secret with the credentials for the user
    // that's a member of the domain.
    AuthSecretArn *string `type:"string"`

    // The IPv4 DNS IP addresses of the primary and secondary Active Directory domain
    // controllers.
    DnsIps []*string `type:"list"`

    // The identifier of the Active Directory Domain.
    Domain *string `type:"string"`

    // The fully qualified domain name (FQDN) of the Active Directory Domain.
    FQDN *string `type:"string"`

    // The name of the IAM role used when making API calls to the Directory Service.
    IAMRoleName *string `type:"string"`

    // The Active Directory organizational unit for the DB instance or cluster.
    OU *string `type:"string"`

    // The status of the Active Directory Domain membership for the DB instance
    // or cluster. Values include joined, pending-join, failed, and so on.
    Status *string `type:"string"`
    // contains filtered or unexported fields
}

An Active Directory Domain membership record associated with the DB instance or cluster.

func (DomainMembership) GoString

func (s DomainMembership) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DomainMembership) SetAuthSecretArn

func (s *DomainMembership) SetAuthSecretArn(v string) *DomainMembership

SetAuthSecretArn sets the AuthSecretArn field's value.

func (*DomainMembership) SetDnsIps

func (s *DomainMembership) SetDnsIps(v []*string) *DomainMembership

SetDnsIps sets the DnsIps field's value.

func (*DomainMembership) SetDomain

func (s *DomainMembership) SetDomain(v string) *DomainMembership

SetDomain sets the Domain field's value.

func (*DomainMembership) SetFQDN

func (s *DomainMembership) SetFQDN(v string) *DomainMembership

SetFQDN sets the FQDN field's value.

func (*DomainMembership) SetIAMRoleName

func (s *DomainMembership) SetIAMRoleName(v string) *DomainMembership

SetIAMRoleName sets the IAMRoleName field's value.

func (*DomainMembership) SetOU

func (s *DomainMembership) SetOU(v string) *DomainMembership

SetOU sets the OU field's value.

func (*DomainMembership) SetStatus

func (s *DomainMembership) SetStatus(v string) *DomainMembership

SetStatus sets the Status field's value.

func (DomainMembership) String

func (s DomainMembership) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DoubleRange

type DoubleRange struct {

    // The minimum value in the range.
    From *float64 `type:"double"`

    // The maximum value in the range.
    To *float64 `type:"double"`
    // contains filtered or unexported fields
}

A range of double values.

func (DoubleRange) GoString

func (s DoubleRange) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DoubleRange) SetFrom

func (s *DoubleRange) SetFrom(v float64) *DoubleRange

SetFrom sets the From field's value.

func (*DoubleRange) SetTo

func (s *DoubleRange) SetTo(v float64) *DoubleRange

SetTo sets the To field's value.

func (DoubleRange) String

func (s DoubleRange) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DownloadDBLogFilePortionInput

type DownloadDBLogFilePortionInput struct {

    // The customer-assigned name of the DB instance that contains the log files
    // you want to list.
    //
    // Constraints:
    //
    //    * Must match the identifier of an existing DBInstance.
    //
    // DBInstanceIdentifier is a required field
    DBInstanceIdentifier *string `type:"string" required:"true"`

    // The name of the log file to be downloaded.
    //
    // LogFileName is a required field
    LogFileName *string `type:"string" required:"true"`

    // The pagination token provided in the previous request or "0". If the Marker
    // parameter is specified the response includes only records beyond the marker
    // until the end of the file or up to NumberOfLines.
    Marker *string `type:"string"`

    // The number of lines to download. If the number of lines specified results
    // in a file over 1 MB in size, the file is truncated at 1 MB in size.
    //
    // If the NumberOfLines parameter is specified, then the block of lines returned
    // can be from the beginning or the end of the log file, depending on the value
    // of the Marker parameter.
    //
    //    * If neither Marker or NumberOfLines are specified, the entire log file
    //    is returned up to a maximum of 10000 lines, starting with the most recent
    //    log entries first.
    //
    //    * If NumberOfLines is specified and Marker isn't specified, then the most
    //    recent lines from the end of the log file are returned.
    //
    //    * If Marker is specified as "0", then the specified number of lines from
    //    the beginning of the log file are returned.
    //
    //    * You can download the log file in blocks of lines by specifying the size
    //    of the block using the NumberOfLines parameter, and by specifying a value
    //    of "0" for the Marker parameter in your first request. Include the Marker
    //    value returned in the response as the Marker value for the next request,
    //    continuing until the AdditionalDataPending response element returns false.
    NumberOfLines *int64 `type:"integer"`
    // contains filtered or unexported fields
}

func (DownloadDBLogFilePortionInput) GoString

func (s DownloadDBLogFilePortionInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DownloadDBLogFilePortionInput) SetDBInstanceIdentifier

func (s *DownloadDBLogFilePortionInput) SetDBInstanceIdentifier(v string) *DownloadDBLogFilePortionInput

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*DownloadDBLogFilePortionInput) SetLogFileName

func (s *DownloadDBLogFilePortionInput) SetLogFileName(v string) *DownloadDBLogFilePortionInput

SetLogFileName sets the LogFileName field's value.

func (*DownloadDBLogFilePortionInput) SetMarker

func (s *DownloadDBLogFilePortionInput) SetMarker(v string) *DownloadDBLogFilePortionInput

SetMarker sets the Marker field's value.

func (*DownloadDBLogFilePortionInput) SetNumberOfLines

func (s *DownloadDBLogFilePortionInput) SetNumberOfLines(v int64) *DownloadDBLogFilePortionInput

SetNumberOfLines sets the NumberOfLines field's value.

func (DownloadDBLogFilePortionInput) String

func (s DownloadDBLogFilePortionInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DownloadDBLogFilePortionInput) Validate

func (s *DownloadDBLogFilePortionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DownloadDBLogFilePortionOutput

type DownloadDBLogFilePortionOutput struct {

    // A Boolean value that, if true, indicates there is more data to be downloaded.
    AdditionalDataPending *bool `type:"boolean"`

    // Entries from the specified log file.
    LogFileData *string `type:"string"`

    // A pagination token that can be used in a later DownloadDBLogFilePortion request.
    Marker *string `type:"string"`
    // contains filtered or unexported fields
}

This data type is used as a response element to DownloadDBLogFilePortion.

func (DownloadDBLogFilePortionOutput) GoString

func (s DownloadDBLogFilePortionOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DownloadDBLogFilePortionOutput) SetAdditionalDataPending

func (s *DownloadDBLogFilePortionOutput) SetAdditionalDataPending(v bool) *DownloadDBLogFilePortionOutput

SetAdditionalDataPending sets the AdditionalDataPending field's value.

func (*DownloadDBLogFilePortionOutput) SetLogFileData

func (s *DownloadDBLogFilePortionOutput) SetLogFileData(v string) *DownloadDBLogFilePortionOutput

SetLogFileData sets the LogFileData field's value.

func (*DownloadDBLogFilePortionOutput) SetMarker

func (s *DownloadDBLogFilePortionOutput) SetMarker(v string) *DownloadDBLogFilePortionOutput

SetMarker sets the Marker field's value.

func (DownloadDBLogFilePortionOutput) String

func (s DownloadDBLogFilePortionOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type EC2SecurityGroup

type EC2SecurityGroup struct {

    // Specifies the id of the EC2 security group.
    EC2SecurityGroupId *string `type:"string"`

    // Specifies the name of the EC2 security group.
    EC2SecurityGroupName *string `type:"string"`

    // Specifies the Amazon Web Services ID of the owner of the EC2 security group
    // specified in the EC2SecurityGroupName field.
    EC2SecurityGroupOwnerId *string `type:"string"`

    // Provides the status of the EC2 security group. Status can be "authorizing",
    // "authorized", "revoking", and "revoked".
    Status *string `type:"string"`
    // contains filtered or unexported fields
}

This data type is used as a response element in the following actions:

  • AuthorizeDBSecurityGroupIngress

  • DescribeDBSecurityGroups

  • RevokeDBSecurityGroupIngress

func (EC2SecurityGroup) GoString

func (s EC2SecurityGroup) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*EC2SecurityGroup) SetEC2SecurityGroupId

func (s *EC2SecurityGroup) SetEC2SecurityGroupId(v string) *EC2SecurityGroup

SetEC2SecurityGroupId sets the EC2SecurityGroupId field's value.

func (*EC2SecurityGroup) SetEC2SecurityGroupName

func (s *EC2SecurityGroup) SetEC2SecurityGroupName(v string) *EC2SecurityGroup

SetEC2SecurityGroupName sets the EC2SecurityGroupName field's value.

func (*EC2SecurityGroup) SetEC2SecurityGroupOwnerId

func (s *EC2SecurityGroup) SetEC2SecurityGroupOwnerId(v string) *EC2SecurityGroup

SetEC2SecurityGroupOwnerId sets the EC2SecurityGroupOwnerId field's value.

func (*EC2SecurityGroup) SetStatus

func (s *EC2SecurityGroup) SetStatus(v string) *EC2SecurityGroup

SetStatus sets the Status field's value.

func (EC2SecurityGroup) String

func (s EC2SecurityGroup) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type EnableHttpEndpointInput

type EnableHttpEndpointInput struct {

    // The Amazon Resource Name (ARN) of the DB cluster.
    //
    // ResourceArn is a required field
    ResourceArn *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (EnableHttpEndpointInput) GoString

func (s EnableHttpEndpointInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*EnableHttpEndpointInput) SetResourceArn

func (s *EnableHttpEndpointInput) SetResourceArn(v string) *EnableHttpEndpointInput

SetResourceArn sets the ResourceArn field's value.

func (EnableHttpEndpointInput) String

func (s EnableHttpEndpointInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*EnableHttpEndpointInput) Validate

func (s *EnableHttpEndpointInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type EnableHttpEndpointOutput

type EnableHttpEndpointOutput struct {

    // Indicates whether the HTTP endpoint is enabled or disabled for the DB cluster.
    HttpEndpointEnabled *bool `type:"boolean"`

    // The ARN of the DB cluster.
    ResourceArn *string `type:"string"`
    // contains filtered or unexported fields
}

func (EnableHttpEndpointOutput) GoString

func (s EnableHttpEndpointOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*EnableHttpEndpointOutput) SetHttpEndpointEnabled

func (s *EnableHttpEndpointOutput) SetHttpEndpointEnabled(v bool) *EnableHttpEndpointOutput

SetHttpEndpointEnabled sets the HttpEndpointEnabled field's value.

func (*EnableHttpEndpointOutput) SetResourceArn

func (s *EnableHttpEndpointOutput) SetResourceArn(v string) *EnableHttpEndpointOutput

SetResourceArn sets the ResourceArn field's value.

func (EnableHttpEndpointOutput) String

func (s EnableHttpEndpointOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type Endpoint

type Endpoint struct {

    // Specifies the DNS address of the DB instance.
    Address *string `type:"string"`

    // Specifies the ID that Amazon Route 53 assigns when you create a hosted zone.
    HostedZoneId *string `type:"string"`

    // Specifies the port that the database engine is listening on.
    Port *int64 `type:"integer"`
    // contains filtered or unexported fields
}

This data type represents the information you need to connect to an Amazon RDS DB instance. This data type is used as a response element in the following actions:

  • CreateDBInstance

  • DescribeDBInstances

  • DeleteDBInstance

For the data structure that represents Amazon Aurora DB cluster endpoints, see DBClusterEndpoint.

func (Endpoint) GoString

func (s Endpoint) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Endpoint) SetAddress

func (s *Endpoint) SetAddress(v string) *Endpoint

SetAddress sets the Address field's value.

func (*Endpoint) SetHostedZoneId

func (s *Endpoint) SetHostedZoneId(v string) *Endpoint

SetHostedZoneId sets the HostedZoneId field's value.

func (*Endpoint) SetPort

func (s *Endpoint) SetPort(v int64) *Endpoint

SetPort sets the Port field's value.

func (Endpoint) String

func (s Endpoint) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type EngineDefaults

type EngineDefaults struct {

    // Specifies the name of the DB parameter group family that the engine default
    // parameters apply to.
    DBParameterGroupFamily *string `type:"string"`

    // An optional pagination token provided by a previous EngineDefaults request.
    // If this parameter is specified, the response includes only records beyond
    // the marker, up to the value specified by MaxRecords .
    Marker *string `type:"string"`

    // Contains a list of engine default parameters.
    Parameters []*Parameter `locationNameList:"Parameter" type:"list"`
    // contains filtered or unexported fields
}

Contains the result of a successful invocation of the DescribeEngineDefaultParameters action.

func (EngineDefaults) GoString

func (s EngineDefaults) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*EngineDefaults) SetDBParameterGroupFamily

func (s *EngineDefaults) SetDBParameterGroupFamily(v string) *EngineDefaults

SetDBParameterGroupFamily sets the DBParameterGroupFamily field's value.

func (*EngineDefaults) SetMarker

func (s *EngineDefaults) SetMarker(v string) *EngineDefaults

SetMarker sets the Marker field's value.

func (*EngineDefaults) SetParameters

func (s *EngineDefaults) SetParameters(v []*Parameter) *EngineDefaults

SetParameters sets the Parameters field's value.

func (EngineDefaults) String

func (s EngineDefaults) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type Event

type Event struct {

    // Specifies the date and time of the event.
    Date *time.Time `type:"timestamp"`

    // Specifies the category for the event.
    EventCategories []*string `locationNameList:"EventCategory" type:"list"`

    // Provides the text of this event.
    Message *string `type:"string"`

    // The Amazon Resource Name (ARN) for the event.
    SourceArn *string `type:"string"`

    // Provides the identifier for the source of the event.
    SourceIdentifier *string `type:"string"`

    // Specifies the source type for this event.
    SourceType *string `type:"string" enum:"SourceType"`
    // contains filtered or unexported fields
}

This data type is used as a response element in the DescribeEvents (https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeEvents.html) action.

func (Event) GoString

func (s Event) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Event) SetDate

func (s *Event) SetDate(v time.Time) *Event

SetDate sets the Date field's value.

func (*Event) SetEventCategories

func (s *Event) SetEventCategories(v []*string) *Event

SetEventCategories sets the EventCategories field's value.

func (*Event) SetMessage

func (s *Event) SetMessage(v string) *Event

SetMessage sets the Message field's value.

func (*Event) SetSourceArn

func (s *Event) SetSourceArn(v string) *Event

SetSourceArn sets the SourceArn field's value.

func (*Event) SetSourceIdentifier

func (s *Event) SetSourceIdentifier(v string) *Event

SetSourceIdentifier sets the SourceIdentifier field's value.

func (*Event) SetSourceType

func (s *Event) SetSourceType(v string) *Event

SetSourceType sets the SourceType field's value.

func (Event) String

func (s Event) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type EventCategoriesMap

type EventCategoriesMap struct {

    // The event categories for the specified source type
    EventCategories []*string `locationNameList:"EventCategory" type:"list"`

    // The source type that the returned categories belong to
    SourceType *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the results of a successful invocation of the DescribeEventCategories (https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeEventCategories.html) operation.

func (EventCategoriesMap) GoString

func (s EventCategoriesMap) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*EventCategoriesMap) SetEventCategories

func (s *EventCategoriesMap) SetEventCategories(v []*string) *EventCategoriesMap

SetEventCategories sets the EventCategories field's value.

func (*EventCategoriesMap) SetSourceType

func (s *EventCategoriesMap) SetSourceType(v string) *EventCategoriesMap

SetSourceType sets the SourceType field's value.

func (EventCategoriesMap) String

func (s EventCategoriesMap) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type EventSubscription

type EventSubscription struct {

    // The RDS event notification subscription Id.
    CustSubscriptionId *string `type:"string"`

    // The Amazon Web Services customer account associated with the RDS event notification
    // subscription.
    CustomerAwsId *string `type:"string"`

    // Specifies whether the subscription is enabled. True indicates the subscription
    // is enabled.
    Enabled *bool `type:"boolean"`

    // A list of event categories for the RDS event notification subscription.
    EventCategoriesList []*string `locationNameList:"EventCategory" type:"list"`

    // The Amazon Resource Name (ARN) for the event subscription.
    EventSubscriptionArn *string `type:"string"`

    // The topic ARN of the RDS event notification subscription.
    SnsTopicArn *string `type:"string"`

    // A list of source IDs for the RDS event notification subscription.
    SourceIdsList []*string `locationNameList:"SourceId" type:"list"`

    // The source type for the RDS event notification subscription.
    SourceType *string `type:"string"`

    // The status of the RDS event notification subscription.
    //
    // Constraints:
    //
    // Can be one of the following: creating | modifying | deleting | active | no-permission
    // | topic-not-exist
    //
    // The status "no-permission" indicates that RDS no longer has permission to
    // post to the SNS topic. The status "topic-not-exist" indicates that the topic
    // was deleted after the subscription was created.
    Status *string `type:"string"`

    // The time the RDS event notification subscription was created.
    SubscriptionCreationTime *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the results of a successful invocation of the DescribeEventSubscriptions action.

func (EventSubscription) GoString

func (s EventSubscription) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*EventSubscription) SetCustSubscriptionId

func (s *EventSubscription) SetCustSubscriptionId(v string) *EventSubscription

SetCustSubscriptionId sets the CustSubscriptionId field's value.

func (*EventSubscription) SetCustomerAwsId

func (s *EventSubscription) SetCustomerAwsId(v string) *EventSubscription

SetCustomerAwsId sets the CustomerAwsId field's value.

func (*EventSubscription) SetEnabled

func (s *EventSubscription) SetEnabled(v bool) *EventSubscription

SetEnabled sets the Enabled field's value.

func (*EventSubscription) SetEventCategoriesList

func (s *EventSubscription) SetEventCategoriesList(v []*string) *EventSubscription

SetEventCategoriesList sets the EventCategoriesList field's value.

func (*EventSubscription) SetEventSubscriptionArn

func (s *EventSubscription) SetEventSubscriptionArn(v string) *EventSubscription

SetEventSubscriptionArn sets the EventSubscriptionArn field's value.

func (*EventSubscription) SetSnsTopicArn

func (s *EventSubscription) SetSnsTopicArn(v string) *EventSubscription

SetSnsTopicArn sets the SnsTopicArn field's value.

func (*EventSubscription) SetSourceIdsList

func (s *EventSubscription) SetSourceIdsList(v []*string) *EventSubscription

SetSourceIdsList sets the SourceIdsList field's value.

func (*EventSubscription) SetSourceType

func (s *EventSubscription) SetSourceType(v string) *EventSubscription

SetSourceType sets the SourceType field's value.

func (*EventSubscription) SetStatus

func (s *EventSubscription) SetStatus(v string) *EventSubscription

SetStatus sets the Status field's value.

func (*EventSubscription) SetSubscriptionCreationTime

func (s *EventSubscription) SetSubscriptionCreationTime(v string) *EventSubscription

SetSubscriptionCreationTime sets the SubscriptionCreationTime field's value.

func (EventSubscription) String

func (s EventSubscription) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ExportTask

type ExportTask struct {

    // The data exported from the snapshot or cluster.
    //
    // Valid Values:
    //
    //    * database - Export all the data from a specified database.
    //
    //    * database.table table-name - Export a table of the snapshot or cluster.
    //    This format is valid only for RDS for MySQL, RDS for MariaDB, and Aurora
    //    MySQL.
    //
    //    * database.schema schema-name - Export a database schema of the snapshot
    //    or cluster. This format is valid only for RDS for PostgreSQL and Aurora
    //    PostgreSQL.
    //
    //    * database.schema.table table-name - Export a table of the database schema.
    //    This format is valid only for RDS for PostgreSQL and Aurora PostgreSQL.
    ExportOnly []*string `type:"list"`

    // A unique identifier for the snapshot or cluster export task. This ID isn't
    // an identifier for the Amazon S3 bucket where the data is exported.
    ExportTaskIdentifier *string `type:"string"`

    // The reason the export failed, if it failed.
    FailureCause *string `type:"string"`

    // The name of the IAM role that is used to write to Amazon S3 when exporting
    // a snapshot or cluster.
    IamRoleArn *string `type:"string"`

    // The key identifier of the Amazon Web Services KMS key that is used to encrypt
    // the data when it's exported to Amazon S3. The KMS key identifier is its key
    // ARN, key ID, alias ARN, or alias name. The IAM role used for the export must
    // have encryption and decryption permissions to use this KMS key.
    KmsKeyId *string `type:"string"`

    // The progress of the snapshot or cluster export task as a percentage.
    PercentProgress *int64 `type:"integer"`

    // The Amazon S3 bucket where the snapshot or cluster is exported to.
    S3Bucket *string `type:"string"`

    // The Amazon S3 bucket prefix that is the file name and path of the exported
    // data.
    S3Prefix *string `type:"string"`

    // The time when the snapshot was created.
    SnapshotTime *time.Time `type:"timestamp"`

    // The Amazon Resource Name (ARN) of the snapshot or cluster exported to Amazon
    // S3.
    SourceArn *string `type:"string"`

    // The type of source for the export.
    SourceType *string `type:"string" enum:"ExportSourceType"`

    // The progress status of the export task. The status can be one of the following:
    //
    //    * CANCELED
    //
    //    * CANCELING
    //
    //    * COMPLETE
    //
    //    * FAILED
    //
    //    * IN_PROGRESS
    //
    //    * STARTING
    Status *string `type:"string"`

    // The time when the snapshot or cluster export task ended.
    TaskEndTime *time.Time `type:"timestamp"`

    // The time when the snapshot or cluster export task started.
    TaskStartTime *time.Time `type:"timestamp"`

    // The total amount of data exported, in gigabytes.
    TotalExtractedDataInGB *int64 `type:"integer"`

    // A warning about the snapshot or cluster export task.
    WarningMessage *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the details of a snapshot or cluster export to Amazon S3.

This data type is used as a response element in the DescribeExportTasks operation.

func (ExportTask) GoString

func (s ExportTask) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ExportTask) SetExportOnly

func (s *ExportTask) SetExportOnly(v []*string) *ExportTask

SetExportOnly sets the ExportOnly field's value.

func (*ExportTask) SetExportTaskIdentifier

func (s *ExportTask) SetExportTaskIdentifier(v string) *ExportTask

SetExportTaskIdentifier sets the ExportTaskIdentifier field's value.

func (*ExportTask) SetFailureCause

func (s *ExportTask) SetFailureCause(v string) *ExportTask

SetFailureCause sets the FailureCause field's value.

func (*ExportTask) SetIamRoleArn

func (s *ExportTask) SetIamRoleArn(v string) *ExportTask

SetIamRoleArn sets the IamRoleArn field's value.

func (*ExportTask) SetKmsKeyId

func (s *ExportTask) SetKmsKeyId(v string) *ExportTask

SetKmsKeyId sets the KmsKeyId field's value.

func (*ExportTask) SetPercentProgress

func (s *ExportTask) SetPercentProgress(v int64) *ExportTask

SetPercentProgress sets the PercentProgress field's value.

func (*ExportTask) SetS3Bucket

func (s *ExportTask) SetS3Bucket(v string) *ExportTask

SetS3Bucket sets the S3Bucket field's value.

func (*ExportTask) SetS3Prefix

func (s *ExportTask) SetS3Prefix(v string) *ExportTask

SetS3Prefix sets the S3Prefix field's value.

func (*ExportTask) SetSnapshotTime

func (s *ExportTask) SetSnapshotTime(v time.Time) *ExportTask

SetSnapshotTime sets the SnapshotTime field's value.

func (*ExportTask) SetSourceArn

func (s *ExportTask) SetSourceArn(v string) *ExportTask

SetSourceArn sets the SourceArn field's value.

func (*ExportTask) SetSourceType

func (s *ExportTask) SetSourceType(v string) *ExportTask

SetSourceType sets the SourceType field's value.

func (*ExportTask) SetStatus

func (s *ExportTask) SetStatus(v string) *ExportTask

SetStatus sets the Status field's value.

func (*ExportTask) SetTaskEndTime

func (s *ExportTask) SetTaskEndTime(v time.Time) *ExportTask

SetTaskEndTime sets the TaskEndTime field's value.

func (*ExportTask) SetTaskStartTime

func (s *ExportTask) SetTaskStartTime(v time.Time) *ExportTask

SetTaskStartTime sets the TaskStartTime field's value.

func (*ExportTask) SetTotalExtractedDataInGB

func (s *ExportTask) SetTotalExtractedDataInGB(v int64) *ExportTask

SetTotalExtractedDataInGB sets the TotalExtractedDataInGB field's value.

func (*ExportTask) SetWarningMessage

func (s *ExportTask) SetWarningMessage(v string) *ExportTask

SetWarningMessage sets the WarningMessage field's value.

func (ExportTask) String

func (s ExportTask) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type FailoverDBClusterInput

type FailoverDBClusterInput struct {

    // The identifier of the DB cluster to force a failover for. This parameter
    // isn't case-sensitive.
    //
    // Constraints:
    //
    //    * Must match the identifier of an existing DB cluster.
    //
    // DBClusterIdentifier is a required field
    DBClusterIdentifier *string `type:"string" required:"true"`

    // The name of the DB instance to promote to the primary DB instance.
    //
    // Specify the DB instance identifier for an Aurora Replica or a Multi-AZ readable
    // standby in the DB cluster, for example mydbcluster-replica1.
    //
    // This setting isn't supported for RDS for MySQL Multi-AZ DB clusters.
    TargetDBInstanceIdentifier *string `type:"string"`
    // contains filtered or unexported fields
}

func (FailoverDBClusterInput) GoString

func (s FailoverDBClusterInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*FailoverDBClusterInput) SetDBClusterIdentifier

func (s *FailoverDBClusterInput) SetDBClusterIdentifier(v string) *FailoverDBClusterInput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*FailoverDBClusterInput) SetTargetDBInstanceIdentifier

func (s *FailoverDBClusterInput) SetTargetDBInstanceIdentifier(v string) *FailoverDBClusterInput

SetTargetDBInstanceIdentifier sets the TargetDBInstanceIdentifier field's value.

func (FailoverDBClusterInput) String

func (s FailoverDBClusterInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*FailoverDBClusterInput) Validate

func (s *FailoverDBClusterInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type FailoverDBClusterOutput

type FailoverDBClusterOutput struct {

    // Contains the details of an Amazon Aurora DB cluster or Multi-AZ DB cluster.
    //
    // For an Amazon Aurora DB cluster, this data type is used as a response element
    // in the operations CreateDBCluster, DeleteDBCluster, DescribeDBClusters, FailoverDBCluster,
    // ModifyDBCluster, PromoteReadReplicaDBCluster, RestoreDBClusterFromS3, RestoreDBClusterFromSnapshot,
    // RestoreDBClusterToPointInTime, StartDBCluster, and StopDBCluster.
    //
    // For a Multi-AZ DB cluster, this data type is used as a response element in
    // the operations CreateDBCluster, DeleteDBCluster, DescribeDBClusters, FailoverDBCluster,
    // ModifyDBCluster, RebootDBCluster, RestoreDBClusterFromSnapshot, and RestoreDBClusterToPointInTime.
    //
    // For more information on Amazon Aurora DB clusters, see What is Amazon Aurora?
    // (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html)
    // in the Amazon Aurora User Guide.
    //
    // For more information on Multi-AZ DB clusters, see Multi-AZ deployments with
    // two readable standby DB instances (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html)
    // in the Amazon RDS User Guide.
    DBCluster *DBCluster `type:"structure"`
    // contains filtered or unexported fields
}

func (FailoverDBClusterOutput) GoString

func (s FailoverDBClusterOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*FailoverDBClusterOutput) SetDBCluster

func (s *FailoverDBClusterOutput) SetDBCluster(v *DBCluster) *FailoverDBClusterOutput

SetDBCluster sets the DBCluster field's value.

func (FailoverDBClusterOutput) String

func (s FailoverDBClusterOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type FailoverGlobalClusterInput

type FailoverGlobalClusterInput struct {

    // Specifies whether to allow data loss for this global database cluster operation.
    // Allowing data loss triggers a global failover operation.
    //
    // If you don't specify AllowDataLoss, the global database cluster operation
    // defaults to a switchover.
    //
    // Constraints:
    //
    //    * Can't be specified together with the Switchover parameter.
    AllowDataLoss *bool `type:"boolean"`

    // The identifier of the global database cluster (Aurora global database) this
    // operation should apply to. The identifier is the unique key assigned by the
    // user when the Aurora global database is created. In other words, it's the
    // name of the Aurora global database.
    //
    // Constraints:
    //
    //    * Must match the identifier of an existing global database cluster.
    //
    // GlobalClusterIdentifier is a required field
    GlobalClusterIdentifier *string `min:"1" type:"string" required:"true"`

    // Specifies whether to switch over this global database cluster.
    //
    // Constraints:
    //
    //    * Can't be specified together with the AllowDataLoss parameter.
    Switchover *bool `type:"boolean"`

    // The identifier of the secondary Aurora DB cluster that you want to promote
    // to the primary for the global database cluster. Use the Amazon Resource Name
    // (ARN) for the identifier so that Aurora can locate the cluster in its Amazon
    // Web Services Region.
    //
    // TargetDbClusterIdentifier is a required field
    TargetDbClusterIdentifier *string `min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (FailoverGlobalClusterInput) GoString

func (s FailoverGlobalClusterInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*FailoverGlobalClusterInput) SetAllowDataLoss

func (s *FailoverGlobalClusterInput) SetAllowDataLoss(v bool) *FailoverGlobalClusterInput

SetAllowDataLoss sets the AllowDataLoss field's value.

func (*FailoverGlobalClusterInput) SetGlobalClusterIdentifier

func (s *FailoverGlobalClusterInput) SetGlobalClusterIdentifier(v string) *FailoverGlobalClusterInput

SetGlobalClusterIdentifier sets the GlobalClusterIdentifier field's value.

func (*FailoverGlobalClusterInput) SetSwitchover

func (s *FailoverGlobalClusterInput) SetSwitchover(v bool) *FailoverGlobalClusterInput

SetSwitchover sets the Switchover field's value.

func (*FailoverGlobalClusterInput) SetTargetDbClusterIdentifier

func (s *FailoverGlobalClusterInput) SetTargetDbClusterIdentifier(v string) *FailoverGlobalClusterInput

SetTargetDbClusterIdentifier sets the TargetDbClusterIdentifier field's value.

func (FailoverGlobalClusterInput) String

func (s FailoverGlobalClusterInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*FailoverGlobalClusterInput) Validate

func (s *FailoverGlobalClusterInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type FailoverGlobalClusterOutput

type FailoverGlobalClusterOutput struct {

    // A data type representing an Aurora global database.
    GlobalCluster *GlobalCluster `type:"structure"`
    // contains filtered or unexported fields
}

func (FailoverGlobalClusterOutput) GoString

func (s FailoverGlobalClusterOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*FailoverGlobalClusterOutput) SetGlobalCluster

func (s *FailoverGlobalClusterOutput) SetGlobalCluster(v *GlobalCluster) *FailoverGlobalClusterOutput

SetGlobalCluster sets the GlobalCluster field's value.

func (FailoverGlobalClusterOutput) String

func (s FailoverGlobalClusterOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type FailoverState

type FailoverState struct {

    // The Amazon Resource Name (ARN) of the Aurora DB cluster that is currently
    // being demoted, and which is associated with this state.
    FromDbClusterArn *string `type:"string"`

    // Indicates whether the operation is a global switchover or a global failover.
    // If data loss is allowed, then the operation is a global failover. Otherwise,
    // it's a switchover.
    IsDataLossAllowed *bool `type:"boolean"`

    // The current status of the global cluster. Possible values are as follows:
    //
    //    * pending – The service received a request to switch over or fail over
    //    the global cluster. The global cluster's primary DB cluster and the specified
    //    secondary DB cluster are being verified before the operation starts.
    //
    //    * failing-over – Aurora is promoting the chosen secondary Aurora DB
    //    cluster to become the new primary DB cluster to fail over the global cluster.
    //
    //    * cancelling – The request to switch over or fail over the global cluster
    //    was cancelled and the primary Aurora DB cluster and the selected secondary
    //    Aurora DB cluster are returning to their previous states.
    //
    //    * switching-over – This status covers the range of Aurora internal operations
    //    that take place during the switchover process, such as demoting the primary
    //    Aurora DB cluster, promoting the secondary Aurora DB cluster, and synchronizing
    //    replicas.
    Status *string `type:"string" enum:"FailoverStatus"`

    // The Amazon Resource Name (ARN) of the Aurora DB cluster that is currently
    // being promoted, and which is associated with this state.
    ToDbClusterArn *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the state of scheduled or in-process operations on a global cluster (Aurora global database). This data type is empty unless a switchover or failover operation is scheduled or is in progress on the Aurora global database.

func (FailoverState) GoString

func (s FailoverState) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*FailoverState) SetFromDbClusterArn

func (s *FailoverState) SetFromDbClusterArn(v string) *FailoverState

SetFromDbClusterArn sets the FromDbClusterArn field's value.

func (*FailoverState) SetIsDataLossAllowed

func (s *FailoverState) SetIsDataLossAllowed(v bool) *FailoverState

SetIsDataLossAllowed sets the IsDataLossAllowed field's value.

func (*FailoverState) SetStatus

func (s *FailoverState) SetStatus(v string) *FailoverState

SetStatus sets the Status field's value.

func (*FailoverState) SetToDbClusterArn

func (s *FailoverState) SetToDbClusterArn(v string) *FailoverState

SetToDbClusterArn sets the ToDbClusterArn field's value.

func (FailoverState) String

func (s FailoverState) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type Filter

type Filter struct {

    // The name of the filter. Filter names are case-sensitive.
    //
    // Name is a required field
    Name *string `type:"string" required:"true"`

    // One or more filter values. Filter values are case-sensitive.
    //
    // Values is a required field
    Values []*string `locationNameList:"Value" type:"list" required:"true"`
    // contains filtered or unexported fields
}

A filter name and value pair that is used to return a more specific list of results from a describe operation. Filters can be used to match a set of resources by specific criteria, such as IDs. The filters supported by a describe operation are documented with the describe operation.

Currently, wildcards are not supported in filters.

The following actions can be filtered:

  • DescribeDBClusterBacktracks

  • DescribeDBClusterEndpoints

  • DescribeDBClusters

  • DescribeDBInstances

  • DescribeDBRecommendations

  • DescribeDBShardGroups

  • DescribePendingMaintenanceActions

func (Filter) GoString

func (s Filter) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Filter) SetName

func (s *Filter) SetName(v string) *Filter

SetName sets the Name field's value.

func (*Filter) SetValues

func (s *Filter) SetValues(v []*string) *Filter

SetValues sets the Values field's value.

func (Filter) String

func (s Filter) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Filter) Validate

func (s *Filter) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GlobalCluster

type GlobalCluster struct {

    // The default database name within the new global database cluster.
    DatabaseName *string `type:"string"`

    // The deletion protection setting for the new global database cluster.
    DeletionProtection *bool `type:"boolean"`

    // The Aurora database engine used by the global database cluster.
    Engine *string `type:"string"`

    // Indicates the database engine version.
    EngineVersion *string `type:"string"`

    // A data object containing all properties for the current state of an in-process
    // or pending switchover or failover process for this global cluster (Aurora
    // global database). This object is empty unless the SwitchoverGlobalCluster
    // or FailoverGlobalCluster operation was called on this global cluster.
    FailoverState *FailoverState `type:"structure"`

    // The Amazon Resource Name (ARN) for the global database cluster.
    GlobalClusterArn *string `type:"string"`

    // Contains a user-supplied global database cluster identifier. This identifier
    // is the unique key that identifies a global database cluster.
    GlobalClusterIdentifier *string `type:"string"`

    // The list of primary and secondary clusters within the global database cluster.
    GlobalClusterMembers []*GlobalClusterMember `locationNameList:"GlobalClusterMember" type:"list"`

    // The Amazon Web Services Region-unique, immutable identifier for the global
    // database cluster. This identifier is found in Amazon Web Services CloudTrail
    // log entries whenever the Amazon Web Services KMS key for the DB cluster is
    // accessed.
    GlobalClusterResourceId *string `type:"string"`

    // Specifies the current state of this global database cluster.
    Status *string `type:"string"`

    // The storage encryption setting for the global database cluster.
    StorageEncrypted *bool `type:"boolean"`
    // contains filtered or unexported fields
}

A data type representing an Aurora global database.

func (GlobalCluster) GoString

func (s GlobalCluster) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GlobalCluster) SetDatabaseName

func (s *GlobalCluster) SetDatabaseName(v string) *GlobalCluster

SetDatabaseName sets the DatabaseName field's value.

func (*GlobalCluster) SetDeletionProtection

func (s *GlobalCluster) SetDeletionProtection(v bool) *GlobalCluster

SetDeletionProtection sets the DeletionProtection field's value.

func (*GlobalCluster) SetEngine

func (s *GlobalCluster) SetEngine(v string) *GlobalCluster

SetEngine sets the Engine field's value.

func (*GlobalCluster) SetEngineVersion

func (s *GlobalCluster) SetEngineVersion(v string) *GlobalCluster

SetEngineVersion sets the EngineVersion field's value.

func (*GlobalCluster) SetFailoverState

func (s *GlobalCluster) SetFailoverState(v *FailoverState) *GlobalCluster

SetFailoverState sets the FailoverState field's value.

func (*GlobalCluster) SetGlobalClusterArn

func (s *GlobalCluster) SetGlobalClusterArn(v string) *GlobalCluster

SetGlobalClusterArn sets the GlobalClusterArn field's value.

func (*GlobalCluster) SetGlobalClusterIdentifier

func (s *GlobalCluster) SetGlobalClusterIdentifier(v string) *GlobalCluster

SetGlobalClusterIdentifier sets the GlobalClusterIdentifier field's value.

func (*GlobalCluster) SetGlobalClusterMembers

func (s *GlobalCluster) SetGlobalClusterMembers(v []*GlobalClusterMember) *GlobalCluster

SetGlobalClusterMembers sets the GlobalClusterMembers field's value.

func (*GlobalCluster) SetGlobalClusterResourceId

func (s *GlobalCluster) SetGlobalClusterResourceId(v string) *GlobalCluster

SetGlobalClusterResourceId sets the GlobalClusterResourceId field's value.

func (*GlobalCluster) SetStatus

func (s *GlobalCluster) SetStatus(v string) *GlobalCluster

SetStatus sets the Status field's value.

func (*GlobalCluster) SetStorageEncrypted

func (s *GlobalCluster) SetStorageEncrypted(v bool) *GlobalCluster

SetStorageEncrypted sets the StorageEncrypted field's value.

func (GlobalCluster) String

func (s GlobalCluster) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GlobalClusterMember

type GlobalClusterMember struct {

    // The Amazon Resource Name (ARN) for each Aurora DB cluster in the global cluster.
    DBClusterArn *string `type:"string"`

    // The status of write forwarding for a secondary cluster in the global cluster.
    GlobalWriteForwardingStatus *string `type:"string" enum:"WriteForwardingStatus"`

    // Indicates whether the Aurora DB cluster is the primary cluster (that is,
    // has read-write capability) for the global cluster with which it is associated.
    IsWriter *bool `type:"boolean"`

    // The Amazon Resource Name (ARN) for each read-only secondary cluster associated
    // with the global cluster.
    Readers []*string `type:"list"`

    // The status of synchronization of each Aurora DB cluster in the global cluster.
    SynchronizationStatus *string `type:"string" enum:"GlobalClusterMemberSynchronizationStatus"`
    // contains filtered or unexported fields
}

A data structure with information about any primary and secondary clusters associated with a global cluster (Aurora global database).

func (GlobalClusterMember) GoString

func (s GlobalClusterMember) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GlobalClusterMember) SetDBClusterArn

func (s *GlobalClusterMember) SetDBClusterArn(v string) *GlobalClusterMember

SetDBClusterArn sets the DBClusterArn field's value.

func (*GlobalClusterMember) SetGlobalWriteForwardingStatus

func (s *GlobalClusterMember) SetGlobalWriteForwardingStatus(v string) *GlobalClusterMember

SetGlobalWriteForwardingStatus sets the GlobalWriteForwardingStatus field's value.

func (*GlobalClusterMember) SetIsWriter

func (s *GlobalClusterMember) SetIsWriter(v bool) *GlobalClusterMember

SetIsWriter sets the IsWriter field's value.

func (*GlobalClusterMember) SetReaders

func (s *GlobalClusterMember) SetReaders(v []*string) *GlobalClusterMember

SetReaders sets the Readers field's value.

func (*GlobalClusterMember) SetSynchronizationStatus

func (s *GlobalClusterMember) SetSynchronizationStatus(v string) *GlobalClusterMember

SetSynchronizationStatus sets the SynchronizationStatus field's value.

func (GlobalClusterMember) String

func (s GlobalClusterMember) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type IPRange

type IPRange struct {

    // The IP range.
    CIDRIP *string `type:"string"`

    // The status of the IP range. Status can be "authorizing", "authorized", "revoking",
    // and "revoked".
    Status *string `type:"string"`
    // contains filtered or unexported fields
}

This data type is used as a response element in the DescribeDBSecurityGroups action.

func (IPRange) GoString

func (s IPRange) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*IPRange) SetCIDRIP

func (s *IPRange) SetCIDRIP(v string) *IPRange

SetCIDRIP sets the CIDRIP field's value.

func (*IPRange) SetStatus

func (s *IPRange) SetStatus(v string) *IPRange

SetStatus sets the Status field's value.

func (IPRange) String

func (s IPRange) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type Integration

type Integration struct {

    // The encryption context for the integration. For more information, see Encryption
    // context (https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context)
    // in the Amazon Web Services Key Management Service Developer Guide.
    AdditionalEncryptionContext map[string]*string `type:"map"`

    // The time when the integration was created, in Universal Coordinated Time
    // (UTC).
    CreateTime *time.Time `type:"timestamp"`

    // Data filters for the integration. These filters determine which tables from
    // the source database are sent to the target Amazon Redshift data warehouse.
    DataFilter *string `min:"1" type:"string"`

    // A description of the integration.
    Description *string `type:"string"`

    // Any errors associated with the integration.
    Errors []*IntegrationError `locationNameList:"IntegrationError" type:"list"`

    // The ARN of the integration.
    IntegrationArn *string `min:"1" type:"string"`

    // The name of the integration.
    IntegrationName *string `min:"1" type:"string"`

    // The Amazon Web Services Key Management System (Amazon Web Services KMS) key
    // identifier for the key used to to encrypt the integration.
    KMSKeyId *string `type:"string"`

    // The Amazon Resource Name (ARN) of the database used as the source for replication.
    SourceArn *string `min:"1" type:"string"`

    // The current status of the integration.
    Status *string `type:"string" enum:"IntegrationStatus"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    Tags []*Tag `locationNameList:"Tag" type:"list"`

    // The ARN of the Redshift data warehouse used as the target for replication.
    TargetArn *string `min:"20" type:"string"`
    // contains filtered or unexported fields
}

A zero-ETL integration with Amazon Redshift.

func (Integration) GoString

func (s Integration) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Integration) SetAdditionalEncryptionContext

func (s *Integration) SetAdditionalEncryptionContext(v map[string]*string) *Integration

SetAdditionalEncryptionContext sets the AdditionalEncryptionContext field's value.

func (*Integration) SetCreateTime

func (s *Integration) SetCreateTime(v time.Time) *Integration

SetCreateTime sets the CreateTime field's value.

func (*Integration) SetDataFilter

func (s *Integration) SetDataFilter(v string) *Integration

SetDataFilter sets the DataFilter field's value.

func (*Integration) SetDescription

func (s *Integration) SetDescription(v string) *Integration

SetDescription sets the Description field's value.

func (*Integration) SetErrors

func (s *Integration) SetErrors(v []*IntegrationError) *Integration

SetErrors sets the Errors field's value.

func (*Integration) SetIntegrationArn

func (s *Integration) SetIntegrationArn(v string) *Integration

SetIntegrationArn sets the IntegrationArn field's value.

func (*Integration) SetIntegrationName

func (s *Integration) SetIntegrationName(v string) *Integration

SetIntegrationName sets the IntegrationName field's value.

func (*Integration) SetKMSKeyId

func (s *Integration) SetKMSKeyId(v string) *Integration

SetKMSKeyId sets the KMSKeyId field's value.

func (*Integration) SetSourceArn

func (s *Integration) SetSourceArn(v string) *Integration

SetSourceArn sets the SourceArn field's value.

func (*Integration) SetStatus

func (s *Integration) SetStatus(v string) *Integration

SetStatus sets the Status field's value.

func (*Integration) SetTags

func (s *Integration) SetTags(v []*Tag) *Integration

SetTags sets the Tags field's value.

func (*Integration) SetTargetArn

func (s *Integration) SetTargetArn(v string) *Integration

SetTargetArn sets the TargetArn field's value.

func (Integration) String

func (s Integration) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type IntegrationError

type IntegrationError struct {

    // The error code associated with the integration.
    //
    // ErrorCode is a required field
    ErrorCode *string `type:"string" required:"true"`

    // A message explaining the error.
    ErrorMessage *string `type:"string"`
    // contains filtered or unexported fields
}

An error associated with a zero-ETL integration with Amazon Redshift.

func (IntegrationError) GoString

func (s IntegrationError) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*IntegrationError) SetErrorCode

func (s *IntegrationError) SetErrorCode(v string) *IntegrationError

SetErrorCode sets the ErrorCode field's value.

func (*IntegrationError) SetErrorMessage

func (s *IntegrationError) SetErrorMessage(v string) *IntegrationError

SetErrorMessage sets the ErrorMessage field's value.

func (IntegrationError) String

func (s IntegrationError) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type IssueDetails

type IssueDetails struct {

    // A detailed description of the issue when the recommendation category is performance.
    PerformanceIssueDetails *PerformanceIssueDetails `type:"structure"`
    // contains filtered or unexported fields
}

The details of an issue with your DB instances, DB clusters, and DB parameter groups.

func (IssueDetails) GoString

func (s IssueDetails) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*IssueDetails) SetPerformanceIssueDetails

func (s *IssueDetails) SetPerformanceIssueDetails(v *PerformanceIssueDetails) *IssueDetails

SetPerformanceIssueDetails sets the PerformanceIssueDetails field's value.

func (IssueDetails) String

func (s IssueDetails) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type LimitlessDatabase

type LimitlessDatabase struct {

    // The minimum required capacity for Aurora Limitless Database in Aurora capacity
    // units (ACUs).
    MinRequiredACU *float64 `type:"double"`

    // The status of Aurora Limitless Database.
    Status *string `type:"string" enum:"LimitlessDatabaseStatus"`
    // contains filtered or unexported fields
}

Contains details for Aurora Limitless Database.

func (LimitlessDatabase) GoString

func (s LimitlessDatabase) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*LimitlessDatabase) SetMinRequiredACU

func (s *LimitlessDatabase) SetMinRequiredACU(v float64) *LimitlessDatabase

SetMinRequiredACU sets the MinRequiredACU field's value.

func (*LimitlessDatabase) SetStatus

func (s *LimitlessDatabase) SetStatus(v string) *LimitlessDatabase

SetStatus sets the Status field's value.

func (LimitlessDatabase) String

func (s LimitlessDatabase) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListTagsForResourceInput

type ListTagsForResourceInput struct {

    // This parameter isn't currently supported.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // The Amazon RDS resource with tags to be listed. This value is an Amazon Resource
    // Name (ARN). For information about creating an ARN, see Constructing an ARN
    // for Amazon RDS (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing)
    // in the Amazon RDS User Guide.
    //
    // ResourceName is a required field
    ResourceName *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ListTagsForResourceInput) GoString

func (s ListTagsForResourceInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListTagsForResourceInput) SetFilters

func (s *ListTagsForResourceInput) SetFilters(v []*Filter) *ListTagsForResourceInput

SetFilters sets the Filters field's value.

func (*ListTagsForResourceInput) SetResourceName

func (s *ListTagsForResourceInput) SetResourceName(v string) *ListTagsForResourceInput

SetResourceName sets the ResourceName field's value.

func (ListTagsForResourceInput) String

func (s ListTagsForResourceInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListTagsForResourceInput) Validate

func (s *ListTagsForResourceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListTagsForResourceOutput

type ListTagsForResourceOutput struct {

    // List of tags returned by the ListTagsForResource operation.
    TagList []*Tag `locationNameList:"Tag" type:"list"`
    // contains filtered or unexported fields
}

func (ListTagsForResourceOutput) GoString

func (s ListTagsForResourceOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListTagsForResourceOutput) SetTagList

func (s *ListTagsForResourceOutput) SetTagList(v []*Tag) *ListTagsForResourceOutput

SetTagList sets the TagList field's value.

func (ListTagsForResourceOutput) String

func (s ListTagsForResourceOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type MasterUserSecret

type MasterUserSecret struct {

    // The Amazon Web Services KMS key identifier that is used to encrypt the secret.
    KmsKeyId *string `type:"string"`

    // The Amazon Resource Name (ARN) of the secret.
    SecretArn *string `type:"string"`

    // The status of the secret.
    //
    // The possible status values include the following:
    //
    //    * creating - The secret is being created.
    //
    //    * active - The secret is available for normal use and rotation.
    //
    //    * rotating - The secret is being rotated.
    //
    //    * impaired - The secret can be used to access database credentials, but
    //    it can't be rotated. A secret might have this status if, for example,
    //    permissions are changed so that RDS can no longer access either the secret
    //    or the KMS key for the secret. When a secret has this status, you can
    //    correct the condition that caused the status. Alternatively, modify the
    //    DB instance to turn off automatic management of database credentials,
    //    and then modify the DB instance again to turn on automatic management
    //    of database credentials.
    SecretStatus *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the secret managed by RDS in Amazon Web Services Secrets Manager for the master user password.

For more information, see Password management with Amazon Web Services Secrets Manager (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html) in the Amazon RDS User Guide and Password management with Amazon Web Services Secrets Manager (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-secrets-manager.html) in the Amazon Aurora User Guide.

func (MasterUserSecret) GoString

func (s MasterUserSecret) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*MasterUserSecret) SetKmsKeyId

func (s *MasterUserSecret) SetKmsKeyId(v string) *MasterUserSecret

SetKmsKeyId sets the KmsKeyId field's value.

func (*MasterUserSecret) SetSecretArn

func (s *MasterUserSecret) SetSecretArn(v string) *MasterUserSecret

SetSecretArn sets the SecretArn field's value.

func (*MasterUserSecret) SetSecretStatus

func (s *MasterUserSecret) SetSecretStatus(v string) *MasterUserSecret

SetSecretStatus sets the SecretStatus field's value.

func (MasterUserSecret) String

func (s MasterUserSecret) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type Metric

type Metric struct {

    // The query to retrieve metric data points.
    MetricQuery *MetricQuery `type:"structure"`

    // The name of a metric.
    Name *string `type:"string"`

    // A list of metric references (thresholds).
    References []*MetricReference `type:"list"`

    // The details of different statistics for a metric. The description might contain
    // markdown.
    StatisticsDetails *string `type:"string"`
    // contains filtered or unexported fields
}

The representation of a metric.

func (Metric) GoString

func (s Metric) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Metric) SetMetricQuery

func (s *Metric) SetMetricQuery(v *MetricQuery) *Metric

SetMetricQuery sets the MetricQuery field's value.

func (*Metric) SetName

func (s *Metric) SetName(v string) *Metric

SetName sets the Name field's value.

func (*Metric) SetReferences

func (s *Metric) SetReferences(v []*MetricReference) *Metric

SetReferences sets the References field's value.

func (*Metric) SetStatisticsDetails

func (s *Metric) SetStatisticsDetails(v string) *Metric

SetStatisticsDetails sets the StatisticsDetails field's value.

func (Metric) String

func (s Metric) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type MetricQuery

type MetricQuery struct {

    // The Performance Insights query that you can use to retrieve Performance Insights
    // metric data points.
    PerformanceInsightsMetricQuery *PerformanceInsightsMetricQuery `type:"structure"`
    // contains filtered or unexported fields
}

The query to retrieve metric data points.

func (MetricQuery) GoString

func (s MetricQuery) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*MetricQuery) SetPerformanceInsightsMetricQuery

func (s *MetricQuery) SetPerformanceInsightsMetricQuery(v *PerformanceInsightsMetricQuery) *MetricQuery

SetPerformanceInsightsMetricQuery sets the PerformanceInsightsMetricQuery field's value.

func (MetricQuery) String

func (s MetricQuery) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type MetricReference

type MetricReference struct {

    // The name of the metric reference.
    Name *string `type:"string"`

    // The details of a performance issue.
    ReferenceDetails *ReferenceDetails `type:"structure"`
    // contains filtered or unexported fields
}

The reference (threshold) for a metric.

func (MetricReference) GoString

func (s MetricReference) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*MetricReference) SetName

func (s *MetricReference) SetName(v string) *MetricReference

SetName sets the Name field's value.

func (*MetricReference) SetReferenceDetails

func (s *MetricReference) SetReferenceDetails(v *ReferenceDetails) *MetricReference

SetReferenceDetails sets the ReferenceDetails field's value.

func (MetricReference) String

func (s MetricReference) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type MinimumEngineVersionPerAllowedValue

type MinimumEngineVersionPerAllowedValue struct {

    // The allowed value for an option setting.
    AllowedValue *string `type:"string"`

    // The minimum DB engine version required for the allowed value.
    MinimumEngineVersion *string `type:"string"`
    // contains filtered or unexported fields
}

The minimum DB engine version required for each corresponding allowed value for an option setting.

func (MinimumEngineVersionPerAllowedValue) GoString

func (s MinimumEngineVersionPerAllowedValue) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*MinimumEngineVersionPerAllowedValue) SetAllowedValue

func (s *MinimumEngineVersionPerAllowedValue) SetAllowedValue(v string) *MinimumEngineVersionPerAllowedValue

SetAllowedValue sets the AllowedValue field's value.

func (*MinimumEngineVersionPerAllowedValue) SetMinimumEngineVersion

func (s *MinimumEngineVersionPerAllowedValue) SetMinimumEngineVersion(v string) *MinimumEngineVersionPerAllowedValue

SetMinimumEngineVersion sets the MinimumEngineVersion field's value.

func (MinimumEngineVersionPerAllowedValue) String

func (s MinimumEngineVersionPerAllowedValue) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ModifyActivityStreamInput

type ModifyActivityStreamInput struct {

    // The audit policy state. When a policy is unlocked, it is read/write. When
    // it is locked, it is read-only. You can edit your audit policy only when the
    // activity stream is unlocked or stopped.
    AuditPolicyState *string `type:"string" enum:"AuditPolicyState"`

    // The Amazon Resource Name (ARN) of the RDS for Oracle or Microsoft SQL Server
    // DB instance. For example, arn:aws:rds:us-east-1:12345667890:instance:my-orcl-db.
    ResourceArn *string `type:"string"`
    // contains filtered or unexported fields
}

func (ModifyActivityStreamInput) GoString

func (s ModifyActivityStreamInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyActivityStreamInput) SetAuditPolicyState

func (s *ModifyActivityStreamInput) SetAuditPolicyState(v string) *ModifyActivityStreamInput

SetAuditPolicyState sets the AuditPolicyState field's value.

func (*ModifyActivityStreamInput) SetResourceArn

func (s *ModifyActivityStreamInput) SetResourceArn(v string) *ModifyActivityStreamInput

SetResourceArn sets the ResourceArn field's value.

func (ModifyActivityStreamInput) String

func (s ModifyActivityStreamInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ModifyActivityStreamOutput

type ModifyActivityStreamOutput struct {

    // Indicates whether engine-native audit fields are included in the database
    // activity stream.
    EngineNativeAuditFieldsIncluded *bool `type:"boolean"`

    // The name of the Amazon Kinesis data stream to be used for the database activity
    // stream.
    KinesisStreamName *string `type:"string"`

    // The Amazon Web Services KMS key identifier for encryption of messages in
    // the database activity stream.
    KmsKeyId *string `type:"string"`

    // The mode of the database activity stream.
    Mode *string `type:"string" enum:"ActivityStreamMode"`

    // The status of the modification to the policy state of the database activity
    // stream.
    PolicyStatus *string `type:"string" enum:"ActivityStreamPolicyStatus"`

    // The status of the modification to the database activity stream.
    Status *string `type:"string" enum:"ActivityStreamStatus"`
    // contains filtered or unexported fields
}

func (ModifyActivityStreamOutput) GoString

func (s ModifyActivityStreamOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyActivityStreamOutput) SetEngineNativeAuditFieldsIncluded

func (s *ModifyActivityStreamOutput) SetEngineNativeAuditFieldsIncluded(v bool) *ModifyActivityStreamOutput

SetEngineNativeAuditFieldsIncluded sets the EngineNativeAuditFieldsIncluded field's value.

func (*ModifyActivityStreamOutput) SetKinesisStreamName

func (s *ModifyActivityStreamOutput) SetKinesisStreamName(v string) *ModifyActivityStreamOutput

SetKinesisStreamName sets the KinesisStreamName field's value.

func (*ModifyActivityStreamOutput) SetKmsKeyId

func (s *ModifyActivityStreamOutput) SetKmsKeyId(v string) *ModifyActivityStreamOutput

SetKmsKeyId sets the KmsKeyId field's value.

func (*ModifyActivityStreamOutput) SetMode

func (s *ModifyActivityStreamOutput) SetMode(v string) *ModifyActivityStreamOutput

SetMode sets the Mode field's value.

func (*ModifyActivityStreamOutput) SetPolicyStatus

func (s *ModifyActivityStreamOutput) SetPolicyStatus(v string) *ModifyActivityStreamOutput

SetPolicyStatus sets the PolicyStatus field's value.

func (*ModifyActivityStreamOutput) SetStatus

func (s *ModifyActivityStreamOutput) SetStatus(v string) *ModifyActivityStreamOutput

SetStatus sets the Status field's value.

func (ModifyActivityStreamOutput) String

func (s ModifyActivityStreamOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ModifyCertificatesInput

type ModifyCertificatesInput struct {

    // The new default certificate identifier to override the current one with.
    //
    // To determine the valid values, use the describe-certificates CLI command
    // or the DescribeCertificates API operation.
    CertificateIdentifier *string `type:"string"`

    // Specifies whether to remove the override for the default certificate. If
    // the override is removed, the default certificate is the system default.
    RemoveCustomerOverride *bool `type:"boolean"`
    // contains filtered or unexported fields
}

func (ModifyCertificatesInput) GoString

func (s ModifyCertificatesInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyCertificatesInput) SetCertificateIdentifier

func (s *ModifyCertificatesInput) SetCertificateIdentifier(v string) *ModifyCertificatesInput

SetCertificateIdentifier sets the CertificateIdentifier field's value.

func (*ModifyCertificatesInput) SetRemoveCustomerOverride

func (s *ModifyCertificatesInput) SetRemoveCustomerOverride(v bool) *ModifyCertificatesInput

SetRemoveCustomerOverride sets the RemoveCustomerOverride field's value.

func (ModifyCertificatesInput) String

func (s ModifyCertificatesInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ModifyCertificatesOutput

type ModifyCertificatesOutput struct {

    // A CA certificate for an Amazon Web Services account.
    //
    // For more information, see Using SSL/TLS to encrypt a connection to a DB instance
    // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html)
    // in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to
    // a DB cluster (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html)
    // in the Amazon Aurora User Guide.
    Certificate *Certificate `type:"structure"`
    // contains filtered or unexported fields
}

func (ModifyCertificatesOutput) GoString

func (s ModifyCertificatesOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyCertificatesOutput) SetCertificate

func (s *ModifyCertificatesOutput) SetCertificate(v *Certificate) *ModifyCertificatesOutput

SetCertificate sets the Certificate field's value.

func (ModifyCertificatesOutput) String

func (s ModifyCertificatesOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ModifyCurrentDBClusterCapacityInput

type ModifyCurrentDBClusterCapacityInput struct {

    // The DB cluster capacity.
    //
    // When you change the capacity of a paused Aurora Serverless v1 DB cluster,
    // it automatically resumes.
    //
    // Constraints:
    //
    //    * For Aurora MySQL, valid capacity values are 1, 2, 4, 8, 16, 32, 64,
    //    128, and 256.
    //
    //    * For Aurora PostgreSQL, valid capacity values are 2, 4, 8, 16, 32, 64,
    //    192, and 384.
    Capacity *int64 `type:"integer"`

    // The DB cluster identifier for the cluster being modified. This parameter
    // isn't case-sensitive.
    //
    // Constraints:
    //
    //    * Must match the identifier of an existing DB cluster.
    //
    // DBClusterIdentifier is a required field
    DBClusterIdentifier *string `type:"string" required:"true"`

    // The amount of time, in seconds, that Aurora Serverless v1 tries to find a
    // scaling point to perform seamless scaling before enforcing the timeout action.
    // The default is 300.
    //
    // Specify a value between 10 and 600 seconds.
    SecondsBeforeTimeout *int64 `type:"integer"`

    // The action to take when the timeout is reached, either ForceApplyCapacityChange
    // or RollbackCapacityChange.
    //
    // ForceApplyCapacityChange, the default, sets the capacity to the specified
    // value as soon as possible.
    //
    // RollbackCapacityChange ignores the capacity change if a scaling point isn't
    // found in the timeout period.
    TimeoutAction *string `type:"string"`
    // contains filtered or unexported fields
}

func (ModifyCurrentDBClusterCapacityInput) GoString

func (s ModifyCurrentDBClusterCapacityInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyCurrentDBClusterCapacityInput) SetCapacity

func (s *ModifyCurrentDBClusterCapacityInput) SetCapacity(v int64) *ModifyCurrentDBClusterCapacityInput

SetCapacity sets the Capacity field's value.

func (*ModifyCurrentDBClusterCapacityInput) SetDBClusterIdentifier

func (s *ModifyCurrentDBClusterCapacityInput) SetDBClusterIdentifier(v string) *ModifyCurrentDBClusterCapacityInput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*ModifyCurrentDBClusterCapacityInput) SetSecondsBeforeTimeout

func (s *ModifyCurrentDBClusterCapacityInput) SetSecondsBeforeTimeout(v int64) *ModifyCurrentDBClusterCapacityInput

SetSecondsBeforeTimeout sets the SecondsBeforeTimeout field's value.

func (*ModifyCurrentDBClusterCapacityInput) SetTimeoutAction

func (s *ModifyCurrentDBClusterCapacityInput) SetTimeoutAction(v string) *ModifyCurrentDBClusterCapacityInput

SetTimeoutAction sets the TimeoutAction field's value.

func (ModifyCurrentDBClusterCapacityInput) String

func (s ModifyCurrentDBClusterCapacityInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyCurrentDBClusterCapacityInput) Validate

func (s *ModifyCurrentDBClusterCapacityInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyCurrentDBClusterCapacityOutput

type ModifyCurrentDBClusterCapacityOutput struct {

    // The current capacity of the DB cluster.
    CurrentCapacity *int64 `type:"integer"`

    // A user-supplied DB cluster identifier. This identifier is the unique key
    // that identifies a DB cluster.
    DBClusterIdentifier *string `type:"string"`

    // A value that specifies the capacity that the DB cluster scales to next.
    PendingCapacity *int64 `type:"integer"`

    // The number of seconds before a call to ModifyCurrentDBClusterCapacity times
    // out.
    SecondsBeforeTimeout *int64 `type:"integer"`

    // The timeout action of a call to ModifyCurrentDBClusterCapacity, either ForceApplyCapacityChange
    // or RollbackCapacityChange.
    TimeoutAction *string `type:"string"`
    // contains filtered or unexported fields
}

func (ModifyCurrentDBClusterCapacityOutput) GoString

func (s ModifyCurrentDBClusterCapacityOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyCurrentDBClusterCapacityOutput) SetCurrentCapacity

func (s *ModifyCurrentDBClusterCapacityOutput) SetCurrentCapacity(v int64) *ModifyCurrentDBClusterCapacityOutput

SetCurrentCapacity sets the CurrentCapacity field's value.

func (*ModifyCurrentDBClusterCapacityOutput) SetDBClusterIdentifier

func (s *ModifyCurrentDBClusterCapacityOutput) SetDBClusterIdentifier(v string) *ModifyCurrentDBClusterCapacityOutput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*ModifyCurrentDBClusterCapacityOutput) SetPendingCapacity

func (s *ModifyCurrentDBClusterCapacityOutput) SetPendingCapacity(v int64) *ModifyCurrentDBClusterCapacityOutput

SetPendingCapacity sets the PendingCapacity field's value.

func (*ModifyCurrentDBClusterCapacityOutput) SetSecondsBeforeTimeout

func (s *ModifyCurrentDBClusterCapacityOutput) SetSecondsBeforeTimeout(v int64) *ModifyCurrentDBClusterCapacityOutput

SetSecondsBeforeTimeout sets the SecondsBeforeTimeout field's value.

func (*ModifyCurrentDBClusterCapacityOutput) SetTimeoutAction

func (s *ModifyCurrentDBClusterCapacityOutput) SetTimeoutAction(v string) *ModifyCurrentDBClusterCapacityOutput

SetTimeoutAction sets the TimeoutAction field's value.

func (ModifyCurrentDBClusterCapacityOutput) String

func (s ModifyCurrentDBClusterCapacityOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ModifyCustomDBEngineVersionInput

type ModifyCustomDBEngineVersionInput struct {

    // An optional description of your CEV.
    Description *string `min:"1" type:"string"`

    // The DB engine. The only supported values are custom-oracle-ee and custom-oracle-ee-cdb.
    //
    // Engine is a required field
    Engine *string `min:"1" type:"string" required:"true"`

    // The custom engine version (CEV) that you want to modify. This option is required
    // for RDS Custom for Oracle, but optional for Amazon RDS. The combination of
    // Engine and EngineVersion is unique per customer per Amazon Web Services Region.
    //
    // EngineVersion is a required field
    EngineVersion *string `min:"1" type:"string" required:"true"`

    // The availability status to be assigned to the CEV. Valid values are as follows:
    //
    // available
    //
    // You can use this CEV to create a new RDS Custom DB instance.
    //
    // inactive
    //
    // You can create a new RDS Custom instance by restoring a DB snapshot with
    // this CEV. You can't patch or create new instances with this CEV.
    //
    // You can change any status to any status. A typical reason to change status
    // is to prevent the accidental use of a CEV, or to make a deprecated CEV eligible
    // for use again. For example, you might change the status of your CEV from
    // available to inactive, and from inactive back to available. To change the
    // availability status of the CEV, it must not currently be in use by an RDS
    // Custom instance, snapshot, or automated backup.
    Status *string `type:"string" enum:"CustomEngineVersionStatus"`
    // contains filtered or unexported fields
}

func (ModifyCustomDBEngineVersionInput) GoString

func (s ModifyCustomDBEngineVersionInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyCustomDBEngineVersionInput) SetDescription

func (s *ModifyCustomDBEngineVersionInput) SetDescription(v string) *ModifyCustomDBEngineVersionInput

SetDescription sets the Description field's value.

func (*ModifyCustomDBEngineVersionInput) SetEngine

func (s *ModifyCustomDBEngineVersionInput) SetEngine(v string) *ModifyCustomDBEngineVersionInput

SetEngine sets the Engine field's value.

func (*ModifyCustomDBEngineVersionInput) SetEngineVersion

func (s *ModifyCustomDBEngineVersionInput) SetEngineVersion(v string) *ModifyCustomDBEngineVersionInput

SetEngineVersion sets the EngineVersion field's value.

func (*ModifyCustomDBEngineVersionInput) SetStatus

func (s *ModifyCustomDBEngineVersionInput) SetStatus(v string) *ModifyCustomDBEngineVersionInput

SetStatus sets the Status field's value.

func (ModifyCustomDBEngineVersionInput) String

func (s ModifyCustomDBEngineVersionInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyCustomDBEngineVersionInput) Validate

func (s *ModifyCustomDBEngineVersionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyCustomDBEngineVersionOutput

type ModifyCustomDBEngineVersionOutput struct {

    // The creation time of the DB engine version.
    CreateTime *time.Time `type:"timestamp"`

    // JSON string that lists the installation files and parameters that RDS Custom
    // uses to create a custom engine version (CEV). RDS Custom applies the patches
    // in the order in which they're listed in the manifest. You can set the Oracle
    // home, Oracle base, and UNIX/Linux user and group using the installation parameters.
    // For more information, see JSON fields in the CEV manifest (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.preparing.html#custom-cev.preparing.manifest.fields)
    // in the Amazon RDS User Guide.
    CustomDBEngineVersionManifest *string `min:"1" type:"string"`

    // The description of the database engine.
    DBEngineDescription *string `type:"string"`

    // A value that indicates the source media provider of the AMI based on the
    // usage operation. Applicable for RDS Custom for SQL Server.
    DBEngineMediaType *string `type:"string"`

    // The ARN of the custom engine version.
    DBEngineVersionArn *string `type:"string"`

    // The description of the database engine version.
    DBEngineVersionDescription *string `type:"string"`

    // The name of the DB parameter group family for the database engine.
    DBParameterGroupFamily *string `type:"string"`

    // The name of the Amazon S3 bucket that contains your database installation
    // files.
    DatabaseInstallationFilesS3BucketName *string `type:"string"`

    // The Amazon S3 directory that contains the database installation files. If
    // not specified, then no prefix is assumed.
    DatabaseInstallationFilesS3Prefix *string `type:"string"`

    // The default character set for new instances of this engine version, if the
    // CharacterSetName parameter of the CreateDBInstance API isn't specified.
    DefaultCharacterSet *CharacterSet `type:"structure"`

    // The name of the database engine.
    Engine *string `type:"string"`

    // The version number of the database engine.
    EngineVersion *string `type:"string"`

    // The types of logs that the database engine has available for export to CloudWatch
    // Logs.
    ExportableLogTypes []*string `type:"list"`

    // The EC2 image
    Image *CustomDBEngineVersionAMI `type:"structure"`

    // The Amazon Web Services KMS key identifier for an encrypted CEV. This parameter
    // is required for RDS Custom, but optional for Amazon RDS.
    KMSKeyId *string `type:"string"`

    // The major engine version of the CEV.
    MajorEngineVersion *string `type:"string"`

    // The status of the DB engine version, either available or deprecated.
    Status *string `type:"string"`

    // A list of the supported CA certificate identifiers.
    //
    // For more information, see Using SSL/TLS to encrypt a connection to a DB instance
    // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html)
    // in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to
    // a DB cluster (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html)
    // in the Amazon Aurora User Guide.
    SupportedCACertificateIdentifiers []*string `type:"list"`

    // A list of the character sets supported by this engine for the CharacterSetName
    // parameter of the CreateDBInstance operation.
    SupportedCharacterSets []*CharacterSet `locationNameList:"CharacterSet" type:"list"`

    // A list of the supported DB engine modes.
    SupportedEngineModes []*string `type:"list"`

    // A list of features supported by the DB engine.
    //
    // The supported features vary by DB engine and DB engine version.
    //
    // To determine the supported features for a specific DB engine and DB engine
    // version using the CLI, use the following command:
    //
    // aws rds describe-db-engine-versions --engine <engine_name> --engine-version
    // <engine_version>
    //
    // For example, to determine the supported features for RDS for PostgreSQL version
    // 13.3 using the CLI, use the following command:
    //
    // aws rds describe-db-engine-versions --engine postgres --engine-version 13.3
    //
    // The supported features are listed under SupportedFeatureNames in the output.
    SupportedFeatureNames []*string `type:"list"`

    // A list of the character sets supported by the Oracle DB engine for the NcharCharacterSetName
    // parameter of the CreateDBInstance operation.
    SupportedNcharCharacterSets []*CharacterSet `locationNameList:"CharacterSet" type:"list"`

    // A list of the time zones supported by this engine for the Timezone parameter
    // of the CreateDBInstance action.
    SupportedTimezones []*Timezone `locationNameList:"Timezone" type:"list"`

    // Indicates whether the engine version supports Babelfish for Aurora PostgreSQL.
    SupportsBabelfish *bool `type:"boolean"`

    // Indicates whether the engine version supports rotating the server certificate
    // without rebooting the DB instance.
    SupportsCertificateRotationWithoutRestart *bool `type:"boolean"`

    // Indicates whether you can use Aurora global databases with a specific DB
    // engine version.
    SupportsGlobalDatabases *bool `type:"boolean"`

    // Indicates whether the DB engine version supports zero-ETL integrations with
    // Amazon Redshift.
    SupportsIntegrations *bool `type:"boolean"`

    // Indicates whether the DB engine version supports forwarding write operations
    // from reader DB instances to the writer DB instance in the DB cluster. By
    // default, write operations aren't allowed on reader DB instances.
    //
    // Valid for: Aurora DB clusters only
    SupportsLocalWriteForwarding *bool `type:"boolean"`

    // Indicates whether the engine version supports exporting the log types specified
    // by ExportableLogTypes to CloudWatch Logs.
    SupportsLogExportsToCloudwatchLogs *bool `type:"boolean"`

    // Indicates whether you can use Aurora parallel query with a specific DB engine
    // version.
    SupportsParallelQuery *bool `type:"boolean"`

    // Indicates whether the database engine version supports read replicas.
    SupportsReadReplica *bool `type:"boolean"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    TagList []*Tag `locationNameList:"Tag" type:"list"`

    // A list of engine versions that this database engine version can be upgraded
    // to.
    ValidUpgradeTarget []*UpgradeTarget `locationNameList:"UpgradeTarget" type:"list"`
    // contains filtered or unexported fields
}

This data type is used as a response element in the action DescribeDBEngineVersions.

func (ModifyCustomDBEngineVersionOutput) GoString

func (s ModifyCustomDBEngineVersionOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyCustomDBEngineVersionOutput) SetCreateTime

func (s *ModifyCustomDBEngineVersionOutput) SetCreateTime(v time.Time) *ModifyCustomDBEngineVersionOutput

SetCreateTime sets the CreateTime field's value.

func (*ModifyCustomDBEngineVersionOutput) SetCustomDBEngineVersionManifest

func (s *ModifyCustomDBEngineVersionOutput) SetCustomDBEngineVersionManifest(v string) *ModifyCustomDBEngineVersionOutput

SetCustomDBEngineVersionManifest sets the CustomDBEngineVersionManifest field's value.

func (*ModifyCustomDBEngineVersionOutput) SetDBEngineDescription

func (s *ModifyCustomDBEngineVersionOutput) SetDBEngineDescription(v string) *ModifyCustomDBEngineVersionOutput

SetDBEngineDescription sets the DBEngineDescription field's value.

func (*ModifyCustomDBEngineVersionOutput) SetDBEngineMediaType

func (s *ModifyCustomDBEngineVersionOutput) SetDBEngineMediaType(v string) *ModifyCustomDBEngineVersionOutput

SetDBEngineMediaType sets the DBEngineMediaType field's value.

func (*ModifyCustomDBEngineVersionOutput) SetDBEngineVersionArn

func (s *ModifyCustomDBEngineVersionOutput) SetDBEngineVersionArn(v string) *ModifyCustomDBEngineVersionOutput

SetDBEngineVersionArn sets the DBEngineVersionArn field's value.

func (*ModifyCustomDBEngineVersionOutput) SetDBEngineVersionDescription

func (s *ModifyCustomDBEngineVersionOutput) SetDBEngineVersionDescription(v string) *ModifyCustomDBEngineVersionOutput

SetDBEngineVersionDescription sets the DBEngineVersionDescription field's value.

func (*ModifyCustomDBEngineVersionOutput) SetDBParameterGroupFamily

func (s *ModifyCustomDBEngineVersionOutput) SetDBParameterGroupFamily(v string) *ModifyCustomDBEngineVersionOutput

SetDBParameterGroupFamily sets the DBParameterGroupFamily field's value.

func (*ModifyCustomDBEngineVersionOutput) SetDatabaseInstallationFilesS3BucketName

func (s *ModifyCustomDBEngineVersionOutput) SetDatabaseInstallationFilesS3BucketName(v string) *ModifyCustomDBEngineVersionOutput

SetDatabaseInstallationFilesS3BucketName sets the DatabaseInstallationFilesS3BucketName field's value.

func (*ModifyCustomDBEngineVersionOutput) SetDatabaseInstallationFilesS3Prefix

func (s *ModifyCustomDBEngineVersionOutput) SetDatabaseInstallationFilesS3Prefix(v string) *ModifyCustomDBEngineVersionOutput

SetDatabaseInstallationFilesS3Prefix sets the DatabaseInstallationFilesS3Prefix field's value.

func (*ModifyCustomDBEngineVersionOutput) SetDefaultCharacterSet

func (s *ModifyCustomDBEngineVersionOutput) SetDefaultCharacterSet(v *CharacterSet) *ModifyCustomDBEngineVersionOutput

SetDefaultCharacterSet sets the DefaultCharacterSet field's value.

func (*ModifyCustomDBEngineVersionOutput) SetEngine

func (s *ModifyCustomDBEngineVersionOutput) SetEngine(v string) *ModifyCustomDBEngineVersionOutput

SetEngine sets the Engine field's value.

func (*ModifyCustomDBEngineVersionOutput) SetEngineVersion

func (s *ModifyCustomDBEngineVersionOutput) SetEngineVersion(v string) *ModifyCustomDBEngineVersionOutput

SetEngineVersion sets the EngineVersion field's value.

func (*ModifyCustomDBEngineVersionOutput) SetExportableLogTypes

func (s *ModifyCustomDBEngineVersionOutput) SetExportableLogTypes(v []*string) *ModifyCustomDBEngineVersionOutput

SetExportableLogTypes sets the ExportableLogTypes field's value.

func (*ModifyCustomDBEngineVersionOutput) SetImage

func (s *ModifyCustomDBEngineVersionOutput) SetImage(v *CustomDBEngineVersionAMI) *ModifyCustomDBEngineVersionOutput

SetImage sets the Image field's value.

func (*ModifyCustomDBEngineVersionOutput) SetKMSKeyId

func (s *ModifyCustomDBEngineVersionOutput) SetKMSKeyId(v string) *ModifyCustomDBEngineVersionOutput

SetKMSKeyId sets the KMSKeyId field's value.

func (*ModifyCustomDBEngineVersionOutput) SetMajorEngineVersion

func (s *ModifyCustomDBEngineVersionOutput) SetMajorEngineVersion(v string) *ModifyCustomDBEngineVersionOutput

SetMajorEngineVersion sets the MajorEngineVersion field's value.

func (*ModifyCustomDBEngineVersionOutput) SetStatus

func (s *ModifyCustomDBEngineVersionOutput) SetStatus(v string) *ModifyCustomDBEngineVersionOutput

SetStatus sets the Status field's value.

func (*ModifyCustomDBEngineVersionOutput) SetSupportedCACertificateIdentifiers

func (s *ModifyCustomDBEngineVersionOutput) SetSupportedCACertificateIdentifiers(v []*string) *ModifyCustomDBEngineVersionOutput

SetSupportedCACertificateIdentifiers sets the SupportedCACertificateIdentifiers field's value.

func (*ModifyCustomDBEngineVersionOutput) SetSupportedCharacterSets

func (s *ModifyCustomDBEngineVersionOutput) SetSupportedCharacterSets(v []*CharacterSet) *ModifyCustomDBEngineVersionOutput

SetSupportedCharacterSets sets the SupportedCharacterSets field's value.

func (*ModifyCustomDBEngineVersionOutput) SetSupportedEngineModes

func (s *ModifyCustomDBEngineVersionOutput) SetSupportedEngineModes(v []*string) *ModifyCustomDBEngineVersionOutput

SetSupportedEngineModes sets the SupportedEngineModes field's value.

func (*ModifyCustomDBEngineVersionOutput) SetSupportedFeatureNames

func (s *ModifyCustomDBEngineVersionOutput) SetSupportedFeatureNames(v []*string) *ModifyCustomDBEngineVersionOutput

SetSupportedFeatureNames sets the SupportedFeatureNames field's value.

func (*ModifyCustomDBEngineVersionOutput) SetSupportedNcharCharacterSets

func (s *ModifyCustomDBEngineVersionOutput) SetSupportedNcharCharacterSets(v []*CharacterSet) *ModifyCustomDBEngineVersionOutput

SetSupportedNcharCharacterSets sets the SupportedNcharCharacterSets field's value.

func (*ModifyCustomDBEngineVersionOutput) SetSupportedTimezones

func (s *ModifyCustomDBEngineVersionOutput) SetSupportedTimezones(v []*Timezone) *ModifyCustomDBEngineVersionOutput

SetSupportedTimezones sets the SupportedTimezones field's value.

func (*ModifyCustomDBEngineVersionOutput) SetSupportsBabelfish

func (s *ModifyCustomDBEngineVersionOutput) SetSupportsBabelfish(v bool) *ModifyCustomDBEngineVersionOutput

SetSupportsBabelfish sets the SupportsBabelfish field's value.

func (*ModifyCustomDBEngineVersionOutput) SetSupportsCertificateRotationWithoutRestart

func (s *ModifyCustomDBEngineVersionOutput) SetSupportsCertificateRotationWithoutRestart(v bool) *ModifyCustomDBEngineVersionOutput

SetSupportsCertificateRotationWithoutRestart sets the SupportsCertificateRotationWithoutRestart field's value.

func (*ModifyCustomDBEngineVersionOutput) SetSupportsGlobalDatabases

func (s *ModifyCustomDBEngineVersionOutput) SetSupportsGlobalDatabases(v bool) *ModifyCustomDBEngineVersionOutput

SetSupportsGlobalDatabases sets the SupportsGlobalDatabases field's value.

func (*ModifyCustomDBEngineVersionOutput) SetSupportsIntegrations

func (s *ModifyCustomDBEngineVersionOutput) SetSupportsIntegrations(v bool) *ModifyCustomDBEngineVersionOutput

SetSupportsIntegrations sets the SupportsIntegrations field's value.

func (*ModifyCustomDBEngineVersionOutput) SetSupportsLocalWriteForwarding

func (s *ModifyCustomDBEngineVersionOutput) SetSupportsLocalWriteForwarding(v bool) *ModifyCustomDBEngineVersionOutput

SetSupportsLocalWriteForwarding sets the SupportsLocalWriteForwarding field's value.

func (*ModifyCustomDBEngineVersionOutput) SetSupportsLogExportsToCloudwatchLogs

func (s *ModifyCustomDBEngineVersionOutput) SetSupportsLogExportsToCloudwatchLogs(v bool) *ModifyCustomDBEngineVersionOutput

SetSupportsLogExportsToCloudwatchLogs sets the SupportsLogExportsToCloudwatchLogs field's value.

func (*ModifyCustomDBEngineVersionOutput) SetSupportsParallelQuery

func (s *ModifyCustomDBEngineVersionOutput) SetSupportsParallelQuery(v bool) *ModifyCustomDBEngineVersionOutput

SetSupportsParallelQuery sets the SupportsParallelQuery field's value.

func (*ModifyCustomDBEngineVersionOutput) SetSupportsReadReplica

func (s *ModifyCustomDBEngineVersionOutput) SetSupportsReadReplica(v bool) *ModifyCustomDBEngineVersionOutput

SetSupportsReadReplica sets the SupportsReadReplica field's value.

func (*ModifyCustomDBEngineVersionOutput) SetTagList

func (s *ModifyCustomDBEngineVersionOutput) SetTagList(v []*Tag) *ModifyCustomDBEngineVersionOutput

SetTagList sets the TagList field's value.

func (*ModifyCustomDBEngineVersionOutput) SetValidUpgradeTarget

func (s *ModifyCustomDBEngineVersionOutput) SetValidUpgradeTarget(v []*UpgradeTarget) *ModifyCustomDBEngineVersionOutput

SetValidUpgradeTarget sets the ValidUpgradeTarget field's value.

func (ModifyCustomDBEngineVersionOutput) String

func (s ModifyCustomDBEngineVersionOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ModifyDBClusterEndpointInput

type ModifyDBClusterEndpointInput struct {

    // The identifier of the endpoint to modify. This parameter is stored as a lowercase
    // string.
    //
    // DBClusterEndpointIdentifier is a required field
    DBClusterEndpointIdentifier *string `type:"string" required:"true"`

    // The type of the endpoint. One of: READER, WRITER, ANY.
    EndpointType *string `type:"string"`

    // List of DB instance identifiers that aren't part of the custom endpoint group.
    // All other eligible instances are reachable through the custom endpoint. Only
    // relevant if the list of static members is empty.
    ExcludedMembers []*string `type:"list"`

    // List of DB instance identifiers that are part of the custom endpoint group.
    StaticMembers []*string `type:"list"`
    // contains filtered or unexported fields
}

func (ModifyDBClusterEndpointInput) GoString

func (s ModifyDBClusterEndpointInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBClusterEndpointInput) SetDBClusterEndpointIdentifier

func (s *ModifyDBClusterEndpointInput) SetDBClusterEndpointIdentifier(v string) *ModifyDBClusterEndpointInput

SetDBClusterEndpointIdentifier sets the DBClusterEndpointIdentifier field's value.

func (*ModifyDBClusterEndpointInput) SetEndpointType

func (s *ModifyDBClusterEndpointInput) SetEndpointType(v string) *ModifyDBClusterEndpointInput

SetEndpointType sets the EndpointType field's value.

func (*ModifyDBClusterEndpointInput) SetExcludedMembers

func (s *ModifyDBClusterEndpointInput) SetExcludedMembers(v []*string) *ModifyDBClusterEndpointInput

SetExcludedMembers sets the ExcludedMembers field's value.

func (*ModifyDBClusterEndpointInput) SetStaticMembers

func (s *ModifyDBClusterEndpointInput) SetStaticMembers(v []*string) *ModifyDBClusterEndpointInput

SetStaticMembers sets the StaticMembers field's value.

func (ModifyDBClusterEndpointInput) String

func (s ModifyDBClusterEndpointInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBClusterEndpointInput) Validate

func (s *ModifyDBClusterEndpointInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyDBClusterEndpointOutput

type ModifyDBClusterEndpointOutput struct {

    // The type associated with a custom endpoint. One of: READER, WRITER, ANY.
    CustomEndpointType *string `type:"string"`

    // The Amazon Resource Name (ARN) for the endpoint.
    DBClusterEndpointArn *string `type:"string"`

    // The identifier associated with the endpoint. This parameter is stored as
    // a lowercase string.
    DBClusterEndpointIdentifier *string `type:"string"`

    // A unique system-generated identifier for an endpoint. It remains the same
    // for the whole life of the endpoint.
    DBClusterEndpointResourceIdentifier *string `type:"string"`

    // The DB cluster identifier of the DB cluster associated with the endpoint.
    // This parameter is stored as a lowercase string.
    DBClusterIdentifier *string `type:"string"`

    // The DNS address of the endpoint.
    Endpoint *string `type:"string"`

    // The type of the endpoint. One of: READER, WRITER, CUSTOM.
    EndpointType *string `type:"string"`

    // List of DB instance identifiers that aren't part of the custom endpoint group.
    // All other eligible instances are reachable through the custom endpoint. Only
    // relevant if the list of static members is empty.
    ExcludedMembers []*string `type:"list"`

    // List of DB instance identifiers that are part of the custom endpoint group.
    StaticMembers []*string `type:"list"`

    // The current status of the endpoint. One of: creating, available, deleting,
    // inactive, modifying. The inactive state applies to an endpoint that can't
    // be used for a certain kind of cluster, such as a writer endpoint for a read-only
    // secondary cluster in a global database.
    Status *string `type:"string"`
    // contains filtered or unexported fields
}

This data type represents the information you need to connect to an Amazon Aurora DB cluster. This data type is used as a response element in the following actions:

  • CreateDBClusterEndpoint

  • DescribeDBClusterEndpoints

  • ModifyDBClusterEndpoint

  • DeleteDBClusterEndpoint

For the data structure that represents Amazon RDS DB instance endpoints, see Endpoint.

func (ModifyDBClusterEndpointOutput) GoString

func (s ModifyDBClusterEndpointOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBClusterEndpointOutput) SetCustomEndpointType

func (s *ModifyDBClusterEndpointOutput) SetCustomEndpointType(v string) *ModifyDBClusterEndpointOutput

SetCustomEndpointType sets the CustomEndpointType field's value.

func (*ModifyDBClusterEndpointOutput) SetDBClusterEndpointArn

func (s *ModifyDBClusterEndpointOutput) SetDBClusterEndpointArn(v string) *ModifyDBClusterEndpointOutput

SetDBClusterEndpointArn sets the DBClusterEndpointArn field's value.

func (*ModifyDBClusterEndpointOutput) SetDBClusterEndpointIdentifier

func (s *ModifyDBClusterEndpointOutput) SetDBClusterEndpointIdentifier(v string) *ModifyDBClusterEndpointOutput

SetDBClusterEndpointIdentifier sets the DBClusterEndpointIdentifier field's value.

func (*ModifyDBClusterEndpointOutput) SetDBClusterEndpointResourceIdentifier

func (s *ModifyDBClusterEndpointOutput) SetDBClusterEndpointResourceIdentifier(v string) *ModifyDBClusterEndpointOutput

SetDBClusterEndpointResourceIdentifier sets the DBClusterEndpointResourceIdentifier field's value.

func (*ModifyDBClusterEndpointOutput) SetDBClusterIdentifier

func (s *ModifyDBClusterEndpointOutput) SetDBClusterIdentifier(v string) *ModifyDBClusterEndpointOutput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*ModifyDBClusterEndpointOutput) SetEndpoint

func (s *ModifyDBClusterEndpointOutput) SetEndpoint(v string) *ModifyDBClusterEndpointOutput

SetEndpoint sets the Endpoint field's value.

func (*ModifyDBClusterEndpointOutput) SetEndpointType

func (s *ModifyDBClusterEndpointOutput) SetEndpointType(v string) *ModifyDBClusterEndpointOutput

SetEndpointType sets the EndpointType field's value.

func (*ModifyDBClusterEndpointOutput) SetExcludedMembers

func (s *ModifyDBClusterEndpointOutput) SetExcludedMembers(v []*string) *ModifyDBClusterEndpointOutput

SetExcludedMembers sets the ExcludedMembers field's value.

func (*ModifyDBClusterEndpointOutput) SetStaticMembers

func (s *ModifyDBClusterEndpointOutput) SetStaticMembers(v []*string) *ModifyDBClusterEndpointOutput

SetStaticMembers sets the StaticMembers field's value.

func (*ModifyDBClusterEndpointOutput) SetStatus

func (s *ModifyDBClusterEndpointOutput) SetStatus(v string) *ModifyDBClusterEndpointOutput

SetStatus sets the Status field's value.

func (ModifyDBClusterEndpointOutput) String

func (s ModifyDBClusterEndpointOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ModifyDBClusterInput

type ModifyDBClusterInput struct {

    // The amount of storage in gibibytes (GiB) to allocate to each DB instance
    // in the Multi-AZ DB cluster.
    //
    // Valid for Cluster Type: Multi-AZ DB clusters only
    AllocatedStorage *int64 `type:"integer"`

    // Specifies whether engine mode changes from serverless to provisioned are
    // allowed.
    //
    // Valid for Cluster Type: Aurora Serverless v1 DB clusters only
    //
    // Constraints:
    //
    //    * You must allow engine mode changes when specifying a different value
    //    for the EngineMode parameter from the DB cluster's current engine mode.
    AllowEngineModeChange *bool `type:"boolean"`

    // Specifies whether major version upgrades are allowed.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    //
    // Constraints:
    //
    //    * You must allow major version upgrades when specifying a value for the
    //    EngineVersion parameter that is a different major version than the DB
    //    cluster's current version.
    AllowMajorVersionUpgrade *bool `type:"boolean"`

    // Specifies whether the modifications in this request and any pending modifications
    // are asynchronously applied as soon as possible, regardless of the PreferredMaintenanceWindow
    // setting for the DB cluster. If this parameter is disabled, changes to the
    // DB cluster are applied during the next maintenance window.
    //
    // Most modifications can be applied immediately or during the next scheduled
    // maintenance window. Some modifications, such as turning on deletion protection
    // and changing the master password, are applied immediately—regardless of
    // when you choose to apply them.
    //
    // By default, this parameter is disabled.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    ApplyImmediately *bool `type:"boolean"`

    // Specifies whether minor engine upgrades are applied automatically to the
    // DB cluster during the maintenance window. By default, minor engine upgrades
    // are applied automatically.
    //
    // Valid for Cluster Type: Multi-AZ DB clusters only
    AutoMinorVersionUpgrade *bool `type:"boolean"`

    // The Amazon Resource Name (ARN) of the recovery point in Amazon Web Services
    // Backup.
    AwsBackupRecoveryPointArn *string `min:"43" type:"string"`

    // The target backtrack window, in seconds. To disable backtracking, set this
    // value to 0.
    //
    // Valid for Cluster Type: Aurora MySQL DB clusters only
    //
    // Default: 0
    //
    // Constraints:
    //
    //    * If specified, this value must be set to a number from 0 to 259,200 (72
    //    hours).
    BacktrackWindow *int64 `type:"long"`

    // The number of days for which automated backups are retained. Specify a minimum
    // value of 1.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    //
    // Default: 1
    //
    // Constraints:
    //
    //    * Must be a value from 1 to 35.
    BackupRetentionPeriod *int64 `type:"integer"`

    // The CA certificate identifier to use for the DB cluster's server certificate.
    //
    // For more information, see Using SSL/TLS to encrypt a connection to a DB instance
    // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html)
    // in the Amazon RDS User Guide.
    //
    // Valid for Cluster Type: Multi-AZ DB clusters
    CACertificateIdentifier *string `type:"string"`

    // The configuration setting for the log types to be enabled for export to CloudWatch
    // Logs for a specific DB cluster.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    //
    // The following values are valid for each DB engine:
    //
    //    * Aurora MySQL - audit | error | general | slowquery
    //
    //    * Aurora PostgreSQL - postgresql
    //
    //    * RDS for MySQL - error | general | slowquery
    //
    //    * RDS for PostgreSQL - postgresql | upgrade
    //
    // For more information about exporting CloudWatch Logs for Amazon RDS, see
    // Publishing Database Logs to Amazon CloudWatch Logs (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch)
    // in the Amazon RDS User Guide.
    //
    // For more information about exporting CloudWatch Logs for Amazon Aurora, see
    // Publishing Database Logs to Amazon CloudWatch Logs (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch)
    // in the Amazon Aurora User Guide.
    CloudwatchLogsExportConfiguration *CloudwatchLogsExportConfiguration `type:"structure"`

    // Specifies whether to copy all tags from the DB cluster to snapshots of the
    // DB cluster. The default is not to copy them.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    CopyTagsToSnapshot *bool `type:"boolean"`

    // The DB cluster identifier for the cluster being modified. This parameter
    // isn't case-sensitive.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    //
    // Constraints:
    //
    //    * Must match the identifier of an existing DB cluster.
    //
    // DBClusterIdentifier is a required field
    DBClusterIdentifier *string `type:"string" required:"true"`

    // The compute and memory capacity of each DB instance in the Multi-AZ DB cluster,
    // for example db.m6gd.xlarge. Not all DB instance classes are available in
    // all Amazon Web Services Regions, or for all database engines.
    //
    // For the full list of DB instance classes and availability for your engine,
    // see DB Instance Class (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html)
    // in the Amazon RDS User Guide.
    //
    // Valid for Cluster Type: Multi-AZ DB clusters only
    DBClusterInstanceClass *string `type:"string"`

    // The name of the DB cluster parameter group to use for the DB cluster.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    DBClusterParameterGroupName *string `type:"string"`

    // The name of the DB parameter group to apply to all instances of the DB cluster.
    //
    // When you apply a parameter group using the DBInstanceParameterGroupName parameter,
    // the DB cluster isn't rebooted automatically. Also, parameter changes are
    // applied immediately rather than during the next maintenance window.
    //
    // Valid for Cluster Type: Aurora DB clusters only
    //
    // Default: The existing name setting
    //
    // Constraints:
    //
    //    * The DB parameter group must be in the same DB parameter group family
    //    as this DB cluster.
    //
    //    * The DBInstanceParameterGroupName parameter is valid in combination with
    //    the AllowMajorVersionUpgrade parameter for a major version upgrade only.
    DBInstanceParameterGroupName *string `type:"string"`

    // Specifies whether the DB cluster has deletion protection enabled. The database
    // can't be deleted when deletion protection is enabled. By default, deletion
    // protection isn't enabled.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    DeletionProtection *bool `type:"boolean"`

    // The Active Directory directory ID to move the DB cluster to. Specify none
    // to remove the cluster from its current domain. The domain must be created
    // prior to this operation.
    //
    // For more information, see Kerberos Authentication (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/kerberos-authentication.html)
    // in the Amazon Aurora User Guide.
    //
    // Valid for Cluster Type: Aurora DB clusters only
    Domain *string `type:"string"`

    // The name of the IAM role to use when making API calls to the Directory Service.
    //
    // Valid for Cluster Type: Aurora DB clusters only
    DomainIAMRoleName *string `type:"string"`

    // Specifies whether to enable this DB cluster to forward write operations to
    // the primary cluster of a global cluster (Aurora global database). By default,
    // write operations are not allowed on Aurora DB clusters that are secondary
    // clusters in an Aurora global database.
    //
    // You can set this value only on Aurora DB clusters that are members of an
    // Aurora global database. With this parameter enabled, a secondary cluster
    // can forward writes to the current primary cluster, and the resulting changes
    // are replicated back to this cluster. For the primary DB cluster of an Aurora
    // global database, this value is used immediately if the primary is demoted
    // by a global cluster API operation, but it does nothing until then.
    //
    // Valid for Cluster Type: Aurora DB clusters only
    EnableGlobalWriteForwarding *bool `type:"boolean"`

    // Specifies whether to enable the HTTP endpoint for an Aurora Serverless v1
    // DB cluster. By default, the HTTP endpoint isn't enabled.
    //
    // When enabled, the HTTP endpoint provides a connectionless web service API
    // (RDS Data API) for running SQL queries on the Aurora Serverless v1 DB cluster.
    // You can also query your database from inside the RDS console with the RDS
    // query editor.
    //
    // For more information, see Using RDS Data API (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html)
    // in the Amazon Aurora User Guide.
    //
    // This parameter applies only to Aurora Serverless v1 DB clusters. To enable
    // or disable the HTTP endpoint for an Aurora PostgreSQL Serverless v2 or provisioned
    // DB cluster, use the EnableHttpEndpoint and DisableHttpEndpoint operations.
    //
    // Valid for Cluster Type: Aurora DB clusters only
    EnableHttpEndpoint *bool `type:"boolean"`

    // Specifies whether to enable mapping of Amazon Web Services Identity and Access
    // Management (IAM) accounts to database accounts. By default, mapping isn't
    // enabled.
    //
    // For more information, see IAM Database Authentication (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html)
    // in the Amazon Aurora User Guide.
    //
    // Valid for Cluster Type: Aurora DB clusters only
    EnableIAMDatabaseAuthentication *bool `type:"boolean"`

    // Specifies whether to enable Aurora Limitless Database. You must enable Aurora
    // Limitless Database to create a DB shard group.
    //
    // Valid for: Aurora DB clusters only
    EnableLimitlessDatabase *bool `type:"boolean"`

    // Specifies whether read replicas can forward write operations to the writer
    // DB instance in the DB cluster. By default, write operations aren't allowed
    // on reader DB instances.
    //
    // Valid for: Aurora DB clusters only
    EnableLocalWriteForwarding *bool `type:"boolean"`

    // Specifies whether to turn on Performance Insights for the DB cluster.
    //
    // For more information, see Using Amazon Performance Insights (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html)
    // in the Amazon RDS User Guide.
    //
    // Valid for Cluster Type: Multi-AZ DB clusters only
    EnablePerformanceInsights *bool `type:"boolean"`

    // The DB engine mode of the DB cluster, either provisioned or serverless.
    //
    // The DB engine mode can be modified only from serverless to provisioned.
    //
    // For more information, see CreateDBCluster (https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBCluster.html).
    //
    // Valid for Cluster Type: Aurora DB clusters only
    EngineMode *string `type:"string"`

    // The version number of the database engine to which you want to upgrade. Changing
    // this parameter results in an outage. The change is applied during the next
    // maintenance window unless ApplyImmediately is enabled.
    //
    // If the cluster that you're modifying has one or more read replicas, all replicas
    // must be running an engine version that's the same or later than the version
    // you specify.
    //
    // To list all of the available engine versions for Aurora MySQL, use the following
    // command:
    //
    // aws rds describe-db-engine-versions --engine aurora-mysql --query "DBEngineVersions[].EngineVersion"
    //
    // To list all of the available engine versions for Aurora PostgreSQL, use the
    // following command:
    //
    // aws rds describe-db-engine-versions --engine aurora-postgresql --query "DBEngineVersions[].EngineVersion"
    //
    // To list all of the available engine versions for RDS for MySQL, use the following
    // command:
    //
    // aws rds describe-db-engine-versions --engine mysql --query "DBEngineVersions[].EngineVersion"
    //
    // To list all of the available engine versions for RDS for PostgreSQL, use
    // the following command:
    //
    // aws rds describe-db-engine-versions --engine postgres --query "DBEngineVersions[].EngineVersion"
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    EngineVersion *string `type:"string"`

    // The amount of Provisioned IOPS (input/output operations per second) to be
    // initially allocated for each DB instance in the Multi-AZ DB cluster.
    //
    // For information about valid IOPS values, see Amazon RDS Provisioned IOPS
    // storage (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS)
    // in the Amazon RDS User Guide.
    //
    // Valid for Cluster Type: Multi-AZ DB clusters only
    //
    // Constraints:
    //
    //    * Must be a multiple between .5 and 50 of the storage amount for the DB
    //    cluster.
    Iops *int64 `type:"integer"`

    // Specifies whether to manage the master user password with Amazon Web Services
    // Secrets Manager.
    //
    // If the DB cluster doesn't manage the master user password with Amazon Web
    // Services Secrets Manager, you can turn on this management. In this case,
    // you can't specify MasterUserPassword.
    //
    // If the DB cluster already manages the master user password with Amazon Web
    // Services Secrets Manager, and you specify that the master user password is
    // not managed with Amazon Web Services Secrets Manager, then you must specify
    // MasterUserPassword. In this case, RDS deletes the secret and uses the new
    // password for the master user specified by MasterUserPassword.
    //
    // For more information, see Password management with Amazon Web Services Secrets
    // Manager (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html)
    // in the Amazon RDS User Guide and Password management with Amazon Web Services
    // Secrets Manager (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-secrets-manager.html)
    // in the Amazon Aurora User Guide.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    ManageMasterUserPassword *bool `type:"boolean"`

    // The new password for the master database user.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    //
    // Constraints:
    //
    //    * Must contain from 8 to 41 characters.
    //
    //    * Can contain any printable ASCII character except "/", """, or "@".
    //
    //    * Can't be specified if ManageMasterUserPassword is turned on.
    MasterUserPassword *string `type:"string"`

    // The Amazon Web Services KMS key identifier to encrypt a secret that is automatically
    // generated and managed in Amazon Web Services Secrets Manager.
    //
    // This setting is valid only if both of the following conditions are met:
    //
    //    * The DB cluster doesn't manage the master user password in Amazon Web
    //    Services Secrets Manager. If the DB cluster already manages the master
    //    user password in Amazon Web Services Secrets Manager, you can't change
    //    the KMS key that is used to encrypt the secret.
    //
    //    * You are turning on ManageMasterUserPassword to manage the master user
    //    password in Amazon Web Services Secrets Manager. If you are turning on
    //    ManageMasterUserPassword and don't specify MasterUserSecretKmsKeyId, then
    //    the aws/secretsmanager KMS key is used to encrypt the secret. If the secret
    //    is in a different Amazon Web Services account, then you can't use the
    //    aws/secretsmanager KMS key to encrypt the secret, and you must use a customer
    //    managed KMS key.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key. To use a KMS key in a different Amazon
    // Web Services account, specify the key ARN or alias ARN.
    //
    // There is a default KMS key for your Amazon Web Services account. Your Amazon
    // Web Services account has a different default KMS key for each Amazon Web
    // Services Region.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    MasterUserSecretKmsKeyId *string `type:"string"`

    // The interval, in seconds, between points when Enhanced Monitoring metrics
    // are collected for the DB cluster. To turn off collecting Enhanced Monitoring
    // metrics, specify 0.
    //
    // If MonitoringRoleArn is specified, also set MonitoringInterval to a value
    // other than 0.
    //
    // Valid for Cluster Type: Multi-AZ DB clusters only
    //
    // Valid Values: 0 | 1 | 5 | 10 | 15 | 30 | 60
    //
    // Default: 0
    MonitoringInterval *int64 `type:"integer"`

    // The Amazon Resource Name (ARN) for the IAM role that permits RDS to send
    // Enhanced Monitoring metrics to Amazon CloudWatch Logs. An example is arn:aws:iam:123456789012:role/emaccess.
    // For information on creating a monitoring role, see To create an IAM role
    // for Amazon RDS Enhanced Monitoring (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.html#USER_Monitoring.OS.IAMRole)
    // in the Amazon RDS User Guide.
    //
    // If MonitoringInterval is set to a value other than 0, supply a MonitoringRoleArn
    // value.
    //
    // Valid for Cluster Type: Multi-AZ DB clusters only
    MonitoringRoleArn *string `type:"string"`

    // The network type of the DB cluster.
    //
    // The network type is determined by the DBSubnetGroup specified for the DB
    // cluster. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and
    // the IPv6 protocols (DUAL).
    //
    // For more information, see Working with a DB instance in a VPC (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html)
    // in the Amazon Aurora User Guide.
    //
    // Valid for Cluster Type: Aurora DB clusters only
    //
    // Valid Values: IPV4 | DUAL
    NetworkType *string `type:"string"`

    // The new DB cluster identifier for the DB cluster when renaming a DB cluster.
    // This value is stored as a lowercase string.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    //
    // Constraints:
    //
    //    * Must contain from 1 to 63 letters, numbers, or hyphens.
    //
    //    * The first character must be a letter.
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens.
    //
    // Example: my-cluster2
    NewDBClusterIdentifier *string `type:"string"`

    // The option group to associate the DB cluster with.
    //
    // DB clusters are associated with a default option group that can't be modified.
    OptionGroupName *string `type:"string"`

    // The Amazon Web Services KMS key identifier for encryption of Performance
    // Insights data.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key.
    //
    // If you don't specify a value for PerformanceInsightsKMSKeyId, then Amazon
    // RDS uses your default KMS key. There is a default KMS key for your Amazon
    // Web Services account. Your Amazon Web Services account has a different default
    // KMS key for each Amazon Web Services Region.
    //
    // Valid for Cluster Type: Multi-AZ DB clusters only
    PerformanceInsightsKMSKeyId *string `type:"string"`

    // The number of days to retain Performance Insights data.
    //
    // Valid for Cluster Type: Multi-AZ DB clusters only
    //
    // Valid Values:
    //
    //    * 7
    //
    //    * month * 31, where month is a number of months from 1-23. Examples: 93
    //    (3 months * 31), 341 (11 months * 31), 589 (19 months * 31)
    //
    //    * 731
    //
    // Default: 7 days
    //
    // If you specify a retention period that isn't valid, such as 94, Amazon RDS
    // issues an error.
    PerformanceInsightsRetentionPeriod *int64 `type:"integer"`

    // The port number on which the DB cluster accepts connections.
    //
    // Valid for Cluster Type: Aurora DB clusters only
    //
    // Valid Values: 1150-65535
    //
    // Default: The same port as the original DB cluster.
    Port *int64 `type:"integer"`

    // The daily time range during which automated backups are created if automated
    // backups are enabled, using the BackupRetentionPeriod parameter.
    //
    // The default is a 30-minute window selected at random from an 8-hour block
    // of time for each Amazon Web Services Region. To view the time blocks available,
    // see Backup window (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.Backups.BackupWindow)
    // in the Amazon Aurora User Guide.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    //
    // Constraints:
    //
    //    * Must be in the format hh24:mi-hh24:mi.
    //
    //    * Must be in Universal Coordinated Time (UTC).
    //
    //    * Must not conflict with the preferred maintenance window.
    //
    //    * Must be at least 30 minutes.
    PreferredBackupWindow *string `type:"string"`

    // The weekly time range during which system maintenance can occur, in Universal
    // Coordinated Time (UTC).
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    //
    // The default is a 30-minute window selected at random from an 8-hour block
    // of time for each Amazon Web Services Region, occurring on a random day of
    // the week. To see the time blocks available, see Adjusting the Preferred DB
    // Cluster Maintenance Window (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora)
    // in the Amazon Aurora User Guide.
    //
    // Constraints:
    //
    //    * Must be in the format ddd:hh24:mi-ddd:hh24:mi.
    //
    //    * Days must be one of Mon | Tue | Wed | Thu | Fri | Sat | Sun.
    //
    //    * Must be in Universal Coordinated Time (UTC).
    //
    //    * Must be at least 30 minutes.
    PreferredMaintenanceWindow *string `type:"string"`

    // Specifies whether to rotate the secret managed by Amazon Web Services Secrets
    // Manager for the master user password.
    //
    // This setting is valid only if the master user password is managed by RDS
    // in Amazon Web Services Secrets Manager for the DB cluster. The secret value
    // contains the updated password.
    //
    // For more information, see Password management with Amazon Web Services Secrets
    // Manager (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html)
    // in the Amazon RDS User Guide and Password management with Amazon Web Services
    // Secrets Manager (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-secrets-manager.html)
    // in the Amazon Aurora User Guide.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    //
    // Constraints:
    //
    //    * You must apply the change immediately when rotating the master user
    //    password.
    RotateMasterUserPassword *bool `type:"boolean"`

    // The scaling properties of the DB cluster. You can only modify scaling properties
    // for DB clusters in serverless DB engine mode.
    //
    // Valid for Cluster Type: Aurora DB clusters only
    ScalingConfiguration *ScalingConfiguration `type:"structure"`

    // Contains the scaling configuration of an Aurora Serverless v2 DB cluster.
    //
    // For more information, see Using Amazon Aurora Serverless v2 (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html)
    // in the Amazon Aurora User Guide.
    ServerlessV2ScalingConfiguration *ServerlessV2ScalingConfiguration `type:"structure"`

    // The storage type to associate with the DB cluster.
    //
    // For information on storage types for Aurora DB clusters, see Storage configurations
    // for Amazon Aurora DB clusters (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Overview.StorageReliability.html#aurora-storage-type).
    // For information on storage types for Multi-AZ DB clusters, see Settings for
    // creating Multi-AZ DB clusters (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/create-multi-az-db-cluster.html#create-multi-az-db-cluster-settings).
    //
    // When specified for a Multi-AZ DB cluster, a value for the Iops parameter
    // is required.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    //
    // Valid Values:
    //
    //    * Aurora DB clusters - aurora | aurora-iopt1
    //
    //    * Multi-AZ DB clusters - io1 | io2 | gp3
    //
    // Default:
    //
    //    * Aurora DB clusters - aurora
    //
    //    * Multi-AZ DB clusters - io1
    StorageType *string `type:"string"`

    // A list of EC2 VPC security groups to associate with this DB cluster.
    //
    // Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
    VpcSecurityGroupIds []*string `locationNameList:"VpcSecurityGroupId" type:"list"`
    // contains filtered or unexported fields
}

func (ModifyDBClusterInput) GoString

func (s ModifyDBClusterInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBClusterInput) SetAllocatedStorage

func (s *ModifyDBClusterInput) SetAllocatedStorage(v int64) *ModifyDBClusterInput

SetAllocatedStorage sets the AllocatedStorage field's value.

func (*ModifyDBClusterInput) SetAllowEngineModeChange

func (s *ModifyDBClusterInput) SetAllowEngineModeChange(v bool) *ModifyDBClusterInput

SetAllowEngineModeChange sets the AllowEngineModeChange field's value.

func (*ModifyDBClusterInput) SetAllowMajorVersionUpgrade

func (s *ModifyDBClusterInput) SetAllowMajorVersionUpgrade(v bool) *ModifyDBClusterInput

SetAllowMajorVersionUpgrade sets the AllowMajorVersionUpgrade field's value.

func (*ModifyDBClusterInput) SetApplyImmediately

func (s *ModifyDBClusterInput) SetApplyImmediately(v bool) *ModifyDBClusterInput

SetApplyImmediately sets the ApplyImmediately field's value.

func (*ModifyDBClusterInput) SetAutoMinorVersionUpgrade

func (s *ModifyDBClusterInput) SetAutoMinorVersionUpgrade(v bool) *ModifyDBClusterInput

SetAutoMinorVersionUpgrade sets the AutoMinorVersionUpgrade field's value.

func (*ModifyDBClusterInput) SetAwsBackupRecoveryPointArn

func (s *ModifyDBClusterInput) SetAwsBackupRecoveryPointArn(v string) *ModifyDBClusterInput

SetAwsBackupRecoveryPointArn sets the AwsBackupRecoveryPointArn field's value.

func (*ModifyDBClusterInput) SetBacktrackWindow

func (s *ModifyDBClusterInput) SetBacktrackWindow(v int64) *ModifyDBClusterInput

SetBacktrackWindow sets the BacktrackWindow field's value.

func (*ModifyDBClusterInput) SetBackupRetentionPeriod

func (s *ModifyDBClusterInput) SetBackupRetentionPeriod(v int64) *ModifyDBClusterInput

SetBackupRetentionPeriod sets the BackupRetentionPeriod field's value.

func (*ModifyDBClusterInput) SetCACertificateIdentifier

func (s *ModifyDBClusterInput) SetCACertificateIdentifier(v string) *ModifyDBClusterInput

SetCACertificateIdentifier sets the CACertificateIdentifier field's value.

func (*ModifyDBClusterInput) SetCloudwatchLogsExportConfiguration

func (s *ModifyDBClusterInput) SetCloudwatchLogsExportConfiguration(v *CloudwatchLogsExportConfiguration) *ModifyDBClusterInput

SetCloudwatchLogsExportConfiguration sets the CloudwatchLogsExportConfiguration field's value.

func (*ModifyDBClusterInput) SetCopyTagsToSnapshot

func (s *ModifyDBClusterInput) SetCopyTagsToSnapshot(v bool) *ModifyDBClusterInput

SetCopyTagsToSnapshot sets the CopyTagsToSnapshot field's value.

func (*ModifyDBClusterInput) SetDBClusterIdentifier

func (s *ModifyDBClusterInput) SetDBClusterIdentifier(v string) *ModifyDBClusterInput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*ModifyDBClusterInput) SetDBClusterInstanceClass

func (s *ModifyDBClusterInput) SetDBClusterInstanceClass(v string) *ModifyDBClusterInput

SetDBClusterInstanceClass sets the DBClusterInstanceClass field's value.

func (*ModifyDBClusterInput) SetDBClusterParameterGroupName

func (s *ModifyDBClusterInput) SetDBClusterParameterGroupName(v string) *ModifyDBClusterInput

SetDBClusterParameterGroupName sets the DBClusterParameterGroupName field's value.

func (*ModifyDBClusterInput) SetDBInstanceParameterGroupName

func (s *ModifyDBClusterInput) SetDBInstanceParameterGroupName(v string) *ModifyDBClusterInput

SetDBInstanceParameterGroupName sets the DBInstanceParameterGroupName field's value.

func (*ModifyDBClusterInput) SetDeletionProtection

func (s *ModifyDBClusterInput) SetDeletionProtection(v bool) *ModifyDBClusterInput

SetDeletionProtection sets the DeletionProtection field's value.

func (*ModifyDBClusterInput) SetDomain

func (s *ModifyDBClusterInput) SetDomain(v string) *ModifyDBClusterInput

SetDomain sets the Domain field's value.

func (*ModifyDBClusterInput) SetDomainIAMRoleName

func (s *ModifyDBClusterInput) SetDomainIAMRoleName(v string) *ModifyDBClusterInput

SetDomainIAMRoleName sets the DomainIAMRoleName field's value.

func (*ModifyDBClusterInput) SetEnableGlobalWriteForwarding

func (s *ModifyDBClusterInput) SetEnableGlobalWriteForwarding(v bool) *ModifyDBClusterInput

SetEnableGlobalWriteForwarding sets the EnableGlobalWriteForwarding field's value.

func (*ModifyDBClusterInput) SetEnableHttpEndpoint

func (s *ModifyDBClusterInput) SetEnableHttpEndpoint(v bool) *ModifyDBClusterInput

SetEnableHttpEndpoint sets the EnableHttpEndpoint field's value.

func (*ModifyDBClusterInput) SetEnableIAMDatabaseAuthentication

func (s *ModifyDBClusterInput) SetEnableIAMDatabaseAuthentication(v bool) *ModifyDBClusterInput

SetEnableIAMDatabaseAuthentication sets the EnableIAMDatabaseAuthentication field's value.

func (*ModifyDBClusterInput) SetEnableLimitlessDatabase

func (s *ModifyDBClusterInput) SetEnableLimitlessDatabase(v bool) *ModifyDBClusterInput

SetEnableLimitlessDatabase sets the EnableLimitlessDatabase field's value.

func (*ModifyDBClusterInput) SetEnableLocalWriteForwarding

func (s *ModifyDBClusterInput) SetEnableLocalWriteForwarding(v bool) *ModifyDBClusterInput

SetEnableLocalWriteForwarding sets the EnableLocalWriteForwarding field's value.

func (*ModifyDBClusterInput) SetEnablePerformanceInsights

func (s *ModifyDBClusterInput) SetEnablePerformanceInsights(v bool) *ModifyDBClusterInput

SetEnablePerformanceInsights sets the EnablePerformanceInsights field's value.

func (*ModifyDBClusterInput) SetEngineMode

func (s *ModifyDBClusterInput) SetEngineMode(v string) *ModifyDBClusterInput

SetEngineMode sets the EngineMode field's value.

func (*ModifyDBClusterInput) SetEngineVersion

func (s *ModifyDBClusterInput) SetEngineVersion(v string) *ModifyDBClusterInput

SetEngineVersion sets the EngineVersion field's value.

func (*ModifyDBClusterInput) SetIops

func (s *ModifyDBClusterInput) SetIops(v int64) *ModifyDBClusterInput

SetIops sets the Iops field's value.

func (*ModifyDBClusterInput) SetManageMasterUserPassword

func (s *ModifyDBClusterInput) SetManageMasterUserPassword(v bool) *ModifyDBClusterInput

SetManageMasterUserPassword sets the ManageMasterUserPassword field's value.

func (*ModifyDBClusterInput) SetMasterUserPassword

func (s *ModifyDBClusterInput) SetMasterUserPassword(v string) *ModifyDBClusterInput

SetMasterUserPassword sets the MasterUserPassword field's value.

func (*ModifyDBClusterInput) SetMasterUserSecretKmsKeyId

func (s *ModifyDBClusterInput) SetMasterUserSecretKmsKeyId(v string) *ModifyDBClusterInput

SetMasterUserSecretKmsKeyId sets the MasterUserSecretKmsKeyId field's value.

func (*ModifyDBClusterInput) SetMonitoringInterval

func (s *ModifyDBClusterInput) SetMonitoringInterval(v int64) *ModifyDBClusterInput

SetMonitoringInterval sets the MonitoringInterval field's value.

func (*ModifyDBClusterInput) SetMonitoringRoleArn

func (s *ModifyDBClusterInput) SetMonitoringRoleArn(v string) *ModifyDBClusterInput

SetMonitoringRoleArn sets the MonitoringRoleArn field's value.

func (*ModifyDBClusterInput) SetNetworkType

func (s *ModifyDBClusterInput) SetNetworkType(v string) *ModifyDBClusterInput

SetNetworkType sets the NetworkType field's value.

func (*ModifyDBClusterInput) SetNewDBClusterIdentifier

func (s *ModifyDBClusterInput) SetNewDBClusterIdentifier(v string) *ModifyDBClusterInput

SetNewDBClusterIdentifier sets the NewDBClusterIdentifier field's value.

func (*ModifyDBClusterInput) SetOptionGroupName

func (s *ModifyDBClusterInput) SetOptionGroupName(v string) *ModifyDBClusterInput

SetOptionGroupName sets the OptionGroupName field's value.

func (*ModifyDBClusterInput) SetPerformanceInsightsKMSKeyId

func (s *ModifyDBClusterInput) SetPerformanceInsightsKMSKeyId(v string) *ModifyDBClusterInput

SetPerformanceInsightsKMSKeyId sets the PerformanceInsightsKMSKeyId field's value.

func (*ModifyDBClusterInput) SetPerformanceInsightsRetentionPeriod

func (s *ModifyDBClusterInput) SetPerformanceInsightsRetentionPeriod(v int64) *ModifyDBClusterInput

SetPerformanceInsightsRetentionPeriod sets the PerformanceInsightsRetentionPeriod field's value.

func (*ModifyDBClusterInput) SetPort

func (s *ModifyDBClusterInput) SetPort(v int64) *ModifyDBClusterInput

SetPort sets the Port field's value.

func (*ModifyDBClusterInput) SetPreferredBackupWindow

func (s *ModifyDBClusterInput) SetPreferredBackupWindow(v string) *ModifyDBClusterInput

SetPreferredBackupWindow sets the PreferredBackupWindow field's value.

func (*ModifyDBClusterInput) SetPreferredMaintenanceWindow

func (s *ModifyDBClusterInput) SetPreferredMaintenanceWindow(v string) *ModifyDBClusterInput

SetPreferredMaintenanceWindow sets the PreferredMaintenanceWindow field's value.

func (*ModifyDBClusterInput) SetRotateMasterUserPassword

func (s *ModifyDBClusterInput) SetRotateMasterUserPassword(v bool) *ModifyDBClusterInput

SetRotateMasterUserPassword sets the RotateMasterUserPassword field's value.

func (*ModifyDBClusterInput) SetScalingConfiguration

func (s *ModifyDBClusterInput) SetScalingConfiguration(v *ScalingConfiguration) *ModifyDBClusterInput

SetScalingConfiguration sets the ScalingConfiguration field's value.

func (*ModifyDBClusterInput) SetServerlessV2ScalingConfiguration

func (s *ModifyDBClusterInput) SetServerlessV2ScalingConfiguration(v *ServerlessV2ScalingConfiguration) *ModifyDBClusterInput

SetServerlessV2ScalingConfiguration sets the ServerlessV2ScalingConfiguration field's value.

func (*ModifyDBClusterInput) SetStorageType

func (s *ModifyDBClusterInput) SetStorageType(v string) *ModifyDBClusterInput

SetStorageType sets the StorageType field's value.

func (*ModifyDBClusterInput) SetVpcSecurityGroupIds

func (s *ModifyDBClusterInput) SetVpcSecurityGroupIds(v []*string) *ModifyDBClusterInput

SetVpcSecurityGroupIds sets the VpcSecurityGroupIds field's value.

func (ModifyDBClusterInput) String

func (s ModifyDBClusterInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBClusterInput) Validate

func (s *ModifyDBClusterInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyDBClusterOutput

type ModifyDBClusterOutput struct {

    // Contains the details of an Amazon Aurora DB cluster or Multi-AZ DB cluster.
    //
    // For an Amazon Aurora DB cluster, this data type is used as a response element
    // in the operations CreateDBCluster, DeleteDBCluster, DescribeDBClusters, FailoverDBCluster,
    // ModifyDBCluster, PromoteReadReplicaDBCluster, RestoreDBClusterFromS3, RestoreDBClusterFromSnapshot,
    // RestoreDBClusterToPointInTime, StartDBCluster, and StopDBCluster.
    //
    // For a Multi-AZ DB cluster, this data type is used as a response element in
    // the operations CreateDBCluster, DeleteDBCluster, DescribeDBClusters, FailoverDBCluster,
    // ModifyDBCluster, RebootDBCluster, RestoreDBClusterFromSnapshot, and RestoreDBClusterToPointInTime.
    //
    // For more information on Amazon Aurora DB clusters, see What is Amazon Aurora?
    // (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html)
    // in the Amazon Aurora User Guide.
    //
    // For more information on Multi-AZ DB clusters, see Multi-AZ deployments with
    // two readable standby DB instances (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html)
    // in the Amazon RDS User Guide.
    DBCluster *DBCluster `type:"structure"`
    // contains filtered or unexported fields
}

func (ModifyDBClusterOutput) GoString

func (s ModifyDBClusterOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBClusterOutput) SetDBCluster

func (s *ModifyDBClusterOutput) SetDBCluster(v *DBCluster) *ModifyDBClusterOutput

SetDBCluster sets the DBCluster field's value.

func (ModifyDBClusterOutput) String

func (s ModifyDBClusterOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ModifyDBClusterParameterGroupInput

type ModifyDBClusterParameterGroupInput struct {

    // The name of the DB cluster parameter group to modify.
    //
    // DBClusterParameterGroupName is a required field
    DBClusterParameterGroupName *string `type:"string" required:"true"`

    // A list of parameters in the DB cluster parameter group to modify.
    //
    // Valid Values (for the application method): immediate | pending-reboot
    //
    // You can use the immediate value with dynamic parameters only. You can use
    // the pending-reboot value for both dynamic and static parameters.
    //
    // When the application method is immediate, changes to dynamic parameters are
    // applied immediately to the DB clusters associated with the parameter group.
    // When the application method is pending-reboot, changes to dynamic and static
    // parameters are applied after a reboot without failover to the DB clusters
    // associated with the parameter group.
    //
    // Parameters is a required field
    Parameters []*Parameter `locationNameList:"Parameter" type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (ModifyDBClusterParameterGroupInput) GoString

func (s ModifyDBClusterParameterGroupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBClusterParameterGroupInput) SetDBClusterParameterGroupName

func (s *ModifyDBClusterParameterGroupInput) SetDBClusterParameterGroupName(v string) *ModifyDBClusterParameterGroupInput

SetDBClusterParameterGroupName sets the DBClusterParameterGroupName field's value.

func (*ModifyDBClusterParameterGroupInput) SetParameters

func (s *ModifyDBClusterParameterGroupInput) SetParameters(v []*Parameter) *ModifyDBClusterParameterGroupInput

SetParameters sets the Parameters field's value.

func (ModifyDBClusterParameterGroupInput) String

func (s ModifyDBClusterParameterGroupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBClusterParameterGroupInput) Validate

func (s *ModifyDBClusterParameterGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyDBClusterSnapshotAttributeInput

type ModifyDBClusterSnapshotAttributeInput struct {

    // The name of the DB cluster snapshot attribute to modify.
    //
    // To manage authorization for other Amazon Web Services accounts to copy or
    // restore a manual DB cluster snapshot, set this value to restore.
    //
    // To view the list of attributes available to modify, use the DescribeDBClusterSnapshotAttributes
    // API operation.
    //
    // AttributeName is a required field
    AttributeName *string `type:"string" required:"true"`

    // The identifier for the DB cluster snapshot to modify the attributes for.
    //
    // DBClusterSnapshotIdentifier is a required field
    DBClusterSnapshotIdentifier *string `type:"string" required:"true"`

    // A list of DB cluster snapshot attributes to add to the attribute specified
    // by AttributeName.
    //
    // To authorize other Amazon Web Services accounts to copy or restore a manual
    // DB cluster snapshot, set this list to include one or more Amazon Web Services
    // account IDs, or all to make the manual DB cluster snapshot restorable by
    // any Amazon Web Services account. Do not add the all value for any manual
    // DB cluster snapshots that contain private information that you don't want
    // available to all Amazon Web Services accounts.
    ValuesToAdd []*string `locationNameList:"AttributeValue" type:"list"`

    // A list of DB cluster snapshot attributes to remove from the attribute specified
    // by AttributeName.
    //
    // To remove authorization for other Amazon Web Services accounts to copy or
    // restore a manual DB cluster snapshot, set this list to include one or more
    // Amazon Web Services account identifiers, or all to remove authorization for
    // any Amazon Web Services account to copy or restore the DB cluster snapshot.
    // If you specify all, an Amazon Web Services account whose account ID is explicitly
    // added to the restore attribute can still copy or restore a manual DB cluster
    // snapshot.
    ValuesToRemove []*string `locationNameList:"AttributeValue" type:"list"`
    // contains filtered or unexported fields
}

func (ModifyDBClusterSnapshotAttributeInput) GoString

func (s ModifyDBClusterSnapshotAttributeInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBClusterSnapshotAttributeInput) SetAttributeName

func (s *ModifyDBClusterSnapshotAttributeInput) SetAttributeName(v string) *ModifyDBClusterSnapshotAttributeInput

SetAttributeName sets the AttributeName field's value.

func (*ModifyDBClusterSnapshotAttributeInput) SetDBClusterSnapshotIdentifier

func (s *ModifyDBClusterSnapshotAttributeInput) SetDBClusterSnapshotIdentifier(v string) *ModifyDBClusterSnapshotAttributeInput

SetDBClusterSnapshotIdentifier sets the DBClusterSnapshotIdentifier field's value.

func (*ModifyDBClusterSnapshotAttributeInput) SetValuesToAdd

func (s *ModifyDBClusterSnapshotAttributeInput) SetValuesToAdd(v []*string) *ModifyDBClusterSnapshotAttributeInput

SetValuesToAdd sets the ValuesToAdd field's value.

func (*ModifyDBClusterSnapshotAttributeInput) SetValuesToRemove

func (s *ModifyDBClusterSnapshotAttributeInput) SetValuesToRemove(v []*string) *ModifyDBClusterSnapshotAttributeInput

SetValuesToRemove sets the ValuesToRemove field's value.

func (ModifyDBClusterSnapshotAttributeInput) String

func (s ModifyDBClusterSnapshotAttributeInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBClusterSnapshotAttributeInput) Validate

func (s *ModifyDBClusterSnapshotAttributeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyDBClusterSnapshotAttributeOutput

type ModifyDBClusterSnapshotAttributeOutput struct {

    // Contains the results of a successful call to the DescribeDBClusterSnapshotAttributes
    // API action.
    //
    // Manual DB cluster snapshot attributes are used to authorize other Amazon
    // Web Services accounts to copy or restore a manual DB cluster snapshot. For
    // more information, see the ModifyDBClusterSnapshotAttribute API action.
    DBClusterSnapshotAttributesResult *DBClusterSnapshotAttributesResult `type:"structure"`
    // contains filtered or unexported fields
}

func (ModifyDBClusterSnapshotAttributeOutput) GoString

func (s ModifyDBClusterSnapshotAttributeOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBClusterSnapshotAttributeOutput) SetDBClusterSnapshotAttributesResult

func (s *ModifyDBClusterSnapshotAttributeOutput) SetDBClusterSnapshotAttributesResult(v *DBClusterSnapshotAttributesResult) *ModifyDBClusterSnapshotAttributeOutput

SetDBClusterSnapshotAttributesResult sets the DBClusterSnapshotAttributesResult field's value.

func (ModifyDBClusterSnapshotAttributeOutput) String

func (s ModifyDBClusterSnapshotAttributeOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ModifyDBInstanceInput

type ModifyDBInstanceInput struct {

    // The new amount of storage in gibibytes (GiB) to allocate for the DB instance.
    //
    // For RDS for Db2, MariaDB, RDS for MySQL, RDS for Oracle, and RDS for PostgreSQL,
    // the value supplied must be at least 10% greater than the current value. Values
    // that are not at least 10% greater than the existing value are rounded up
    // so that they are 10% greater than the current value.
    //
    // For the valid values for allocated storage for each engine, see CreateDBInstance.
    AllocatedStorage *int64 `type:"integer"`

    // Specifies whether major version upgrades are allowed. Changing this parameter
    // doesn't result in an outage and the change is asynchronously applied as soon
    // as possible.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    //
    // Constraints:
    //
    //    * Major version upgrades must be allowed when specifying a value for the
    //    EngineVersion parameter that's a different major version than the DB instance's
    //    current version.
    AllowMajorVersionUpgrade *bool `type:"boolean"`

    // Specifies whether the modifications in this request and any pending modifications
    // are asynchronously applied as soon as possible, regardless of the PreferredMaintenanceWindow
    // setting for the DB instance. By default, this parameter is disabled.
    //
    // If this parameter is disabled, changes to the DB instance are applied during
    // the next maintenance window. Some parameter changes can cause an outage and
    // are applied on the next call to RebootDBInstance, or the next failure reboot.
    // Review the table of parameters in Modifying a DB Instance (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.DBInstance.Modifying.html)
    // in the Amazon RDS User Guide to see the impact of enabling or disabling ApplyImmediately
    // for each modified parameter and to determine when the changes are applied.
    ApplyImmediately *bool `type:"boolean"`

    // Specifies whether minor version upgrades are applied automatically to the
    // DB instance during the maintenance window. An outage occurs when all the
    // following conditions are met:
    //
    //    * The automatic upgrade is enabled for the maintenance window.
    //
    //    * A newer minor version is available.
    //
    //    * RDS has enabled automatic patching for the engine version.
    //
    // If any of the preceding conditions isn't met, Amazon RDS applies the change
    // as soon as possible and doesn't cause an outage.
    //
    // For an RDS Custom DB instance, don't enable this setting. Otherwise, the
    // operation returns an error.
    AutoMinorVersionUpgrade *bool `type:"boolean"`

    // The automation mode of the RDS Custom DB instance. If full, the DB instance
    // automates monitoring and instance recovery. If all paused, the instance pauses
    // automation for the duration set by ResumeFullAutomationModeMinutes.
    AutomationMode *string `type:"string" enum:"AutomationMode"`

    // The Amazon Resource Name (ARN) of the recovery point in Amazon Web Services
    // Backup.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    AwsBackupRecoveryPointArn *string `min:"43" type:"string"`

    // The number of days to retain automated backups. Setting this parameter to
    // a positive number enables backups. Setting this parameter to 0 disables automated
    // backups.
    //
    // Enabling and disabling backups can result in a brief I/O suspension that
    // lasts from a few seconds to a few minutes, depending on the size and class
    // of your DB instance.
    //
    // These changes are applied during the next maintenance window unless the ApplyImmediately
    // parameter is enabled for this request. If you change the parameter from one
    // non-zero value to another non-zero value, the change is asynchronously applied
    // as soon as possible.
    //
    // This setting doesn't apply to Amazon Aurora DB instances. The retention period
    // for automated backups is managed by the DB cluster. For more information,
    // see ModifyDBCluster.
    //
    // Default: Uses existing setting
    //
    // Constraints:
    //
    //    * Must be a value from 0 to 35.
    //
    //    * Can't be set to 0 if the DB instance is a source to read replicas.
    //
    //    * Can't be set to 0 for an RDS Custom for Oracle DB instance.
    BackupRetentionPeriod *int64 `type:"integer"`

    // The CA certificate identifier to use for the DB instance's server certificate.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    //
    // For more information, see Using SSL/TLS to encrypt a connection to a DB instance
    // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html)
    // in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to
    // a DB cluster (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html)
    // in the Amazon Aurora User Guide.
    CACertificateIdentifier *string `type:"string"`

    // Specifies whether the DB instance is restarted when you rotate your SSL/TLS
    // certificate.
    //
    // By default, the DB instance is restarted when you rotate your SSL/TLS certificate.
    // The certificate is not updated until the DB instance is restarted.
    //
    // Set this parameter only if you are not using SSL/TLS to connect to the DB
    // instance.
    //
    // If you are using SSL/TLS to connect to the DB instance, follow the appropriate
    // instructions for your DB engine to rotate your SSL/TLS certificate:
    //
    //    * For more information about rotating your SSL/TLS certificate for RDS
    //    DB engines, see Rotating Your SSL/TLS Certificate. (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL-certificate-rotation.html)
    //    in the Amazon RDS User Guide.
    //
    //    * For more information about rotating your SSL/TLS certificate for Aurora
    //    DB engines, see Rotating Your SSL/TLS Certificate (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL-certificate-rotation.html)
    //    in the Amazon Aurora User Guide.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    CertificateRotationRestart *bool `type:"boolean"`

    // The log types to be enabled for export to CloudWatch Logs for a specific
    // DB instance.
    //
    // A change to the CloudwatchLogsExportConfiguration parameter is always applied
    // to the DB instance immediately. Therefore, the ApplyImmediately parameter
    // has no effect.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    CloudwatchLogsExportConfiguration *CloudwatchLogsExportConfiguration `type:"structure"`

    // Specifies whether to copy all tags from the DB instance to snapshots of the
    // DB instance. By default, tags aren't copied.
    //
    // This setting doesn't apply to Amazon Aurora DB instances. Copying tags to
    // snapshots is managed by the DB cluster. Setting this value for an Aurora
    // DB instance has no effect on the DB cluster setting. For more information,
    // see ModifyDBCluster.
    CopyTagsToSnapshot *bool `type:"boolean"`

    // The new compute and memory capacity of the DB instance, for example db.m4.large.
    // Not all DB instance classes are available in all Amazon Web Services Regions,
    // or for all database engines. For the full list of DB instance classes, and
    // availability for your engine, see DB Instance Class (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html)
    // in the Amazon RDS User Guide or Aurora DB instance classes (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.DBInstanceClass.html)
    // in the Amazon Aurora User Guide. For RDS Custom, see DB instance class support
    // for RDS Custom for Oracle (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits.html#custom-reqs-limits.instances)
    // and DB instance class support for RDS Custom for SQL Server (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits-MS.html#custom-reqs-limits.instancesMS).
    //
    // If you modify the DB instance class, an outage occurs during the change.
    // The change is applied during the next maintenance window, unless you specify
    // ApplyImmediately in your request.
    //
    // Default: Uses existing setting
    //
    // Constraints:
    //
    //    * If you are modifying the DB instance class and upgrading the engine
    //    version at the same time, the currently running engine version must be
    //    supported on the specified DB instance class. Otherwise, the operation
    //    returns an error. In this case, first run the operation to upgrade the
    //    engine version, and then run it again to modify the DB instance class.
    DBInstanceClass *string `type:"string"`

    // The identifier of DB instance to modify. This value is stored as a lowercase
    // string.
    //
    // Constraints:
    //
    //    * Must match the identifier of an existing DB instance.
    //
    // DBInstanceIdentifier is a required field
    DBInstanceIdentifier *string `type:"string" required:"true"`

    // The name of the DB parameter group to apply to the DB instance.
    //
    // Changing this setting doesn't result in an outage. The parameter group name
    // itself is changed immediately, but the actual parameter changes are not applied
    // until you reboot the instance without failover. In this case, the DB instance
    // isn't rebooted automatically, and the parameter changes aren't applied during
    // the next maintenance window. However, if you modify dynamic parameters in
    // the newly associated DB parameter group, these changes are applied immediately
    // without a reboot.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    //
    // Default: Uses existing setting
    //
    // Constraints:
    //
    //    * Must be in the same DB parameter group family as the DB instance.
    DBParameterGroupName *string `type:"string"`

    // The port number on which the database accepts connections.
    //
    // The value of the DBPortNumber parameter must not match any of the port values
    // specified for options in the option group for the DB instance.
    //
    // If you change the DBPortNumber value, your database restarts regardless of
    // the value of the ApplyImmediately parameter.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    //
    // Valid Values: 1150-65535
    //
    // Default:
    //
    //    * Amazon Aurora - 3306
    //
    //    * RDS for Db2 - 50000
    //
    //    * RDS for MariaDB - 3306
    //
    //    * RDS for Microsoft SQL Server - 1433
    //
    //    * RDS for MySQL - 3306
    //
    //    * RDS for Oracle - 1521
    //
    //    * RDS for PostgreSQL - 5432
    //
    // Constraints:
    //
    //    * For RDS for Microsoft SQL Server, the value can't be 1234, 1434, 3260,
    //    3343, 3389, 47001, or 49152-49156.
    DBPortNumber *int64 `type:"integer"`

    // A list of DB security groups to authorize on this DB instance. Changing this
    // setting doesn't result in an outage and the change is asynchronously applied
    // as soon as possible.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    //
    // Constraints:
    //
    //    * If supplied, must match existing DB security groups.
    DBSecurityGroups []*string `locationNameList:"DBSecurityGroupName" type:"list"`

    // The new DB subnet group for the DB instance. You can use this parameter to
    // move your DB instance to a different VPC. If your DB instance isn't in a
    // VPC, you can also use this parameter to move your DB instance into a VPC.
    // For more information, see Working with a DB instance in a VPC (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html#USER_VPC.Non-VPC2VPC)
    // in the Amazon RDS User Guide.
    //
    // Changing the subnet group causes an outage during the change. The change
    // is applied during the next maintenance window, unless you enable ApplyImmediately.
    //
    // This parameter doesn't apply to RDS Custom DB instances.
    //
    // Constraints:
    //
    //    * If supplied, must match existing DB subnet group.
    //
    // Example: mydbsubnetgroup
    DBSubnetGroupName *string `type:"string"`

    // Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
    DedicatedLogVolume *bool `type:"boolean"`

    // Specifies whether the DB instance has deletion protection enabled. The database
    // can't be deleted when deletion protection is enabled. By default, deletion
    // protection isn't enabled. For more information, see Deleting a DB Instance
    // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html).
    DeletionProtection *bool `type:"boolean"`

    // Specifies whether to remove the DB instance from the Active Directory domain.
    DisableDomain *bool `type:"boolean"`

    // The Active Directory directory ID to move the DB instance to. Specify none
    // to remove the instance from its current domain. You must create the domain
    // before this operation. Currently, you can create only Db2, MySQL, Microsoft
    // SQL Server, Oracle, and PostgreSQL DB instances in an Active Directory Domain.
    //
    // For more information, see Kerberos Authentication (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html)
    // in the Amazon RDS User Guide.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    Domain *string `type:"string"`

    // The ARN for the Secrets Manager secret with the credentials for the user
    // joining the domain.
    //
    // Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456
    DomainAuthSecretArn *string `type:"string"`

    // The IPv4 DNS IP addresses of your primary and secondary Active Directory
    // domain controllers.
    //
    // Constraints:
    //
    //    * Two IP addresses must be provided. If there isn't a secondary domain
    //    controller, use the IP address of the primary domain controller for both
    //    entries in the list.
    //
    // Example: 123.124.125.126,234.235.236.237
    DomainDnsIps []*string `type:"list"`

    // The fully qualified domain name (FQDN) of an Active Directory domain.
    //
    // Constraints:
    //
    //    * Can't be longer than 64 characters.
    //
    // Example: mymanagedADtest.mymanagedAD.mydomain
    DomainFqdn *string `type:"string"`

    // The name of the IAM role to use when making API calls to the Directory Service.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    DomainIAMRoleName *string `type:"string"`

    // The Active Directory organizational unit for your DB instance to join.
    //
    // Constraints:
    //
    //    * Must be in the distinguished name format.
    //
    //    * Can't be longer than 64 characters.
    //
    // Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain
    DomainOu *string `type:"string"`

    // Specifies whether to enable a customer-owned IP address (CoIP) for an RDS
    // on Outposts DB instance.
    //
    // A CoIP provides local or external connectivity to resources in your Outpost
    // subnets through your on-premises network. For some use cases, a CoIP can
    // provide lower latency for connections to the DB instance from outside of
    // its virtual private cloud (VPC) on your local network.
    //
    // For more information about RDS on Outposts, see Working with Amazon RDS on
    // Amazon Web Services Outposts (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html)
    // in the Amazon RDS User Guide.
    //
    // For more information about CoIPs, see Customer-owned IP addresses (https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing)
    // in the Amazon Web Services Outposts User Guide.
    EnableCustomerOwnedIp *bool `type:"boolean"`

    // Specifies whether to enable mapping of Amazon Web Services Identity and Access
    // Management (IAM) accounts to database accounts. By default, mapping isn't
    // enabled.
    //
    // This setting doesn't apply to Amazon Aurora. Mapping Amazon Web Services
    // IAM accounts to database accounts is managed by the DB cluster.
    //
    // For more information about IAM database authentication, see IAM Database
    // Authentication for MySQL and PostgreSQL (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html)
    // in the Amazon RDS User Guide.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    EnableIAMDatabaseAuthentication *bool `type:"boolean"`

    // Specifies whether to enable Performance Insights for the DB instance.
    //
    // For more information, see Using Amazon Performance Insights (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html)
    // in the Amazon RDS User Guide.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    EnablePerformanceInsights *bool `type:"boolean"`

    // The target Oracle DB engine when you convert a non-CDB to a CDB. This intermediate
    // step is necessary to upgrade an Oracle Database 19c non-CDB to an Oracle
    // Database 21c CDB.
    //
    // Note the following requirements:
    //
    //    * Make sure that you specify oracle-ee-cdb or oracle-se2-cdb.
    //
    //    * Make sure that your DB engine runs Oracle Database 19c with an April
    //    2021 or later RU.
    //
    // Note the following limitations:
    //
    //    * You can't convert a CDB to a non-CDB.
    //
    //    * You can't convert a replica database.
    //
    //    * You can't convert a non-CDB to a CDB and upgrade the engine version
    //    in the same command.
    //
    //    * You can't convert the existing custom parameter or option group when
    //    it has options or parameters that are permanent or persistent. In this
    //    situation, the DB instance reverts to the default option and parameter
    //    group. To avoid reverting to the default, specify a new parameter group
    //    with --db-parameter-group-name and a new option group with --option-group-name.
    Engine *string `type:"string"`

    // The version number of the database engine to upgrade to. Changing this parameter
    // results in an outage and the change is applied during the next maintenance
    // window unless the ApplyImmediately parameter is enabled for this request.
    //
    // For major version upgrades, if a nondefault DB parameter group is currently
    // in use, a new DB parameter group in the DB parameter group family for the
    // new engine version must be specified. The new DB parameter group can be the
    // default for that DB parameter group family.
    //
    // If you specify only a major version, Amazon RDS updates the DB instance to
    // the default minor version if the current minor version is lower. For information
    // about valid engine versions, see CreateDBInstance, or call DescribeDBEngineVersions.
    //
    // If the instance that you're modifying is acting as a read replica, the engine
    // version that you specify must be the same or higher than the version that
    // the source DB instance or cluster is running.
    //
    // In RDS Custom for Oracle, this parameter is supported for read replicas only
    // if they are in the PATCH_DB_FAILURE lifecycle.
    //
    // Constraints:
    //
    //    * If you are upgrading the engine version and modifying the DB instance
    //    class at the same time, the currently running engine version must be supported
    //    on the specified DB instance class. Otherwise, the operation returns an
    //    error. In this case, first run the operation to upgrade the engine version,
    //    and then run it again to modify the DB instance class.
    EngineVersion *string `type:"string"`

    // The new Provisioned IOPS (I/O operations per second) value for the RDS instance.
    //
    // Changing this setting doesn't result in an outage and the change is applied
    // during the next maintenance window unless the ApplyImmediately parameter
    // is enabled for this request. If you are migrating from Provisioned IOPS to
    // standard storage, set this value to 0. The DB instance will require a reboot
    // for the change in storage type to take effect.
    //
    // If you choose to migrate your DB instance from using standard storage to
    // using Provisioned IOPS, or from using Provisioned IOPS to using standard
    // storage, the process can take time. The duration of the migration depends
    // on several factors such as database load, storage size, storage type (standard
    // or Provisioned IOPS), amount of IOPS provisioned (if any), and the number
    // of prior scale storage operations. Typical migration times are under 24 hours,
    // but the process can take up to several days in some cases. During the migration,
    // the DB instance is available for use, but might experience performance degradation.
    // While the migration takes place, nightly backups for the instance are suspended.
    // No other Amazon RDS operations can take place for the instance, including
    // modifying the instance, rebooting the instance, deleting the instance, creating
    // a read replica for the instance, and creating a DB snapshot of the instance.
    //
    // Constraints:
    //
    //    * For RDS for MariaDB, RDS for MySQL, RDS for Oracle, and RDS for PostgreSQL
    //    - The value supplied must be at least 10% greater than the current value.
    //    Values that are not at least 10% greater than the existing value are rounded
    //    up so that they are 10% greater than the current value.
    //
    // Default: Uses existing setting
    Iops *int64 `type:"integer"`

    // The license model for the DB instance.
    //
    // This setting doesn't apply to Amazon Aurora or RDS Custom DB instances.
    //
    // Valid Values:
    //
    //    * RDS for Db2 - bring-your-own-license
    //
    //    * RDS for MariaDB - general-public-license
    //
    //    * RDS for Microsoft SQL Server - license-included
    //
    //    * RDS for MySQL - general-public-license
    //
    //    * RDS for Oracle - bring-your-own-license | license-included
    //
    //    * RDS for PostgreSQL - postgresql-license
    LicenseModel *string `type:"string"`

    // Specifies whether to manage the master user password with Amazon Web Services
    // Secrets Manager.
    //
    // If the DB instance doesn't manage the master user password with Amazon Web
    // Services Secrets Manager, you can turn on this management. In this case,
    // you can't specify MasterUserPassword.
    //
    // If the DB instance already manages the master user password with Amazon Web
    // Services Secrets Manager, and you specify that the master user password is
    // not managed with Amazon Web Services Secrets Manager, then you must specify
    // MasterUserPassword. In this case, Amazon RDS deletes the secret and uses
    // the new password for the master user specified by MasterUserPassword.
    //
    // For more information, see Password management with Amazon Web Services Secrets
    // Manager (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html)
    // in the Amazon RDS User Guide.
    //
    // Constraints:
    //
    //    * Can't manage the master user password with Amazon Web Services Secrets
    //    Manager if MasterUserPassword is specified.
    ManageMasterUserPassword *bool `type:"boolean"`

    // The new password for the master user.
    //
    // Changing this parameter doesn't result in an outage and the 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.
    //
    // Amazon RDS API operations never return the password, so this operation provides
    // a way to regain access to a primary instance user if the password is lost.
    // This includes restoring privileges that might have been accidentally revoked.
    //
    // This setting doesn't apply to the following DB instances:
    //
    //    * Amazon Aurora (The password for the master user is managed by the DB
    //    cluster. For more information, see ModifyDBCluster.)
    //
    //    * RDS Custom
    //
    // Default: Uses existing setting
    //
    // Constraints:
    //
    //    * Can't be specified if ManageMasterUserPassword is turned on.
    //
    //    * Can include any printable ASCII character except "/", """, or "@". For
    //    RDS for Oracle, can't include the "&" (ampersand) or the "'" (single quotes)
    //    character.
    //
    // Length Constraints:
    //
    //    * RDS for Db2 - Must contain from 8 to 255 characters.
    //
    //    * RDS for MariaDB - Must contain from 8 to 41 characters.
    //
    //    * RDS for Microsoft SQL Server - Must contain from 8 to 128 characters.
    //
    //    * RDS for MySQL - Must contain from 8 to 41 characters.
    //
    //    * RDS for Oracle - Must contain from 8 to 30 characters.
    //
    //    * RDS for PostgreSQL - Must contain from 8 to 128 characters.
    MasterUserPassword *string `type:"string"`

    // The Amazon Web Services KMS key identifier to encrypt a secret that is automatically
    // generated and managed in Amazon Web Services Secrets Manager.
    //
    // This setting is valid only if both of the following conditions are met:
    //
    //    * The DB instance doesn't manage the master user password in Amazon Web
    //    Services Secrets Manager. If the DB instance already manages the master
    //    user password in Amazon Web Services Secrets Manager, you can't change
    //    the KMS key used to encrypt the secret.
    //
    //    * You are turning on ManageMasterUserPassword to manage the master user
    //    password in Amazon Web Services Secrets Manager. If you are turning on
    //    ManageMasterUserPassword and don't specify MasterUserSecretKmsKeyId, then
    //    the aws/secretsmanager KMS key is used to encrypt the secret. If the secret
    //    is in a different Amazon Web Services account, then you can't use the
    //    aws/secretsmanager KMS key to encrypt the secret, and you must use a customer
    //    managed KMS key.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key. To use a KMS key in a different Amazon
    // Web Services account, specify the key ARN or alias ARN.
    //
    // There is a default KMS key for your Amazon Web Services account. Your Amazon
    // Web Services account has a different default KMS key for each Amazon Web
    // Services Region.
    MasterUserSecretKmsKeyId *string `type:"string"`

    // The upper limit in gibibytes (GiB) to which Amazon RDS can automatically
    // scale the storage of the DB instance.
    //
    // For more information about this setting, including limitations that apply
    // to it, see Managing capacity automatically with Amazon RDS storage autoscaling
    // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling)
    // in the Amazon RDS User Guide.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    MaxAllocatedStorage *int64 `type:"integer"`

    // The interval, in seconds, between points when Enhanced Monitoring metrics
    // are collected for the DB instance. To disable collection of Enhanced Monitoring
    // metrics, specify 0.
    //
    // If MonitoringRoleArn is specified, set MonitoringInterval to a value other
    // than 0.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    //
    // Valid Values: 0 | 1 | 5 | 10 | 15 | 30 | 60
    //
    // Default: 0
    MonitoringInterval *int64 `type:"integer"`

    // The ARN for the IAM role that permits RDS to send enhanced monitoring metrics
    // to Amazon CloudWatch Logs. For example, arn:aws:iam:123456789012:role/emaccess.
    // For information on creating a monitoring role, see To create an IAM role
    // for Amazon RDS Enhanced Monitoring (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.html#USER_Monitoring.OS.IAMRole)
    // in the Amazon RDS User Guide.
    //
    // If MonitoringInterval is set to a value other than 0, supply a MonitoringRoleArn
    // value.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    MonitoringRoleArn *string `type:"string"`

    // Specifies whether the DB instance is a Multi-AZ deployment. Changing this
    // parameter doesn't result in an outage. The change is applied during the next
    // maintenance window unless the ApplyImmediately parameter is enabled for this
    // request.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    MultiAZ *bool `type:"boolean"`

    // Specifies whether the to convert your DB instance from the single-tenant
    // configuration to the multi-tenant configuration. This parameter is supported
    // only for RDS for Oracle CDB instances.
    //
    // During the conversion, RDS creates an initial tenant database and associates
    // the DB name, master user name, character set, and national character set
    // metadata with this database. The tags associated with the instance also propagate
    // to the initial tenant database. You can add more tenant databases to your
    // DB instance by using the CreateTenantDatabase operation.
    //
    // The conversion to the multi-tenant configuration is permanent and irreversible,
    // so you can't later convert back to the single-tenant configuration. When
    // you specify this parameter, you must also specify ApplyImmediately.
    MultiTenant *bool `type:"boolean"`

    // The network type of the DB instance.
    //
    // The network type is determined by the DBSubnetGroup specified for the DB
    // instance. A DBSubnetGroup can support only the IPv4 protocol or the IPv4
    // and the IPv6 protocols (DUAL).
    //
    // For more information, see Working with a DB instance in a VPC (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html)
    // in the Amazon RDS User Guide.
    //
    // Valid Values: IPV4 | DUAL
    NetworkType *string `type:"string"`

    // The new identifier for the DB instance when renaming a DB instance. When
    // you change the DB instance identifier, an instance reboot occurs immediately
    // if you enable ApplyImmediately, or will occur during the next maintenance
    // window if you disable ApplyImmediately. This value is stored as a lowercase
    // string.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    //
    // Constraints:
    //
    //    * Must contain from 1 to 63 letters, numbers, or hyphens.
    //
    //    * The first character must be a letter.
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens.
    //
    // Example: mydbinstance
    NewDBInstanceIdentifier *string `type:"string"`

    // The option group to associate the DB instance with.
    //
    // Changing this parameter doesn't result in an outage, with one exception.
    // If the parameter change results in an option group that enables OEM, it can
    // cause a brief period, lasting less than a second, during which new connections
    // are rejected but existing connections aren't interrupted.
    //
    // The change is applied during the next maintenance window unless the ApplyImmediately
    // parameter is enabled for this request.
    //
    // Permanent options, such as the TDE option for Oracle Advanced Security TDE,
    // can't be removed from an option group, and that option group can't be removed
    // from a DB instance after it is associated with a DB instance.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    OptionGroupName *string `type:"string"`

    // The Amazon Web Services KMS key identifier for encryption of Performance
    // Insights data.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key.
    //
    // If you don't specify a value for PerformanceInsightsKMSKeyId, then Amazon
    // RDS uses your default KMS key. There is a default KMS key for your Amazon
    // Web Services account. Your Amazon Web Services account has a different default
    // KMS key for each Amazon Web Services Region.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    PerformanceInsightsKMSKeyId *string `type:"string"`

    // The number of days to retain Performance Insights data.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    //
    // Valid Values:
    //
    //    * 7
    //
    //    * month * 31, where month is a number of months from 1-23. Examples: 93
    //    (3 months * 31), 341 (11 months * 31), 589 (19 months * 31)
    //
    //    * 731
    //
    // Default: 7 days
    //
    // If you specify a retention period that isn't valid, such as 94, Amazon RDS
    // returns an error.
    PerformanceInsightsRetentionPeriod *int64 `type:"integer"`

    // The daily time range during which automated backups are created if automated
    // backups are enabled, as determined by the BackupRetentionPeriod parameter.
    // Changing this parameter doesn't result in an outage and the change is asynchronously
    // applied as soon as possible. The default is a 30-minute window selected at
    // random from an 8-hour block of time for each Amazon Web Services Region.
    // For more information, see Backup window (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow)
    // in the Amazon RDS User Guide.
    //
    // This setting doesn't apply to Amazon Aurora DB instances. The daily time
    // range for creating automated backups is managed by the DB cluster. For more
    // information, see ModifyDBCluster.
    //
    // Constraints:
    //
    //    * Must be in the format hh24:mi-hh24:mi.
    //
    //    * Must be in Universal Coordinated Time (UTC).
    //
    //    * Must not conflict with the preferred maintenance window.
    //
    //    * Must be at least 30 minutes.
    PreferredBackupWindow *string `type:"string"`

    // The weekly time range during which system maintenance can occur, which might
    // result in an outage. Changing this parameter doesn't result in an outage,
    // except in the following situation, and the change is asynchronously applied
    // as soon as possible. If there are pending actions that cause a reboot, and
    // the maintenance window is changed to include the current time, then changing
    // this parameter causes a reboot of the DB instance. If you change this window
    // to the current time, there must be at least 30 minutes between the current
    // time and end of the window to ensure pending changes are applied.
    //
    // For more information, see Amazon RDS Maintenance Window (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#Concepts.DBMaintenance)
    // in the Amazon RDS User Guide.
    //
    // Default: Uses existing setting
    //
    // Constraints:
    //
    //    * Must be in the format ddd:hh24:mi-ddd:hh24:mi.
    //
    //    * The day values must be mon | tue | wed | thu | fri | sat | sun.
    //
    //    * Must be in Universal Coordinated Time (UTC).
    //
    //    * Must not conflict with the preferred backup window.
    //
    //    * Must be at least 30 minutes.
    PreferredMaintenanceWindow *string `type:"string"`

    // The number of CPU cores and the number of threads per core for the DB instance
    // class of the DB instance.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    ProcessorFeatures []*ProcessorFeature `locationNameList:"ProcessorFeature" type:"list"`

    // The order of priority in which an Aurora Replica is promoted to the primary
    // instance after a failure of the existing primary instance. For more information,
    // see Fault Tolerance for an Aurora DB Cluster (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.AuroraHighAvailability.html#Aurora.Managing.FaultTolerance)
    // in the Amazon Aurora User Guide.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    //
    // Default: 1
    //
    // Valid Values: 0 - 15
    PromotionTier *int64 `type:"integer"`

    // Specifies whether the DB instance is publicly accessible.
    //
    // When the DB cluster is publicly accessible, its Domain Name System (DNS)
    // endpoint resolves to the private IP address from within the DB cluster's
    // virtual private cloud (VPC). It resolves to the public IP address from outside
    // of the DB cluster's VPC. Access to the DB cluster is ultimately controlled
    // by the security group it uses. That public access isn't permitted if the
    // security group assigned to the DB cluster doesn't permit it.
    //
    // When the DB instance isn't publicly accessible, it is an internal DB instance
    // with a DNS name that resolves to a private IP address.
    //
    // PubliclyAccessible only applies to DB instances in a VPC. The DB instance
    // must be part of a public subnet and PubliclyAccessible must be enabled for
    // it to be publicly accessible.
    //
    // Changes to the PubliclyAccessible parameter are applied immediately regardless
    // of the value of the ApplyImmediately parameter.
    PubliclyAccessible *bool `type:"boolean"`

    // A value that sets the open mode of a replica database to either mounted or
    // read-only.
    //
    // Currently, this parameter is only supported for Oracle DB instances.
    //
    // Mounted DB replicas are included in Oracle Enterprise Edition. The main use
    // case for mounted replicas is cross-Region disaster recovery. The primary
    // database doesn't use Active Data Guard to transmit information to the mounted
    // replica. Because it doesn't accept user connections, a mounted replica can't
    // serve a read-only workload. For more information, see Working with Oracle
    // Read Replicas for Amazon RDS (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html)
    // in the Amazon RDS User Guide.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    ReplicaMode *string `type:"string" enum:"ReplicaMode"`

    // The number of minutes to pause the automation. When the time period ends,
    // RDS Custom resumes full automation.
    //
    // Default: 60
    //
    // Constraints:
    //
    //    * Must be at least 60.
    //
    //    * Must be no more than 1,440.
    ResumeFullAutomationModeMinutes *int64 `type:"integer"`

    // Specifies whether to rotate the secret managed by Amazon Web Services Secrets
    // Manager for the master user password.
    //
    // This setting is valid only if the master user password is managed by RDS
    // in Amazon Web Services Secrets Manager for the DB cluster. The secret value
    // contains the updated password.
    //
    // For more information, see Password management with Amazon Web Services Secrets
    // Manager (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html)
    // in the Amazon RDS User Guide.
    //
    // Constraints:
    //
    //    * You must apply the change immediately when rotating the master user
    //    password.
    RotateMasterUserPassword *bool `type:"boolean"`

    // The storage throughput value for the DB instance.
    //
    // This setting applies only to the gp3 storage type.
    //
    // This setting doesn't apply to Amazon Aurora or RDS Custom DB instances.
    StorageThroughput *int64 `type:"integer"`

    // The storage type to associate with the DB instance.
    //
    // If you specify io1, io2, or gp3 you must also include a value for the Iops
    // parameter.
    //
    // If you choose to migrate your DB instance from using standard storage to
    // using Provisioned IOPS, or from using Provisioned IOPS to using standard
    // storage, the process can take time. The duration of the migration depends
    // on several factors such as database load, storage size, storage type (standard
    // or Provisioned IOPS), amount of IOPS provisioned (if any), and the number
    // of prior scale storage operations. Typical migration times are under 24 hours,
    // but the process can take up to several days in some cases. During the migration,
    // the DB instance is available for use, but might experience performance degradation.
    // While the migration takes place, nightly backups for the instance are suspended.
    // No other Amazon RDS operations can take place for the instance, including
    // modifying the instance, rebooting the instance, deleting the instance, creating
    // a read replica for the instance, and creating a DB snapshot of the instance.
    //
    // Valid Values: gp2 | gp3 | io1 | io2 | standard
    //
    // Default: io1, if the Iops parameter is specified. Otherwise, gp2.
    StorageType *string `type:"string"`

    // The ARN from the key store with which to associate the instance for TDE encryption.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    TdeCredentialArn *string `type:"string"`

    // The password for the given ARN from the key store in order to access the
    // device.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    TdeCredentialPassword *string `type:"string"`

    // Specifies whether the DB instance class of the DB instance uses its default
    // processor features.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    UseDefaultProcessorFeatures *bool `type:"boolean"`

    // A list of Amazon EC2 VPC security groups to associate with this DB instance.
    // This change is asynchronously applied as soon as possible.
    //
    // This setting doesn't apply to the following DB instances:
    //
    //    * Amazon Aurora (The associated list of EC2 VPC security groups is managed
    //    by the DB cluster. For more information, see ModifyDBCluster.)
    //
    //    * RDS Custom
    //
    // Constraints:
    //
    //    * If supplied, must match existing VPC security group IDs.
    VpcSecurityGroupIds []*string `locationNameList:"VpcSecurityGroupId" type:"list"`
    // contains filtered or unexported fields
}

func (ModifyDBInstanceInput) GoString

func (s ModifyDBInstanceInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBInstanceInput) SetAllocatedStorage

func (s *ModifyDBInstanceInput) SetAllocatedStorage(v int64) *ModifyDBInstanceInput

SetAllocatedStorage sets the AllocatedStorage field's value.

func (*ModifyDBInstanceInput) SetAllowMajorVersionUpgrade

func (s *ModifyDBInstanceInput) SetAllowMajorVersionUpgrade(v bool) *ModifyDBInstanceInput

SetAllowMajorVersionUpgrade sets the AllowMajorVersionUpgrade field's value.

func (*ModifyDBInstanceInput) SetApplyImmediately

func (s *ModifyDBInstanceInput) SetApplyImmediately(v bool) *ModifyDBInstanceInput

SetApplyImmediately sets the ApplyImmediately field's value.

func (*ModifyDBInstanceInput) SetAutoMinorVersionUpgrade

func (s *ModifyDBInstanceInput) SetAutoMinorVersionUpgrade(v bool) *ModifyDBInstanceInput

SetAutoMinorVersionUpgrade sets the AutoMinorVersionUpgrade field's value.

func (*ModifyDBInstanceInput) SetAutomationMode

func (s *ModifyDBInstanceInput) SetAutomationMode(v string) *ModifyDBInstanceInput

SetAutomationMode sets the AutomationMode field's value.

func (*ModifyDBInstanceInput) SetAwsBackupRecoveryPointArn

func (s *ModifyDBInstanceInput) SetAwsBackupRecoveryPointArn(v string) *ModifyDBInstanceInput

SetAwsBackupRecoveryPointArn sets the AwsBackupRecoveryPointArn field's value.

func (*ModifyDBInstanceInput) SetBackupRetentionPeriod

func (s *ModifyDBInstanceInput) SetBackupRetentionPeriod(v int64) *ModifyDBInstanceInput

SetBackupRetentionPeriod sets the BackupRetentionPeriod field's value.

func (*ModifyDBInstanceInput) SetCACertificateIdentifier

func (s *ModifyDBInstanceInput) SetCACertificateIdentifier(v string) *ModifyDBInstanceInput

SetCACertificateIdentifier sets the CACertificateIdentifier field's value.

func (*ModifyDBInstanceInput) SetCertificateRotationRestart

func (s *ModifyDBInstanceInput) SetCertificateRotationRestart(v bool) *ModifyDBInstanceInput

SetCertificateRotationRestart sets the CertificateRotationRestart field's value.

func (*ModifyDBInstanceInput) SetCloudwatchLogsExportConfiguration

func (s *ModifyDBInstanceInput) SetCloudwatchLogsExportConfiguration(v *CloudwatchLogsExportConfiguration) *ModifyDBInstanceInput

SetCloudwatchLogsExportConfiguration sets the CloudwatchLogsExportConfiguration field's value.

func (*ModifyDBInstanceInput) SetCopyTagsToSnapshot

func (s *ModifyDBInstanceInput) SetCopyTagsToSnapshot(v bool) *ModifyDBInstanceInput

SetCopyTagsToSnapshot sets the CopyTagsToSnapshot field's value.

func (*ModifyDBInstanceInput) SetDBInstanceClass

func (s *ModifyDBInstanceInput) SetDBInstanceClass(v string) *ModifyDBInstanceInput

SetDBInstanceClass sets the DBInstanceClass field's value.

func (*ModifyDBInstanceInput) SetDBInstanceIdentifier

func (s *ModifyDBInstanceInput) SetDBInstanceIdentifier(v string) *ModifyDBInstanceInput

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*ModifyDBInstanceInput) SetDBParameterGroupName

func (s *ModifyDBInstanceInput) SetDBParameterGroupName(v string) *ModifyDBInstanceInput

SetDBParameterGroupName sets the DBParameterGroupName field's value.

func (*ModifyDBInstanceInput) SetDBPortNumber

func (s *ModifyDBInstanceInput) SetDBPortNumber(v int64) *ModifyDBInstanceInput

SetDBPortNumber sets the DBPortNumber field's value.

func (*ModifyDBInstanceInput) SetDBSecurityGroups

func (s *ModifyDBInstanceInput) SetDBSecurityGroups(v []*string) *ModifyDBInstanceInput

SetDBSecurityGroups sets the DBSecurityGroups field's value.

func (*ModifyDBInstanceInput) SetDBSubnetGroupName

func (s *ModifyDBInstanceInput) SetDBSubnetGroupName(v string) *ModifyDBInstanceInput

SetDBSubnetGroupName sets the DBSubnetGroupName field's value.

func (*ModifyDBInstanceInput) SetDedicatedLogVolume

func (s *ModifyDBInstanceInput) SetDedicatedLogVolume(v bool) *ModifyDBInstanceInput

SetDedicatedLogVolume sets the DedicatedLogVolume field's value.

func (*ModifyDBInstanceInput) SetDeletionProtection

func (s *ModifyDBInstanceInput) SetDeletionProtection(v bool) *ModifyDBInstanceInput

SetDeletionProtection sets the DeletionProtection field's value.

func (*ModifyDBInstanceInput) SetDisableDomain

func (s *ModifyDBInstanceInput) SetDisableDomain(v bool) *ModifyDBInstanceInput

SetDisableDomain sets the DisableDomain field's value.

func (*ModifyDBInstanceInput) SetDomain

func (s *ModifyDBInstanceInput) SetDomain(v string) *ModifyDBInstanceInput

SetDomain sets the Domain field's value.

func (*ModifyDBInstanceInput) SetDomainAuthSecretArn

func (s *ModifyDBInstanceInput) SetDomainAuthSecretArn(v string) *ModifyDBInstanceInput

SetDomainAuthSecretArn sets the DomainAuthSecretArn field's value.

func (*ModifyDBInstanceInput) SetDomainDnsIps

func (s *ModifyDBInstanceInput) SetDomainDnsIps(v []*string) *ModifyDBInstanceInput

SetDomainDnsIps sets the DomainDnsIps field's value.

func (*ModifyDBInstanceInput) SetDomainFqdn

func (s *ModifyDBInstanceInput) SetDomainFqdn(v string) *ModifyDBInstanceInput

SetDomainFqdn sets the DomainFqdn field's value.

func (*ModifyDBInstanceInput) SetDomainIAMRoleName

func (s *ModifyDBInstanceInput) SetDomainIAMRoleName(v string) *ModifyDBInstanceInput

SetDomainIAMRoleName sets the DomainIAMRoleName field's value.

func (*ModifyDBInstanceInput) SetDomainOu

func (s *ModifyDBInstanceInput) SetDomainOu(v string) *ModifyDBInstanceInput

SetDomainOu sets the DomainOu field's value.

func (*ModifyDBInstanceInput) SetEnableCustomerOwnedIp

func (s *ModifyDBInstanceInput) SetEnableCustomerOwnedIp(v bool) *ModifyDBInstanceInput

SetEnableCustomerOwnedIp sets the EnableCustomerOwnedIp field's value.

func (*ModifyDBInstanceInput) SetEnableIAMDatabaseAuthentication

func (s *ModifyDBInstanceInput) SetEnableIAMDatabaseAuthentication(v bool) *ModifyDBInstanceInput

SetEnableIAMDatabaseAuthentication sets the EnableIAMDatabaseAuthentication field's value.

func (*ModifyDBInstanceInput) SetEnablePerformanceInsights

func (s *ModifyDBInstanceInput) SetEnablePerformanceInsights(v bool) *ModifyDBInstanceInput

SetEnablePerformanceInsights sets the EnablePerformanceInsights field's value.

func (*ModifyDBInstanceInput) SetEngine

func (s *ModifyDBInstanceInput) SetEngine(v string) *ModifyDBInstanceInput

SetEngine sets the Engine field's value.

func (*ModifyDBInstanceInput) SetEngineVersion

func (s *ModifyDBInstanceInput) SetEngineVersion(v string) *ModifyDBInstanceInput

SetEngineVersion sets the EngineVersion field's value.

func (*ModifyDBInstanceInput) SetIops

func (s *ModifyDBInstanceInput) SetIops(v int64) *ModifyDBInstanceInput

SetIops sets the Iops field's value.

func (*ModifyDBInstanceInput) SetLicenseModel

func (s *ModifyDBInstanceInput) SetLicenseModel(v string) *ModifyDBInstanceInput

SetLicenseModel sets the LicenseModel field's value.

func (*ModifyDBInstanceInput) SetManageMasterUserPassword

func (s *ModifyDBInstanceInput) SetManageMasterUserPassword(v bool) *ModifyDBInstanceInput

SetManageMasterUserPassword sets the ManageMasterUserPassword field's value.

func (*ModifyDBInstanceInput) SetMasterUserPassword

func (s *ModifyDBInstanceInput) SetMasterUserPassword(v string) *ModifyDBInstanceInput

SetMasterUserPassword sets the MasterUserPassword field's value.

func (*ModifyDBInstanceInput) SetMasterUserSecretKmsKeyId

func (s *ModifyDBInstanceInput) SetMasterUserSecretKmsKeyId(v string) *ModifyDBInstanceInput

SetMasterUserSecretKmsKeyId sets the MasterUserSecretKmsKeyId field's value.

func (*ModifyDBInstanceInput) SetMaxAllocatedStorage

func (s *ModifyDBInstanceInput) SetMaxAllocatedStorage(v int64) *ModifyDBInstanceInput

SetMaxAllocatedStorage sets the MaxAllocatedStorage field's value.

func (*ModifyDBInstanceInput) SetMonitoringInterval

func (s *ModifyDBInstanceInput) SetMonitoringInterval(v int64) *ModifyDBInstanceInput

SetMonitoringInterval sets the MonitoringInterval field's value.

func (*ModifyDBInstanceInput) SetMonitoringRoleArn

func (s *ModifyDBInstanceInput) SetMonitoringRoleArn(v string) *ModifyDBInstanceInput

SetMonitoringRoleArn sets the MonitoringRoleArn field's value.

func (*ModifyDBInstanceInput) SetMultiAZ

func (s *ModifyDBInstanceInput) SetMultiAZ(v bool) *ModifyDBInstanceInput

SetMultiAZ sets the MultiAZ field's value.

func (*ModifyDBInstanceInput) SetMultiTenant

func (s *ModifyDBInstanceInput) SetMultiTenant(v bool) *ModifyDBInstanceInput

SetMultiTenant sets the MultiTenant field's value.

func (*ModifyDBInstanceInput) SetNetworkType

func (s *ModifyDBInstanceInput) SetNetworkType(v string) *ModifyDBInstanceInput

SetNetworkType sets the NetworkType field's value.

func (*ModifyDBInstanceInput) SetNewDBInstanceIdentifier

func (s *ModifyDBInstanceInput) SetNewDBInstanceIdentifier(v string) *ModifyDBInstanceInput

SetNewDBInstanceIdentifier sets the NewDBInstanceIdentifier field's value.

func (*ModifyDBInstanceInput) SetOptionGroupName

func (s *ModifyDBInstanceInput) SetOptionGroupName(v string) *ModifyDBInstanceInput

SetOptionGroupName sets the OptionGroupName field's value.

func (*ModifyDBInstanceInput) SetPerformanceInsightsKMSKeyId

func (s *ModifyDBInstanceInput) SetPerformanceInsightsKMSKeyId(v string) *ModifyDBInstanceInput

SetPerformanceInsightsKMSKeyId sets the PerformanceInsightsKMSKeyId field's value.

func (*ModifyDBInstanceInput) SetPerformanceInsightsRetentionPeriod

func (s *ModifyDBInstanceInput) SetPerformanceInsightsRetentionPeriod(v int64) *ModifyDBInstanceInput

SetPerformanceInsightsRetentionPeriod sets the PerformanceInsightsRetentionPeriod field's value.

func (*ModifyDBInstanceInput) SetPreferredBackupWindow

func (s *ModifyDBInstanceInput) SetPreferredBackupWindow(v string) *ModifyDBInstanceInput

SetPreferredBackupWindow sets the PreferredBackupWindow field's value.

func (*ModifyDBInstanceInput) SetPreferredMaintenanceWindow

func (s *ModifyDBInstanceInput) SetPreferredMaintenanceWindow(v string) *ModifyDBInstanceInput

SetPreferredMaintenanceWindow sets the PreferredMaintenanceWindow field's value.

func (*ModifyDBInstanceInput) SetProcessorFeatures

func (s *ModifyDBInstanceInput) SetProcessorFeatures(v []*ProcessorFeature) *ModifyDBInstanceInput

SetProcessorFeatures sets the ProcessorFeatures field's value.

func (*ModifyDBInstanceInput) SetPromotionTier

func (s *ModifyDBInstanceInput) SetPromotionTier(v int64) *ModifyDBInstanceInput

SetPromotionTier sets the PromotionTier field's value.

func (*ModifyDBInstanceInput) SetPubliclyAccessible

func (s *ModifyDBInstanceInput) SetPubliclyAccessible(v bool) *ModifyDBInstanceInput

SetPubliclyAccessible sets the PubliclyAccessible field's value.

func (*ModifyDBInstanceInput) SetReplicaMode

func (s *ModifyDBInstanceInput) SetReplicaMode(v string) *ModifyDBInstanceInput

SetReplicaMode sets the ReplicaMode field's value.

func (*ModifyDBInstanceInput) SetResumeFullAutomationModeMinutes

func (s *ModifyDBInstanceInput) SetResumeFullAutomationModeMinutes(v int64) *ModifyDBInstanceInput

SetResumeFullAutomationModeMinutes sets the ResumeFullAutomationModeMinutes field's value.

func (*ModifyDBInstanceInput) SetRotateMasterUserPassword

func (s *ModifyDBInstanceInput) SetRotateMasterUserPassword(v bool) *ModifyDBInstanceInput

SetRotateMasterUserPassword sets the RotateMasterUserPassword field's value.

func (*ModifyDBInstanceInput) SetStorageThroughput

func (s *ModifyDBInstanceInput) SetStorageThroughput(v int64) *ModifyDBInstanceInput

SetStorageThroughput sets the StorageThroughput field's value.

func (*ModifyDBInstanceInput) SetStorageType

func (s *ModifyDBInstanceInput) SetStorageType(v string) *ModifyDBInstanceInput

SetStorageType sets the StorageType field's value.

func (*ModifyDBInstanceInput) SetTdeCredentialArn

func (s *ModifyDBInstanceInput) SetTdeCredentialArn(v string) *ModifyDBInstanceInput

SetTdeCredentialArn sets the TdeCredentialArn field's value.

func (*ModifyDBInstanceInput) SetTdeCredentialPassword

func (s *ModifyDBInstanceInput) SetTdeCredentialPassword(v string) *ModifyDBInstanceInput

SetTdeCredentialPassword sets the TdeCredentialPassword field's value.

func (*ModifyDBInstanceInput) SetUseDefaultProcessorFeatures

func (s *ModifyDBInstanceInput) SetUseDefaultProcessorFeatures(v bool) *ModifyDBInstanceInput

SetUseDefaultProcessorFeatures sets the UseDefaultProcessorFeatures field's value.

func (*ModifyDBInstanceInput) SetVpcSecurityGroupIds

func (s *ModifyDBInstanceInput) SetVpcSecurityGroupIds(v []*string) *ModifyDBInstanceInput

SetVpcSecurityGroupIds sets the VpcSecurityGroupIds field's value.

func (ModifyDBInstanceInput) String

func (s ModifyDBInstanceInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBInstanceInput) Validate

func (s *ModifyDBInstanceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyDBInstanceOutput

type ModifyDBInstanceOutput struct {

    // Contains the details of an Amazon RDS DB instance.
    //
    // This data type is used as a response element in the operations CreateDBInstance,
    // CreateDBInstanceReadReplica, DeleteDBInstance, DescribeDBInstances, ModifyDBInstance,
    // PromoteReadReplica, RebootDBInstance, RestoreDBInstanceFromDBSnapshot, RestoreDBInstanceFromS3,
    // RestoreDBInstanceToPointInTime, StartDBInstance, and StopDBInstance.
    DBInstance *DBInstance `type:"structure"`
    // contains filtered or unexported fields
}

func (ModifyDBInstanceOutput) GoString

func (s ModifyDBInstanceOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBInstanceOutput) SetDBInstance

func (s *ModifyDBInstanceOutput) SetDBInstance(v *DBInstance) *ModifyDBInstanceOutput

SetDBInstance sets the DBInstance field's value.

func (ModifyDBInstanceOutput) String

func (s ModifyDBInstanceOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ModifyDBParameterGroupInput

type ModifyDBParameterGroupInput struct {

    // The name of the DB parameter group.
    //
    // Constraints:
    //
    //    * If supplied, must match the name of an existing DBParameterGroup.
    //
    // DBParameterGroupName is a required field
    DBParameterGroupName *string `type:"string" required:"true"`

    // An array of parameter names, values, and the application methods for the
    // parameter update. At least one parameter name, value, and application method
    // must be supplied; later arguments are optional. A maximum of 20 parameters
    // can be modified in a single request.
    //
    // Valid Values (for the application method): immediate | pending-reboot
    //
    // You can use the immediate value with dynamic parameters only. You can use
    // the pending-reboot value for both dynamic and static parameters.
    //
    // When the application method is immediate, changes to dynamic parameters are
    // applied immediately to the DB instances associated with the parameter group.
    //
    // When the application method is pending-reboot, changes to dynamic and static
    // parameters are applied after a reboot without failover to the DB instances
    // associated with the parameter group.
    //
    // You can't use pending-reboot with dynamic parameters on RDS for SQL Server
    // DB instances. Use immediate.
    //
    // For more information on modifying DB parameters, see Working with DB parameter
    // groups (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithParamGroups.html)
    // in the Amazon RDS User Guide.
    //
    // Parameters is a required field
    Parameters []*Parameter `locationNameList:"Parameter" type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (ModifyDBParameterGroupInput) GoString

func (s ModifyDBParameterGroupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBParameterGroupInput) SetDBParameterGroupName

func (s *ModifyDBParameterGroupInput) SetDBParameterGroupName(v string) *ModifyDBParameterGroupInput

SetDBParameterGroupName sets the DBParameterGroupName field's value.

func (*ModifyDBParameterGroupInput) SetParameters

func (s *ModifyDBParameterGroupInput) SetParameters(v []*Parameter) *ModifyDBParameterGroupInput

SetParameters sets the Parameters field's value.

func (ModifyDBParameterGroupInput) String

func (s ModifyDBParameterGroupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBParameterGroupInput) Validate

func (s *ModifyDBParameterGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyDBProxyEndpointInput

type ModifyDBProxyEndpointInput struct {

    // The name of the DB proxy sociated with the DB proxy endpoint that you want
    // to modify.
    //
    // DBProxyEndpointName is a required field
    DBProxyEndpointName *string `min:"1" type:"string" required:"true"`

    // The new identifier for the DBProxyEndpoint. An identifier must begin with
    // a letter and must contain only ASCII letters, digits, and hyphens; it can't
    // end with a hyphen or contain two consecutive hyphens.
    NewDBProxyEndpointName *string `min:"1" type:"string"`

    // The VPC security group IDs for the DB proxy endpoint. When the DB proxy endpoint
    // uses a different VPC than the original proxy, you also specify a different
    // set of security group IDs than for the original proxy.
    VpcSecurityGroupIds []*string `type:"list"`
    // contains filtered or unexported fields
}

func (ModifyDBProxyEndpointInput) GoString

func (s ModifyDBProxyEndpointInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBProxyEndpointInput) SetDBProxyEndpointName

func (s *ModifyDBProxyEndpointInput) SetDBProxyEndpointName(v string) *ModifyDBProxyEndpointInput

SetDBProxyEndpointName sets the DBProxyEndpointName field's value.

func (*ModifyDBProxyEndpointInput) SetNewDBProxyEndpointName

func (s *ModifyDBProxyEndpointInput) SetNewDBProxyEndpointName(v string) *ModifyDBProxyEndpointInput

SetNewDBProxyEndpointName sets the NewDBProxyEndpointName field's value.

func (*ModifyDBProxyEndpointInput) SetVpcSecurityGroupIds

func (s *ModifyDBProxyEndpointInput) SetVpcSecurityGroupIds(v []*string) *ModifyDBProxyEndpointInput

SetVpcSecurityGroupIds sets the VpcSecurityGroupIds field's value.

func (ModifyDBProxyEndpointInput) String

func (s ModifyDBProxyEndpointInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBProxyEndpointInput) Validate

func (s *ModifyDBProxyEndpointInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyDBProxyEndpointOutput

type ModifyDBProxyEndpointOutput struct {

    // The DBProxyEndpoint object representing the new settings for the DB proxy
    // endpoint.
    DBProxyEndpoint *DBProxyEndpoint `type:"structure"`
    // contains filtered or unexported fields
}

func (ModifyDBProxyEndpointOutput) GoString

func (s ModifyDBProxyEndpointOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBProxyEndpointOutput) SetDBProxyEndpoint

func (s *ModifyDBProxyEndpointOutput) SetDBProxyEndpoint(v *DBProxyEndpoint) *ModifyDBProxyEndpointOutput

SetDBProxyEndpoint sets the DBProxyEndpoint field's value.

func (ModifyDBProxyEndpointOutput) String

func (s ModifyDBProxyEndpointOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ModifyDBProxyInput

type ModifyDBProxyInput struct {

    // The new authentication settings for the DBProxy.
    Auth []*UserAuthConfig `type:"list"`

    // The identifier for the DBProxy to modify.
    //
    // DBProxyName is a required field
    DBProxyName *string `type:"string" required:"true"`

    // Whether the proxy includes detailed information about SQL statements in its
    // logs. This information helps you to debug issues involving SQL behavior or
    // the performance and scalability of the proxy connections. The debug information
    // includes the text of SQL statements that you submit through the proxy. Thus,
    // only enable this setting when needed for debugging, and only when you have
    // security measures in place to safeguard any sensitive information that appears
    // in the logs.
    DebugLogging *bool `type:"boolean"`

    // The number of seconds that a connection to the proxy can be inactive before
    // the proxy disconnects it. You can set this value higher or lower than the
    // connection timeout limit for the associated database.
    IdleClientTimeout *int64 `type:"integer"`

    // The new identifier for the DBProxy. An identifier must begin with a letter
    // and must contain only ASCII letters, digits, and hyphens; it can't end with
    // a hyphen or contain two consecutive hyphens.
    NewDBProxyName *string `type:"string"`

    // Whether Transport Layer Security (TLS) encryption is required for connections
    // to the proxy. By enabling this setting, you can enforce encrypted TLS connections
    // to the proxy, even if the associated database doesn't use TLS.
    RequireTLS *bool `type:"boolean"`

    // The Amazon Resource Name (ARN) of the IAM role that the proxy uses to access
    // secrets in Amazon Web Services Secrets Manager.
    RoleArn *string `type:"string"`

    // The new list of security groups for the DBProxy.
    SecurityGroups []*string `type:"list"`
    // contains filtered or unexported fields
}

func (ModifyDBProxyInput) GoString

func (s ModifyDBProxyInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBProxyInput) SetAuth

func (s *ModifyDBProxyInput) SetAuth(v []*UserAuthConfig) *ModifyDBProxyInput

SetAuth sets the Auth field's value.

func (*ModifyDBProxyInput) SetDBProxyName

func (s *ModifyDBProxyInput) SetDBProxyName(v string) *ModifyDBProxyInput

SetDBProxyName sets the DBProxyName field's value.

func (*ModifyDBProxyInput) SetDebugLogging

func (s *ModifyDBProxyInput) SetDebugLogging(v bool) *ModifyDBProxyInput

SetDebugLogging sets the DebugLogging field's value.

func (*ModifyDBProxyInput) SetIdleClientTimeout

func (s *ModifyDBProxyInput) SetIdleClientTimeout(v int64) *ModifyDBProxyInput

SetIdleClientTimeout sets the IdleClientTimeout field's value.

func (*ModifyDBProxyInput) SetNewDBProxyName

func (s *ModifyDBProxyInput) SetNewDBProxyName(v string) *ModifyDBProxyInput

SetNewDBProxyName sets the NewDBProxyName field's value.

func (*ModifyDBProxyInput) SetRequireTLS

func (s *ModifyDBProxyInput) SetRequireTLS(v bool) *ModifyDBProxyInput

SetRequireTLS sets the RequireTLS field's value.

func (*ModifyDBProxyInput) SetRoleArn

func (s *ModifyDBProxyInput) SetRoleArn(v string) *ModifyDBProxyInput

SetRoleArn sets the RoleArn field's value.

func (*ModifyDBProxyInput) SetSecurityGroups

func (s *ModifyDBProxyInput) SetSecurityGroups(v []*string) *ModifyDBProxyInput

SetSecurityGroups sets the SecurityGroups field's value.

func (ModifyDBProxyInput) String

func (s ModifyDBProxyInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBProxyInput) Validate

func (s *ModifyDBProxyInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyDBProxyOutput

type ModifyDBProxyOutput struct {

    // The DBProxy object representing the new settings for the proxy.
    DBProxy *DBProxy `type:"structure"`
    // contains filtered or unexported fields
}

func (ModifyDBProxyOutput) GoString

func (s ModifyDBProxyOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBProxyOutput) SetDBProxy

func (s *ModifyDBProxyOutput) SetDBProxy(v *DBProxy) *ModifyDBProxyOutput

SetDBProxy sets the DBProxy field's value.

func (ModifyDBProxyOutput) String

func (s ModifyDBProxyOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ModifyDBProxyTargetGroupInput

type ModifyDBProxyTargetGroupInput struct {

    // The settings that determine the size and behavior of the connection pool
    // for the target group.
    ConnectionPoolConfig *ConnectionPoolConfiguration `type:"structure"`

    // The name of the proxy.
    //
    // DBProxyName is a required field
    DBProxyName *string `type:"string" required:"true"`

    // The new name for the modified DBProxyTarget. An identifier must begin with
    // a letter and must contain only ASCII letters, digits, and hyphens; it can't
    // end with a hyphen or contain two consecutive hyphens.
    NewName *string `type:"string"`

    // The name of the target group to modify.
    //
    // TargetGroupName is a required field
    TargetGroupName *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ModifyDBProxyTargetGroupInput) GoString

func (s ModifyDBProxyTargetGroupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBProxyTargetGroupInput) SetConnectionPoolConfig

func (s *ModifyDBProxyTargetGroupInput) SetConnectionPoolConfig(v *ConnectionPoolConfiguration) *ModifyDBProxyTargetGroupInput

SetConnectionPoolConfig sets the ConnectionPoolConfig field's value.

func (*ModifyDBProxyTargetGroupInput) SetDBProxyName

func (s *ModifyDBProxyTargetGroupInput) SetDBProxyName(v string) *ModifyDBProxyTargetGroupInput

SetDBProxyName sets the DBProxyName field's value.

func (*ModifyDBProxyTargetGroupInput) SetNewName

func (s *ModifyDBProxyTargetGroupInput) SetNewName(v string) *ModifyDBProxyTargetGroupInput

SetNewName sets the NewName field's value.

func (*ModifyDBProxyTargetGroupInput) SetTargetGroupName

func (s *ModifyDBProxyTargetGroupInput) SetTargetGroupName(v string) *ModifyDBProxyTargetGroupInput

SetTargetGroupName sets the TargetGroupName field's value.

func (ModifyDBProxyTargetGroupInput) String

func (s ModifyDBProxyTargetGroupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBProxyTargetGroupInput) Validate

func (s *ModifyDBProxyTargetGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyDBProxyTargetGroupOutput

type ModifyDBProxyTargetGroupOutput struct {

    // The settings of the modified DBProxyTarget.
    DBProxyTargetGroup *DBProxyTargetGroup `type:"structure"`
    // contains filtered or unexported fields
}

func (ModifyDBProxyTargetGroupOutput) GoString

func (s ModifyDBProxyTargetGroupOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBProxyTargetGroupOutput) SetDBProxyTargetGroup

func (s *ModifyDBProxyTargetGroupOutput) SetDBProxyTargetGroup(v *DBProxyTargetGroup) *ModifyDBProxyTargetGroupOutput

SetDBProxyTargetGroup sets the DBProxyTargetGroup field's value.

func (ModifyDBProxyTargetGroupOutput) String

func (s ModifyDBProxyTargetGroupOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ModifyDBRecommendationInput

type ModifyDBRecommendationInput struct {

    // The language of the modified recommendation.
    Locale *string `type:"string"`

    // The identifier of the recommendation to update.
    //
    // RecommendationId is a required field
    RecommendationId *string `type:"string" required:"true"`

    // The list of recommended action status to update. You can update multiple
    // recommended actions at one time.
    RecommendedActionUpdates []*RecommendedActionUpdate `type:"list"`

    // The recommendation status to update.
    //
    // Valid values:
    //
    //    * active
    //
    //    * dismissed
    Status *string `type:"string"`
    // contains filtered or unexported fields
}

func (ModifyDBRecommendationInput) GoString

func (s ModifyDBRecommendationInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBRecommendationInput) SetLocale

func (s *ModifyDBRecommendationInput) SetLocale(v string) *ModifyDBRecommendationInput

SetLocale sets the Locale field's value.

func (*ModifyDBRecommendationInput) SetRecommendationId

func (s *ModifyDBRecommendationInput) SetRecommendationId(v string) *ModifyDBRecommendationInput

SetRecommendationId sets the RecommendationId field's value.

func (*ModifyDBRecommendationInput) SetRecommendedActionUpdates

func (s *ModifyDBRecommendationInput) SetRecommendedActionUpdates(v []*RecommendedActionUpdate) *ModifyDBRecommendationInput

SetRecommendedActionUpdates sets the RecommendedActionUpdates field's value.

func (*ModifyDBRecommendationInput) SetStatus

func (s *ModifyDBRecommendationInput) SetStatus(v string) *ModifyDBRecommendationInput

SetStatus sets the Status field's value.

func (ModifyDBRecommendationInput) String

func (s ModifyDBRecommendationInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBRecommendationInput) Validate

func (s *ModifyDBRecommendationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyDBRecommendationOutput

type ModifyDBRecommendationOutput struct {

    // The recommendation for your DB instances, DB clusters, and DB parameter groups.
    DBRecommendation *DBRecommendation `type:"structure"`
    // contains filtered or unexported fields
}

func (ModifyDBRecommendationOutput) GoString

func (s ModifyDBRecommendationOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBRecommendationOutput) SetDBRecommendation

func (s *ModifyDBRecommendationOutput) SetDBRecommendation(v *DBRecommendation) *ModifyDBRecommendationOutput

SetDBRecommendation sets the DBRecommendation field's value.

func (ModifyDBRecommendationOutput) String

func (s ModifyDBRecommendationOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ModifyDBShardGroupInput

type ModifyDBShardGroupInput struct {

    // The name of the DB shard group to modify.
    //
    // DBShardGroupIdentifier is a required field
    DBShardGroupIdentifier *string `min:"1" type:"string" required:"true"`

    // The maximum capacity of the DB shard group in Aurora capacity units (ACUs).
    MaxACU *float64 `type:"double"`
    // contains filtered or unexported fields
}

func (ModifyDBShardGroupInput) GoString

func (s ModifyDBShardGroupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBShardGroupInput) SetDBShardGroupIdentifier

func (s *ModifyDBShardGroupInput) SetDBShardGroupIdentifier(v string) *ModifyDBShardGroupInput

SetDBShardGroupIdentifier sets the DBShardGroupIdentifier field's value.

func (*ModifyDBShardGroupInput) SetMaxACU

func (s *ModifyDBShardGroupInput) SetMaxACU(v float64) *ModifyDBShardGroupInput

SetMaxACU sets the MaxACU field's value.

func (ModifyDBShardGroupInput) String

func (s ModifyDBShardGroupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBShardGroupInput) Validate

func (s *ModifyDBShardGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyDBShardGroupOutput

type ModifyDBShardGroupOutput struct {

    // Specifies whether to create standby instances for the DB shard group. Valid
    // values are the following:
    //
    //    * 0 - Creates a single, primary DB instance for each physical shard. This
    //    is the default value, and the only one supported for the preview.
    //
    //    * 1 - Creates a primary DB instance and a standby instance in a different
    //    Availability Zone (AZ) for each physical shard.
    //
    //    * 2 - Creates a primary DB instance and two standby instances in different
    //    AZs for each physical shard.
    ComputeRedundancy *int64 `type:"integer"`

    // The name of the primary DB cluster for the DB shard group.
    DBClusterIdentifier *string `type:"string"`

    // The name of the DB shard group.
    DBShardGroupIdentifier *string `min:"1" type:"string"`

    // The Amazon Web Services Region-unique, immutable identifier for the DB shard
    // group.
    DBShardGroupResourceId *string `type:"string"`

    // The connection endpoint for the DB shard group.
    Endpoint *string `type:"string"`

    // The maximum capacity of the DB shard group in Aurora capacity units (ACUs).
    MaxACU *float64 `type:"double"`

    // Indicates whether the DB shard group is publicly accessible.
    //
    // When the DB shard group is publicly accessible, its Domain Name System (DNS)
    // endpoint resolves to the private IP address from within the DB shard group's
    // virtual private cloud (VPC). It resolves to the public IP address from outside
    // of the DB shard group's VPC. Access to the DB shard group is ultimately controlled
    // by the security group it uses. That public access isn't permitted if the
    // security group assigned to the DB shard group doesn't permit it.
    //
    // When the DB shard group isn't publicly accessible, it is an internal DB shard
    // group with a DNS name that resolves to a private IP address.
    //
    // For more information, see CreateDBShardGroup.
    //
    // This setting is only for Aurora Limitless Database.
    PubliclyAccessible *bool `type:"boolean"`

    // The status of the DB shard group.
    Status *string `type:"string"`
    // contains filtered or unexported fields
}

func (ModifyDBShardGroupOutput) GoString

func (s ModifyDBShardGroupOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBShardGroupOutput) SetComputeRedundancy

func (s *ModifyDBShardGroupOutput) SetComputeRedundancy(v int64) *ModifyDBShardGroupOutput

SetComputeRedundancy sets the ComputeRedundancy field's value.

func (*ModifyDBShardGroupOutput) SetDBClusterIdentifier

func (s *ModifyDBShardGroupOutput) SetDBClusterIdentifier(v string) *ModifyDBShardGroupOutput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*ModifyDBShardGroupOutput) SetDBShardGroupIdentifier

func (s *ModifyDBShardGroupOutput) SetDBShardGroupIdentifier(v string) *ModifyDBShardGroupOutput

SetDBShardGroupIdentifier sets the DBShardGroupIdentifier field's value.

func (*ModifyDBShardGroupOutput) SetDBShardGroupResourceId

func (s *ModifyDBShardGroupOutput) SetDBShardGroupResourceId(v string) *ModifyDBShardGroupOutput

SetDBShardGroupResourceId sets the DBShardGroupResourceId field's value.

func (*ModifyDBShardGroupOutput) SetEndpoint

func (s *ModifyDBShardGroupOutput) SetEndpoint(v string) *ModifyDBShardGroupOutput

SetEndpoint sets the Endpoint field's value.

func (*ModifyDBShardGroupOutput) SetMaxACU

func (s *ModifyDBShardGroupOutput) SetMaxACU(v float64) *ModifyDBShardGroupOutput

SetMaxACU sets the MaxACU field's value.

func (*ModifyDBShardGroupOutput) SetPubliclyAccessible

func (s *ModifyDBShardGroupOutput) SetPubliclyAccessible(v bool) *ModifyDBShardGroupOutput

SetPubliclyAccessible sets the PubliclyAccessible field's value.

func (*ModifyDBShardGroupOutput) SetStatus

func (s *ModifyDBShardGroupOutput) SetStatus(v string) *ModifyDBShardGroupOutput

SetStatus sets the Status field's value.

func (ModifyDBShardGroupOutput) String

func (s ModifyDBShardGroupOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ModifyDBSnapshotAttributeInput

type ModifyDBSnapshotAttributeInput struct {

    // The name of the DB snapshot attribute to modify.
    //
    // To manage authorization for other Amazon Web Services accounts to copy or
    // restore a manual DB snapshot, set this value to restore.
    //
    // To view the list of attributes available to modify, use the DescribeDBSnapshotAttributes
    // API operation.
    //
    // AttributeName is a required field
    AttributeName *string `type:"string" required:"true"`

    // The identifier for the DB snapshot to modify the attributes for.
    //
    // DBSnapshotIdentifier is a required field
    DBSnapshotIdentifier *string `type:"string" required:"true"`

    // A list of DB snapshot attributes to add to the attribute specified by AttributeName.
    //
    // To authorize other Amazon Web Services accounts to copy or restore a manual
    // snapshot, set this list to include one or more Amazon Web Services account
    // IDs, or all to make the manual DB snapshot restorable by any Amazon Web Services
    // account. Do not add the all value for any manual DB snapshots that contain
    // private information that you don't want available to all Amazon Web Services
    // accounts.
    ValuesToAdd []*string `locationNameList:"AttributeValue" type:"list"`

    // A list of DB snapshot attributes to remove from the attribute specified by
    // AttributeName.
    //
    // To remove authorization for other Amazon Web Services accounts to copy or
    // restore a manual snapshot, set this list to include one or more Amazon Web
    // Services account identifiers, or all to remove authorization for any Amazon
    // Web Services account to copy or restore the DB snapshot. If you specify all,
    // an Amazon Web Services account whose account ID is explicitly added to the
    // restore attribute can still copy or restore the manual DB snapshot.
    ValuesToRemove []*string `locationNameList:"AttributeValue" type:"list"`
    // contains filtered or unexported fields
}

func (ModifyDBSnapshotAttributeInput) GoString

func (s ModifyDBSnapshotAttributeInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBSnapshotAttributeInput) SetAttributeName

func (s *ModifyDBSnapshotAttributeInput) SetAttributeName(v string) *ModifyDBSnapshotAttributeInput

SetAttributeName sets the AttributeName field's value.

func (*ModifyDBSnapshotAttributeInput) SetDBSnapshotIdentifier

func (s *ModifyDBSnapshotAttributeInput) SetDBSnapshotIdentifier(v string) *ModifyDBSnapshotAttributeInput

SetDBSnapshotIdentifier sets the DBSnapshotIdentifier field's value.

func (*ModifyDBSnapshotAttributeInput) SetValuesToAdd

func (s *ModifyDBSnapshotAttributeInput) SetValuesToAdd(v []*string) *ModifyDBSnapshotAttributeInput

SetValuesToAdd sets the ValuesToAdd field's value.

func (*ModifyDBSnapshotAttributeInput) SetValuesToRemove

func (s *ModifyDBSnapshotAttributeInput) SetValuesToRemove(v []*string) *ModifyDBSnapshotAttributeInput

SetValuesToRemove sets the ValuesToRemove field's value.

func (ModifyDBSnapshotAttributeInput) String

func (s ModifyDBSnapshotAttributeInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBSnapshotAttributeInput) Validate

func (s *ModifyDBSnapshotAttributeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyDBSnapshotAttributeOutput

type ModifyDBSnapshotAttributeOutput struct {

    // Contains the results of a successful call to the DescribeDBSnapshotAttributes
    // API action.
    //
    // Manual DB snapshot attributes are used to authorize other Amazon Web Services
    // accounts to copy or restore a manual DB snapshot. For more information, see
    // the ModifyDBSnapshotAttribute API action.
    DBSnapshotAttributesResult *DBSnapshotAttributesResult `type:"structure"`
    // contains filtered or unexported fields
}

func (ModifyDBSnapshotAttributeOutput) GoString

func (s ModifyDBSnapshotAttributeOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBSnapshotAttributeOutput) SetDBSnapshotAttributesResult

func (s *ModifyDBSnapshotAttributeOutput) SetDBSnapshotAttributesResult(v *DBSnapshotAttributesResult) *ModifyDBSnapshotAttributeOutput

SetDBSnapshotAttributesResult sets the DBSnapshotAttributesResult field's value.

func (ModifyDBSnapshotAttributeOutput) String

func (s ModifyDBSnapshotAttributeOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ModifyDBSnapshotInput

type ModifyDBSnapshotInput struct {

    // The identifier of the DB snapshot to modify.
    //
    // DBSnapshotIdentifier is a required field
    DBSnapshotIdentifier *string `type:"string" required:"true"`

    // The engine version to upgrade the DB snapshot to.
    //
    // The following are the database engines and engine versions that are available
    // when you upgrade a DB snapshot.
    //
    // MySQL
    //
    // For the list of engine versions that are available for upgrading a DB snapshot,
    // see Upgrading a MySQL DB snapshot engine version (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/mysql-upgrade-snapshot.html)
    // in the Amazon RDS User Guide.
    //
    // Oracle
    //
    //    * 19.0.0.0.ru-2022-01.rur-2022-01.r1 (supported for 12.2.0.1 DB snapshots)
    //
    //    * 19.0.0.0.ru-2022-07.rur-2022-07.r1 (supported for 12.1.0.2 DB snapshots)
    //
    //    * 12.1.0.2.v8 (supported for 12.1.0.1 DB snapshots)
    //
    //    * 11.2.0.4.v12 (supported for 11.2.0.2 DB snapshots)
    //
    //    * 11.2.0.4.v11 (supported for 11.2.0.3 DB snapshots)
    //
    // PostgreSQL
    //
    // For the list of engine versions that are available for upgrading a DB snapshot,
    // see Upgrading a PostgreSQL DB snapshot engine version (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBSnapshot.PostgreSQL.html)
    // in the Amazon RDS User Guide.
    EngineVersion *string `type:"string"`

    // The option group to identify with the upgraded DB snapshot.
    //
    // You can specify this parameter when you upgrade an Oracle DB snapshot. The
    // same option group considerations apply when upgrading a DB snapshot as when
    // upgrading a DB instance. For more information, see Option group considerations
    // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Oracle.html#USER_UpgradeDBInstance.Oracle.OGPG.OG)
    // in the Amazon RDS User Guide.
    OptionGroupName *string `type:"string"`
    // contains filtered or unexported fields
}

func (ModifyDBSnapshotInput) GoString

func (s ModifyDBSnapshotInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBSnapshotInput) SetDBSnapshotIdentifier

func (s *ModifyDBSnapshotInput) SetDBSnapshotIdentifier(v string) *ModifyDBSnapshotInput

SetDBSnapshotIdentifier sets the DBSnapshotIdentifier field's value.

func (*ModifyDBSnapshotInput) SetEngineVersion

func (s *ModifyDBSnapshotInput) SetEngineVersion(v string) *ModifyDBSnapshotInput

SetEngineVersion sets the EngineVersion field's value.

func (*ModifyDBSnapshotInput) SetOptionGroupName

func (s *ModifyDBSnapshotInput) SetOptionGroupName(v string) *ModifyDBSnapshotInput

SetOptionGroupName sets the OptionGroupName field's value.

func (ModifyDBSnapshotInput) String

func (s ModifyDBSnapshotInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBSnapshotInput) Validate

func (s *ModifyDBSnapshotInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyDBSnapshotOutput

type ModifyDBSnapshotOutput struct {

    // Contains the details of an Amazon RDS DB snapshot.
    //
    // This data type is used as a response element in the DescribeDBSnapshots action.
    DBSnapshot *DBSnapshot `type:"structure"`
    // contains filtered or unexported fields
}

func (ModifyDBSnapshotOutput) GoString

func (s ModifyDBSnapshotOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBSnapshotOutput) SetDBSnapshot

func (s *ModifyDBSnapshotOutput) SetDBSnapshot(v *DBSnapshot) *ModifyDBSnapshotOutput

SetDBSnapshot sets the DBSnapshot field's value.

func (ModifyDBSnapshotOutput) String

func (s ModifyDBSnapshotOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ModifyDBSubnetGroupInput

type ModifyDBSubnetGroupInput struct {

    // The description for the DB subnet group.
    DBSubnetGroupDescription *string `type:"string"`

    // The name for the DB subnet group. This value is stored as a lowercase string.
    // You can't modify the default subnet group.
    //
    // Constraints: Must match the name of an existing DBSubnetGroup. Must not be
    // default.
    //
    // Example: mydbsubnetgroup
    //
    // DBSubnetGroupName is a required field
    DBSubnetGroupName *string `type:"string" required:"true"`

    // The EC2 subnet IDs for the DB subnet group.
    //
    // SubnetIds is a required field
    SubnetIds []*string `locationNameList:"SubnetIdentifier" type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (ModifyDBSubnetGroupInput) GoString

func (s ModifyDBSubnetGroupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBSubnetGroupInput) SetDBSubnetGroupDescription

func (s *ModifyDBSubnetGroupInput) SetDBSubnetGroupDescription(v string) *ModifyDBSubnetGroupInput

SetDBSubnetGroupDescription sets the DBSubnetGroupDescription field's value.

func (*ModifyDBSubnetGroupInput) SetDBSubnetGroupName

func (s *ModifyDBSubnetGroupInput) SetDBSubnetGroupName(v string) *ModifyDBSubnetGroupInput

SetDBSubnetGroupName sets the DBSubnetGroupName field's value.

func (*ModifyDBSubnetGroupInput) SetSubnetIds

func (s *ModifyDBSubnetGroupInput) SetSubnetIds(v []*string) *ModifyDBSubnetGroupInput

SetSubnetIds sets the SubnetIds field's value.

func (ModifyDBSubnetGroupInput) String

func (s ModifyDBSubnetGroupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBSubnetGroupInput) Validate

func (s *ModifyDBSubnetGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyDBSubnetGroupOutput

type ModifyDBSubnetGroupOutput struct {

    // Contains the details of an Amazon RDS DB subnet group.
    //
    // This data type is used as a response element in the DescribeDBSubnetGroups
    // action.
    DBSubnetGroup *DBSubnetGroup `type:"structure"`
    // contains filtered or unexported fields
}

func (ModifyDBSubnetGroupOutput) GoString

func (s ModifyDBSubnetGroupOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyDBSubnetGroupOutput) SetDBSubnetGroup

func (s *ModifyDBSubnetGroupOutput) SetDBSubnetGroup(v *DBSubnetGroup) *ModifyDBSubnetGroupOutput

SetDBSubnetGroup sets the DBSubnetGroup field's value.

func (ModifyDBSubnetGroupOutput) String

func (s ModifyDBSubnetGroupOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ModifyEventSubscriptionInput

type ModifyEventSubscriptionInput struct {

    // Specifies whether to activate the subscription.
    Enabled *bool `type:"boolean"`

    // A list of event categories for a source type (SourceType) that you want to
    // subscribe to. You can see a list of the categories for a given source type
    // in Events (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html)
    // in the Amazon RDS User Guide or by using the DescribeEventCategories operation.
    EventCategories []*string `locationNameList:"EventCategory" type:"list"`

    // The Amazon Resource Name (ARN) of the SNS topic created for event notification.
    // The ARN is created by Amazon SNS when you create a topic and subscribe to
    // it.
    SnsTopicArn *string `type:"string"`

    // The type of source that is generating the events. For example, if you want
    // to be notified of events generated by a DB instance, you would set this parameter
    // to db-instance. For RDS Proxy events, specify db-proxy. If this value isn't
    // specified, all events are returned.
    //
    // Valid Values: db-instance | db-cluster | db-parameter-group | db-security-group
    // | db-snapshot | db-cluster-snapshot | db-proxy
    SourceType *string `type:"string"`

    // The name of the RDS event notification subscription.
    //
    // SubscriptionName is a required field
    SubscriptionName *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ModifyEventSubscriptionInput) GoString

func (s ModifyEventSubscriptionInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyEventSubscriptionInput) SetEnabled

func (s *ModifyEventSubscriptionInput) SetEnabled(v bool) *ModifyEventSubscriptionInput

SetEnabled sets the Enabled field's value.

func (*ModifyEventSubscriptionInput) SetEventCategories

func (s *ModifyEventSubscriptionInput) SetEventCategories(v []*string) *ModifyEventSubscriptionInput

SetEventCategories sets the EventCategories field's value.

func (*ModifyEventSubscriptionInput) SetSnsTopicArn

func (s *ModifyEventSubscriptionInput) SetSnsTopicArn(v string) *ModifyEventSubscriptionInput

SetSnsTopicArn sets the SnsTopicArn field's value.

func (*ModifyEventSubscriptionInput) SetSourceType

func (s *ModifyEventSubscriptionInput) SetSourceType(v string) *ModifyEventSubscriptionInput

SetSourceType sets the SourceType field's value.

func (*ModifyEventSubscriptionInput) SetSubscriptionName

func (s *ModifyEventSubscriptionInput) SetSubscriptionName(v string) *ModifyEventSubscriptionInput

SetSubscriptionName sets the SubscriptionName field's value.

func (ModifyEventSubscriptionInput) String

func (s ModifyEventSubscriptionInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyEventSubscriptionInput) Validate

func (s *ModifyEventSubscriptionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyEventSubscriptionOutput

type ModifyEventSubscriptionOutput struct {

    // Contains the results of a successful invocation of the DescribeEventSubscriptions
    // action.
    EventSubscription *EventSubscription `type:"structure"`
    // contains filtered or unexported fields
}

func (ModifyEventSubscriptionOutput) GoString

func (s ModifyEventSubscriptionOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyEventSubscriptionOutput) SetEventSubscription

func (s *ModifyEventSubscriptionOutput) SetEventSubscription(v *EventSubscription) *ModifyEventSubscriptionOutput

SetEventSubscription sets the EventSubscription field's value.

func (ModifyEventSubscriptionOutput) String

func (s ModifyEventSubscriptionOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ModifyGlobalClusterInput

type ModifyGlobalClusterInput struct {

    // Specifies whether to allow major version upgrades.
    //
    // Constraints: Must be enabled if you specify a value for the EngineVersion
    // parameter that's a different major version than the global cluster's current
    // version.
    //
    // If you upgrade the major version of a global database, the cluster and DB
    // instance parameter groups are set to the default parameter groups for the
    // new version. Apply any custom parameter groups after completing the upgrade.
    AllowMajorVersionUpgrade *bool `type:"boolean"`

    // Specifies whether to enable deletion protection for the global database cluster.
    // The global database cluster can't be deleted when deletion protection is
    // enabled.
    DeletionProtection *bool `type:"boolean"`

    // The version number of the database engine to which you want to upgrade.
    //
    // To list all of the available engine versions for aurora-mysql (for MySQL-based
    // Aurora global databases), use the following command:
    //
    // aws rds describe-db-engine-versions --engine aurora-mysql --query '*[]|[?SupportsGlobalDatabases
    // == `true`].[EngineVersion]'
    //
    // To list all of the available engine versions for aurora-postgresql (for PostgreSQL-based
    // Aurora global databases), use the following command:
    //
    // aws rds describe-db-engine-versions --engine aurora-postgresql --query '*[]|[?SupportsGlobalDatabases
    // == `true`].[EngineVersion]'
    EngineVersion *string `type:"string"`

    // The cluster identifier for the global cluster to modify. This parameter isn't
    // case-sensitive.
    //
    // Constraints:
    //
    //    * Must match the identifier of an existing global database cluster.
    GlobalClusterIdentifier *string `type:"string"`

    // The new cluster identifier for the global database cluster. This value is
    // stored as a lowercase string.
    //
    // Constraints:
    //
    //    * Must contain from 1 to 63 letters, numbers, or hyphens.
    //
    //    * The first character must be a letter.
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens.
    //
    // Example: my-cluster2
    NewGlobalClusterIdentifier *string `type:"string"`
    // contains filtered or unexported fields
}

func (ModifyGlobalClusterInput) GoString

func (s ModifyGlobalClusterInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyGlobalClusterInput) SetAllowMajorVersionUpgrade

func (s *ModifyGlobalClusterInput) SetAllowMajorVersionUpgrade(v bool) *ModifyGlobalClusterInput

SetAllowMajorVersionUpgrade sets the AllowMajorVersionUpgrade field's value.

func (*ModifyGlobalClusterInput) SetDeletionProtection

func (s *ModifyGlobalClusterInput) SetDeletionProtection(v bool) *ModifyGlobalClusterInput

SetDeletionProtection sets the DeletionProtection field's value.

func (*ModifyGlobalClusterInput) SetEngineVersion

func (s *ModifyGlobalClusterInput) SetEngineVersion(v string) *ModifyGlobalClusterInput

SetEngineVersion sets the EngineVersion field's value.

func (*ModifyGlobalClusterInput) SetGlobalClusterIdentifier

func (s *ModifyGlobalClusterInput) SetGlobalClusterIdentifier(v string) *ModifyGlobalClusterInput

SetGlobalClusterIdentifier sets the GlobalClusterIdentifier field's value.

func (*ModifyGlobalClusterInput) SetNewGlobalClusterIdentifier

func (s *ModifyGlobalClusterInput) SetNewGlobalClusterIdentifier(v string) *ModifyGlobalClusterInput

SetNewGlobalClusterIdentifier sets the NewGlobalClusterIdentifier field's value.

func (ModifyGlobalClusterInput) String

func (s ModifyGlobalClusterInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ModifyGlobalClusterOutput

type ModifyGlobalClusterOutput struct {

    // A data type representing an Aurora global database.
    GlobalCluster *GlobalCluster `type:"structure"`
    // contains filtered or unexported fields
}

func (ModifyGlobalClusterOutput) GoString

func (s ModifyGlobalClusterOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyGlobalClusterOutput) SetGlobalCluster

func (s *ModifyGlobalClusterOutput) SetGlobalCluster(v *GlobalCluster) *ModifyGlobalClusterOutput

SetGlobalCluster sets the GlobalCluster field's value.

func (ModifyGlobalClusterOutput) String

func (s ModifyGlobalClusterOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ModifyIntegrationInput

type ModifyIntegrationInput struct {

    // A new data filter for the integration. For more information, see Data filtering
    // for Aurora zero-ETL integrations with Amazon Redshift (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Zero_ETL_Filtering.html).
    DataFilter *string `min:"1" type:"string"`

    // A new description for the integration.
    Description *string `type:"string"`

    // The unique identifier of the integration to modify.
    //
    // IntegrationIdentifier is a required field
    IntegrationIdentifier *string `min:"1" type:"string" required:"true"`

    // A new name for the integration.
    IntegrationName *string `min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (ModifyIntegrationInput) GoString

func (s ModifyIntegrationInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyIntegrationInput) SetDataFilter

func (s *ModifyIntegrationInput) SetDataFilter(v string) *ModifyIntegrationInput

SetDataFilter sets the DataFilter field's value.

func (*ModifyIntegrationInput) SetDescription

func (s *ModifyIntegrationInput) SetDescription(v string) *ModifyIntegrationInput

SetDescription sets the Description field's value.

func (*ModifyIntegrationInput) SetIntegrationIdentifier

func (s *ModifyIntegrationInput) SetIntegrationIdentifier(v string) *ModifyIntegrationInput

SetIntegrationIdentifier sets the IntegrationIdentifier field's value.

func (*ModifyIntegrationInput) SetIntegrationName

func (s *ModifyIntegrationInput) SetIntegrationName(v string) *ModifyIntegrationInput

SetIntegrationName sets the IntegrationName field's value.

func (ModifyIntegrationInput) String

func (s ModifyIntegrationInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyIntegrationInput) Validate

func (s *ModifyIntegrationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyIntegrationOutput

type ModifyIntegrationOutput struct {

    // The encryption context for the integration. For more information, see Encryption
    // context (https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context)
    // in the Amazon Web Services Key Management Service Developer Guide.
    AdditionalEncryptionContext map[string]*string `type:"map"`

    // The time when the integration was created, in Universal Coordinated Time
    // (UTC).
    CreateTime *time.Time `type:"timestamp"`

    // Data filters for the integration. These filters determine which tables from
    // the source database are sent to the target Amazon Redshift data warehouse.
    DataFilter *string `min:"1" type:"string"`

    // A description of the integration.
    Description *string `type:"string"`

    // Any errors associated with the integration.
    Errors []*IntegrationError `locationNameList:"IntegrationError" type:"list"`

    // The ARN of the integration.
    IntegrationArn *string `min:"1" type:"string"`

    // The name of the integration.
    IntegrationName *string `min:"1" type:"string"`

    // The Amazon Web Services Key Management System (Amazon Web Services KMS) key
    // identifier for the key used to to encrypt the integration.
    KMSKeyId *string `type:"string"`

    // The Amazon Resource Name (ARN) of the database used as the source for replication.
    SourceArn *string `min:"1" type:"string"`

    // The current status of the integration.
    Status *string `type:"string" enum:"IntegrationStatus"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    Tags []*Tag `locationNameList:"Tag" type:"list"`

    // The ARN of the Redshift data warehouse used as the target for replication.
    TargetArn *string `min:"20" type:"string"`
    // contains filtered or unexported fields
}

A zero-ETL integration with Amazon Redshift.

func (ModifyIntegrationOutput) GoString

func (s ModifyIntegrationOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyIntegrationOutput) SetAdditionalEncryptionContext

func (s *ModifyIntegrationOutput) SetAdditionalEncryptionContext(v map[string]*string) *ModifyIntegrationOutput

SetAdditionalEncryptionContext sets the AdditionalEncryptionContext field's value.

func (*ModifyIntegrationOutput) SetCreateTime

func (s *ModifyIntegrationOutput) SetCreateTime(v time.Time) *ModifyIntegrationOutput

SetCreateTime sets the CreateTime field's value.

func (*ModifyIntegrationOutput) SetDataFilter

func (s *ModifyIntegrationOutput) SetDataFilter(v string) *ModifyIntegrationOutput

SetDataFilter sets the DataFilter field's value.

func (*ModifyIntegrationOutput) SetDescription

func (s *ModifyIntegrationOutput) SetDescription(v string) *ModifyIntegrationOutput

SetDescription sets the Description field's value.

func (*ModifyIntegrationOutput) SetErrors

func (s *ModifyIntegrationOutput) SetErrors(v []*IntegrationError) *ModifyIntegrationOutput

SetErrors sets the Errors field's value.

func (*ModifyIntegrationOutput) SetIntegrationArn

func (s *ModifyIntegrationOutput) SetIntegrationArn(v string) *ModifyIntegrationOutput

SetIntegrationArn sets the IntegrationArn field's value.

func (*ModifyIntegrationOutput) SetIntegrationName

func (s *ModifyIntegrationOutput) SetIntegrationName(v string) *ModifyIntegrationOutput

SetIntegrationName sets the IntegrationName field's value.

func (*ModifyIntegrationOutput) SetKMSKeyId

func (s *ModifyIntegrationOutput) SetKMSKeyId(v string) *ModifyIntegrationOutput

SetKMSKeyId sets the KMSKeyId field's value.

func (*ModifyIntegrationOutput) SetSourceArn

func (s *ModifyIntegrationOutput) SetSourceArn(v string) *ModifyIntegrationOutput

SetSourceArn sets the SourceArn field's value.

func (*ModifyIntegrationOutput) SetStatus

func (s *ModifyIntegrationOutput) SetStatus(v string) *ModifyIntegrationOutput

SetStatus sets the Status field's value.

func (*ModifyIntegrationOutput) SetTags

func (s *ModifyIntegrationOutput) SetTags(v []*Tag) *ModifyIntegrationOutput

SetTags sets the Tags field's value.

func (*ModifyIntegrationOutput) SetTargetArn

func (s *ModifyIntegrationOutput) SetTargetArn(v string) *ModifyIntegrationOutput

SetTargetArn sets the TargetArn field's value.

func (ModifyIntegrationOutput) String

func (s ModifyIntegrationOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ModifyOptionGroupInput

type ModifyOptionGroupInput struct {

    // Specifies whether to apply the change immediately or during the next maintenance
    // window for each instance associated with the option group.
    ApplyImmediately *bool `type:"boolean"`

    // The name of the option group to be modified.
    //
    // Permanent options, such as the TDE option for Oracle Advanced Security TDE,
    // can't be removed from an option group, and that option group can't be removed
    // from a DB instance once it is associated with a DB instance
    //
    // OptionGroupName is a required field
    OptionGroupName *string `type:"string" required:"true"`

    // Options in this list are added to the option group or, if already present,
    // the specified configuration is used to update the existing configuration.
    OptionsToInclude []*OptionConfiguration `locationNameList:"OptionConfiguration" type:"list"`

    // Options in this list are removed from the option group.
    OptionsToRemove []*string `type:"list"`
    // contains filtered or unexported fields
}

func (ModifyOptionGroupInput) GoString

func (s ModifyOptionGroupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyOptionGroupInput) SetApplyImmediately

func (s *ModifyOptionGroupInput) SetApplyImmediately(v bool) *ModifyOptionGroupInput

SetApplyImmediately sets the ApplyImmediately field's value.

func (*ModifyOptionGroupInput) SetOptionGroupName

func (s *ModifyOptionGroupInput) SetOptionGroupName(v string) *ModifyOptionGroupInput

SetOptionGroupName sets the OptionGroupName field's value.

func (*ModifyOptionGroupInput) SetOptionsToInclude

func (s *ModifyOptionGroupInput) SetOptionsToInclude(v []*OptionConfiguration) *ModifyOptionGroupInput

SetOptionsToInclude sets the OptionsToInclude field's value.

func (*ModifyOptionGroupInput) SetOptionsToRemove

func (s *ModifyOptionGroupInput) SetOptionsToRemove(v []*string) *ModifyOptionGroupInput

SetOptionsToRemove sets the OptionsToRemove field's value.

func (ModifyOptionGroupInput) String

func (s ModifyOptionGroupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyOptionGroupInput) Validate

func (s *ModifyOptionGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyOptionGroupOutput

type ModifyOptionGroupOutput struct {
    OptionGroup *OptionGroup `type:"structure"`
    // contains filtered or unexported fields
}

func (ModifyOptionGroupOutput) GoString

func (s ModifyOptionGroupOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyOptionGroupOutput) SetOptionGroup

func (s *ModifyOptionGroupOutput) SetOptionGroup(v *OptionGroup) *ModifyOptionGroupOutput

SetOptionGroup sets the OptionGroup field's value.

func (ModifyOptionGroupOutput) String

func (s ModifyOptionGroupOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ModifyTenantDatabaseInput

type ModifyTenantDatabaseInput struct {

    // The identifier of the DB instance that contains the tenant database that
    // you are modifying. This parameter isn't case-sensitive.
    //
    // Constraints:
    //
    //    * Must match the identifier of an existing DB instance.
    //
    // DBInstanceIdentifier is a required field
    DBInstanceIdentifier *string `type:"string" required:"true"`

    // The new password for the master user of the specified tenant database in
    // your DB instance.
    //
    // Amazon RDS operations never return the password, so this action provides
    // a way to regain access to a tenant database user if the password is lost.
    // This includes restoring privileges that might have been accidentally revoked.
    //
    // Constraints:
    //
    //    * Can include any printable ASCII character except /, " (double quote),
    //    @, & (ampersand), and ' (single quote).
    //
    // Length constraints:
    //
    //    * Must contain between 8 and 30 characters.
    //
    // MasterUserPassword is a sensitive parameter and its value will be
    // replaced with "sensitive" in string returned by ModifyTenantDatabaseInput's
    // String and GoString methods.
    MasterUserPassword *string `type:"string" sensitive:"true"`

    // The new name of the tenant database when renaming a tenant database. This
    // parameter isn’t case-sensitive.
    //
    // Constraints:
    //
    //    * Can't be the string null or any other reserved word.
    //
    //    * Can't be longer than 8 characters.
    NewTenantDBName *string `type:"string"`

    // The user-supplied name of the tenant database that you want to modify. This
    // parameter isn’t case-sensitive.
    //
    // Constraints:
    //
    //    * Must match the identifier of an existing tenant database.
    //
    // TenantDBName is a required field
    TenantDBName *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ModifyTenantDatabaseInput) GoString

func (s ModifyTenantDatabaseInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyTenantDatabaseInput) SetDBInstanceIdentifier

func (s *ModifyTenantDatabaseInput) SetDBInstanceIdentifier(v string) *ModifyTenantDatabaseInput

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*ModifyTenantDatabaseInput) SetMasterUserPassword

func (s *ModifyTenantDatabaseInput) SetMasterUserPassword(v string) *ModifyTenantDatabaseInput

SetMasterUserPassword sets the MasterUserPassword field's value.

func (*ModifyTenantDatabaseInput) SetNewTenantDBName

func (s *ModifyTenantDatabaseInput) SetNewTenantDBName(v string) *ModifyTenantDatabaseInput

SetNewTenantDBName sets the NewTenantDBName field's value.

func (*ModifyTenantDatabaseInput) SetTenantDBName

func (s *ModifyTenantDatabaseInput) SetTenantDBName(v string) *ModifyTenantDatabaseInput

SetTenantDBName sets the TenantDBName field's value.

func (ModifyTenantDatabaseInput) String

func (s ModifyTenantDatabaseInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyTenantDatabaseInput) Validate

func (s *ModifyTenantDatabaseInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyTenantDatabaseOutput

type ModifyTenantDatabaseOutput struct {

    // A tenant database in the DB instance. This data type is an element in the
    // response to the DescribeTenantDatabases action.
    TenantDatabase *TenantDatabase `type:"structure"`
    // contains filtered or unexported fields
}

func (ModifyTenantDatabaseOutput) GoString

func (s ModifyTenantDatabaseOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ModifyTenantDatabaseOutput) SetTenantDatabase

func (s *ModifyTenantDatabaseOutput) SetTenantDatabase(v *TenantDatabase) *ModifyTenantDatabaseOutput

SetTenantDatabase sets the TenantDatabase field's value.

func (ModifyTenantDatabaseOutput) String

func (s ModifyTenantDatabaseOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type Option

type Option struct {

    // If the option requires access to a port, then this DB security group allows
    // access to the port.
    DBSecurityGroupMemberships []*DBSecurityGroupMembership `locationNameList:"DBSecurityGroup" type:"list"`

    // The description of the option.
    OptionDescription *string `type:"string"`

    // The name of the option.
    OptionName *string `type:"string"`

    // The option settings for this option.
    OptionSettings []*OptionSetting `locationNameList:"OptionSetting" type:"list"`

    // The version of the option.
    OptionVersion *string `type:"string"`

    // Indicates whether this option is permanent.
    Permanent *bool `type:"boolean"`

    // Indicates whether this option is persistent.
    Persistent *bool `type:"boolean"`

    // If required, the port configured for this option to use.
    Port *int64 `type:"integer"`

    // If the option requires access to a port, then this VPC security group allows
    // access to the port.
    VpcSecurityGroupMemberships []*VpcSecurityGroupMembership `locationNameList:"VpcSecurityGroupMembership" type:"list"`
    // contains filtered or unexported fields
}

The details of an option.

func (Option) GoString

func (s Option) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Option) SetDBSecurityGroupMemberships

func (s *Option) SetDBSecurityGroupMemberships(v []*DBSecurityGroupMembership) *Option

SetDBSecurityGroupMemberships sets the DBSecurityGroupMemberships field's value.

func (*Option) SetOptionDescription

func (s *Option) SetOptionDescription(v string) *Option

SetOptionDescription sets the OptionDescription field's value.

func (*Option) SetOptionName

func (s *Option) SetOptionName(v string) *Option

SetOptionName sets the OptionName field's value.

func (*Option) SetOptionSettings

func (s *Option) SetOptionSettings(v []*OptionSetting) *Option

SetOptionSettings sets the OptionSettings field's value.

func (*Option) SetOptionVersion

func (s *Option) SetOptionVersion(v string) *Option

SetOptionVersion sets the OptionVersion field's value.

func (*Option) SetPermanent

func (s *Option) SetPermanent(v bool) *Option

SetPermanent sets the Permanent field's value.

func (*Option) SetPersistent

func (s *Option) SetPersistent(v bool) *Option

SetPersistent sets the Persistent field's value.

func (*Option) SetPort

func (s *Option) SetPort(v int64) *Option

SetPort sets the Port field's value.

func (*Option) SetVpcSecurityGroupMemberships

func (s *Option) SetVpcSecurityGroupMemberships(v []*VpcSecurityGroupMembership) *Option

SetVpcSecurityGroupMemberships sets the VpcSecurityGroupMemberships field's value.

func (Option) String

func (s Option) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type OptionConfiguration

type OptionConfiguration struct {

    // A list of DBSecurityGroupMembership name strings used for this option.
    DBSecurityGroupMemberships []*string `locationNameList:"DBSecurityGroupName" type:"list"`

    // The configuration of options to include in a group.
    //
    // OptionName is a required field
    OptionName *string `type:"string" required:"true"`

    // The option settings to include in an option group.
    OptionSettings []*OptionSetting `locationNameList:"OptionSetting" type:"list"`

    // The version for the option.
    OptionVersion *string `type:"string"`

    // The optional port for the option.
    Port *int64 `type:"integer"`

    // A list of VpcSecurityGroupMembership name strings used for this option.
    VpcSecurityGroupMemberships []*string `locationNameList:"VpcSecurityGroupId" type:"list"`
    // contains filtered or unexported fields
}

A list of all available options

func (OptionConfiguration) GoString

func (s OptionConfiguration) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OptionConfiguration) SetDBSecurityGroupMemberships

func (s *OptionConfiguration) SetDBSecurityGroupMemberships(v []*string) *OptionConfiguration

SetDBSecurityGroupMemberships sets the DBSecurityGroupMemberships field's value.

func (*OptionConfiguration) SetOptionName

func (s *OptionConfiguration) SetOptionName(v string) *OptionConfiguration

SetOptionName sets the OptionName field's value.

func (*OptionConfiguration) SetOptionSettings

func (s *OptionConfiguration) SetOptionSettings(v []*OptionSetting) *OptionConfiguration

SetOptionSettings sets the OptionSettings field's value.

func (*OptionConfiguration) SetOptionVersion

func (s *OptionConfiguration) SetOptionVersion(v string) *OptionConfiguration

SetOptionVersion sets the OptionVersion field's value.

func (*OptionConfiguration) SetPort

func (s *OptionConfiguration) SetPort(v int64) *OptionConfiguration

SetPort sets the Port field's value.

func (*OptionConfiguration) SetVpcSecurityGroupMemberships

func (s *OptionConfiguration) SetVpcSecurityGroupMemberships(v []*string) *OptionConfiguration

SetVpcSecurityGroupMemberships sets the VpcSecurityGroupMemberships field's value.

func (OptionConfiguration) String

func (s OptionConfiguration) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OptionConfiguration) Validate

func (s *OptionConfiguration) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type OptionGroup

type OptionGroup struct {

    // Indicates whether this option group can be applied to both VPC and non-VPC
    // instances. The value true indicates the option group can be applied to both
    // VPC and non-VPC instances.
    AllowsVpcAndNonVpcInstanceMemberships *bool `type:"boolean"`

    // Indicates when the option group was copied.
    CopyTimestamp *time.Time `type:"timestamp"`

    // Indicates the name of the engine that this option group can be applied to.
    EngineName *string `type:"string"`

    // Indicates the major engine version associated with this option group.
    MajorEngineVersion *string `type:"string"`

    // Specifies the Amazon Resource Name (ARN) for the option group.
    OptionGroupArn *string `type:"string"`

    // Provides a description of the option group.
    OptionGroupDescription *string `type:"string"`

    // Specifies the name of the option group.
    OptionGroupName *string `type:"string"`

    // Indicates what options are available in the option group.
    Options []*Option `locationNameList:"Option" type:"list"`

    // Specifies the Amazon Web Services account ID for the option group from which
    // this option group is copied.
    SourceAccountId *string `type:"string"`

    // Specifies the name of the option group from which this option group is copied.
    SourceOptionGroup *string `type:"string"`

    // If AllowsVpcAndNonVpcInstanceMemberships is false, this field is blank. If
    // AllowsVpcAndNonVpcInstanceMemberships is true and this field is blank, then
    // this option group can be applied to both VPC and non-VPC instances. If this
    // field contains a value, then this option group can only be applied to instances
    // that are in the VPC indicated by this field.
    VpcId *string `type:"string"`
    // contains filtered or unexported fields
}

func (OptionGroup) GoString

func (s OptionGroup) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OptionGroup) SetAllowsVpcAndNonVpcInstanceMemberships

func (s *OptionGroup) SetAllowsVpcAndNonVpcInstanceMemberships(v bool) *OptionGroup

SetAllowsVpcAndNonVpcInstanceMemberships sets the AllowsVpcAndNonVpcInstanceMemberships field's value.

func (*OptionGroup) SetCopyTimestamp

func (s *OptionGroup) SetCopyTimestamp(v time.Time) *OptionGroup

SetCopyTimestamp sets the CopyTimestamp field's value.

func (*OptionGroup) SetEngineName

func (s *OptionGroup) SetEngineName(v string) *OptionGroup

SetEngineName sets the EngineName field's value.

func (*OptionGroup) SetMajorEngineVersion

func (s *OptionGroup) SetMajorEngineVersion(v string) *OptionGroup

SetMajorEngineVersion sets the MajorEngineVersion field's value.

func (*OptionGroup) SetOptionGroupArn

func (s *OptionGroup) SetOptionGroupArn(v string) *OptionGroup

SetOptionGroupArn sets the OptionGroupArn field's value.

func (*OptionGroup) SetOptionGroupDescription

func (s *OptionGroup) SetOptionGroupDescription(v string) *OptionGroup

SetOptionGroupDescription sets the OptionGroupDescription field's value.

func (*OptionGroup) SetOptionGroupName

func (s *OptionGroup) SetOptionGroupName(v string) *OptionGroup

SetOptionGroupName sets the OptionGroupName field's value.

func (*OptionGroup) SetOptions

func (s *OptionGroup) SetOptions(v []*Option) *OptionGroup

SetOptions sets the Options field's value.

func (*OptionGroup) SetSourceAccountId

func (s *OptionGroup) SetSourceAccountId(v string) *OptionGroup

SetSourceAccountId sets the SourceAccountId field's value.

func (*OptionGroup) SetSourceOptionGroup

func (s *OptionGroup) SetSourceOptionGroup(v string) *OptionGroup

SetSourceOptionGroup sets the SourceOptionGroup field's value.

func (*OptionGroup) SetVpcId

func (s *OptionGroup) SetVpcId(v string) *OptionGroup

SetVpcId sets the VpcId field's value.

func (OptionGroup) String

func (s OptionGroup) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type OptionGroupMembership

type OptionGroupMembership struct {

    // The name of the option group that the instance belongs to.
    OptionGroupName *string `type:"string"`

    // The status of the DB instance's option group membership. Valid values are:
    // in-sync, pending-apply, pending-removal, pending-maintenance-apply, pending-maintenance-removal,
    // applying, removing, and failed.
    Status *string `type:"string"`
    // contains filtered or unexported fields
}

Provides information on the option groups the DB instance is a member of.

func (OptionGroupMembership) GoString

func (s OptionGroupMembership) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OptionGroupMembership) SetOptionGroupName

func (s *OptionGroupMembership) SetOptionGroupName(v string) *OptionGroupMembership

SetOptionGroupName sets the OptionGroupName field's value.

func (*OptionGroupMembership) SetStatus

func (s *OptionGroupMembership) SetStatus(v string) *OptionGroupMembership

SetStatus sets the Status field's value.

func (OptionGroupMembership) String

func (s OptionGroupMembership) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type OptionGroupOption

type OptionGroupOption struct {

    // Indicates whether the option can be copied across Amazon Web Services accounts.
    CopyableCrossAccount *bool `type:"boolean"`

    // If the option requires a port, specifies the default port for the option.
    DefaultPort *int64 `type:"integer"`

    // The description of the option.
    Description *string `type:"string"`

    // The name of the engine that this option can be applied to.
    EngineName *string `type:"string"`

    // Indicates the major engine version that the option is available for.
    MajorEngineVersion *string `type:"string"`

    // The minimum required engine version for the option to be applied.
    MinimumRequiredMinorEngineVersion *string `type:"string"`

    // The name of the option.
    Name *string `type:"string"`

    // The option settings that are available (and the default value) for each option
    // in an option group.
    OptionGroupOptionSettings []*OptionGroupOptionSetting `locationNameList:"OptionGroupOptionSetting" type:"list"`

    // The versions that are available for the option.
    OptionGroupOptionVersions []*OptionVersion `locationNameList:"OptionVersion" type:"list"`

    // The options that conflict with this option.
    OptionsConflictsWith []*string `locationNameList:"OptionConflictName" type:"list"`

    // The options that are prerequisites for this option.
    OptionsDependedOn []*string `locationNameList:"OptionName" type:"list"`

    // Permanent options can never be removed from an option group. An option group
    // containing a permanent option can't be removed from a DB instance.
    Permanent *bool `type:"boolean"`

    // Persistent options can't be removed from an option group while DB instances
    // are associated with the option group. If you disassociate all DB instances
    // from the option group, your can remove the persistent option from the option
    // group.
    Persistent *bool `type:"boolean"`

    // Indicates whether the option requires a port.
    PortRequired *bool `type:"boolean"`

    // If true, you must enable the Auto Minor Version Upgrade setting for your
    // DB instance before you can use this option. You can enable Auto Minor Version
    // Upgrade when you first create your DB instance, or by modifying your DB instance
    // later.
    RequiresAutoMinorEngineVersionUpgrade *bool `type:"boolean"`

    // If true, you can change the option to an earlier version of the option. This
    // only applies to options that have different versions available.
    SupportsOptionVersionDowngrade *bool `type:"boolean"`

    // If true, you can only use this option with a DB instance that is in a VPC.
    VpcOnly *bool `type:"boolean"`
    // contains filtered or unexported fields
}

Available option.

func (OptionGroupOption) GoString

func (s OptionGroupOption) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OptionGroupOption) SetCopyableCrossAccount

func (s *OptionGroupOption) SetCopyableCrossAccount(v bool) *OptionGroupOption

SetCopyableCrossAccount sets the CopyableCrossAccount field's value.

func (*OptionGroupOption) SetDefaultPort

func (s *OptionGroupOption) SetDefaultPort(v int64) *OptionGroupOption

SetDefaultPort sets the DefaultPort field's value.

func (*OptionGroupOption) SetDescription

func (s *OptionGroupOption) SetDescription(v string) *OptionGroupOption

SetDescription sets the Description field's value.

func (*OptionGroupOption) SetEngineName

func (s *OptionGroupOption) SetEngineName(v string) *OptionGroupOption

SetEngineName sets the EngineName field's value.

func (*OptionGroupOption) SetMajorEngineVersion

func (s *OptionGroupOption) SetMajorEngineVersion(v string) *OptionGroupOption

SetMajorEngineVersion sets the MajorEngineVersion field's value.

func (*OptionGroupOption) SetMinimumRequiredMinorEngineVersion

func (s *OptionGroupOption) SetMinimumRequiredMinorEngineVersion(v string) *OptionGroupOption

SetMinimumRequiredMinorEngineVersion sets the MinimumRequiredMinorEngineVersion field's value.

func (*OptionGroupOption) SetName

func (s *OptionGroupOption) SetName(v string) *OptionGroupOption

SetName sets the Name field's value.

func (*OptionGroupOption) SetOptionGroupOptionSettings

func (s *OptionGroupOption) SetOptionGroupOptionSettings(v []*OptionGroupOptionSetting) *OptionGroupOption

SetOptionGroupOptionSettings sets the OptionGroupOptionSettings field's value.

func (*OptionGroupOption) SetOptionGroupOptionVersions

func (s *OptionGroupOption) SetOptionGroupOptionVersions(v []*OptionVersion) *OptionGroupOption

SetOptionGroupOptionVersions sets the OptionGroupOptionVersions field's value.

func (*OptionGroupOption) SetOptionsConflictsWith

func (s *OptionGroupOption) SetOptionsConflictsWith(v []*string) *OptionGroupOption

SetOptionsConflictsWith sets the OptionsConflictsWith field's value.

func (*OptionGroupOption) SetOptionsDependedOn

func (s *OptionGroupOption) SetOptionsDependedOn(v []*string) *OptionGroupOption

SetOptionsDependedOn sets the OptionsDependedOn field's value.

func (*OptionGroupOption) SetPermanent

func (s *OptionGroupOption) SetPermanent(v bool) *OptionGroupOption

SetPermanent sets the Permanent field's value.

func (*OptionGroupOption) SetPersistent

func (s *OptionGroupOption) SetPersistent(v bool) *OptionGroupOption

SetPersistent sets the Persistent field's value.

func (*OptionGroupOption) SetPortRequired

func (s *OptionGroupOption) SetPortRequired(v bool) *OptionGroupOption

SetPortRequired sets the PortRequired field's value.

func (*OptionGroupOption) SetRequiresAutoMinorEngineVersionUpgrade

func (s *OptionGroupOption) SetRequiresAutoMinorEngineVersionUpgrade(v bool) *OptionGroupOption

SetRequiresAutoMinorEngineVersionUpgrade sets the RequiresAutoMinorEngineVersionUpgrade field's value.

func (*OptionGroupOption) SetSupportsOptionVersionDowngrade

func (s *OptionGroupOption) SetSupportsOptionVersionDowngrade(v bool) *OptionGroupOption

SetSupportsOptionVersionDowngrade sets the SupportsOptionVersionDowngrade field's value.

func (*OptionGroupOption) SetVpcOnly

func (s *OptionGroupOption) SetVpcOnly(v bool) *OptionGroupOption

SetVpcOnly sets the VpcOnly field's value.

func (OptionGroupOption) String

func (s OptionGroupOption) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type OptionGroupOptionSetting

type OptionGroupOptionSetting struct {

    // Indicates the acceptable values for the option group option.
    AllowedValues *string `type:"string"`

    // The DB engine specific parameter type for the option group option.
    ApplyType *string `type:"string"`

    // The default value for the option group option.
    DefaultValue *string `type:"string"`

    // Indicates whether this option group option can be changed from the default
    // value.
    IsModifiable *bool `type:"boolean"`

    // Indicates whether a value must be specified for this option setting of the
    // option group option.
    IsRequired *bool `type:"boolean"`

    // The minimum DB engine version required for the corresponding allowed value
    // for this option setting.
    MinimumEngineVersionPerAllowedValue []*MinimumEngineVersionPerAllowedValue `locationNameList:"MinimumEngineVersionPerAllowedValue" type:"list"`

    // The description of the option group option.
    SettingDescription *string `type:"string"`

    // The name of the option group option.
    SettingName *string `type:"string"`
    // contains filtered or unexported fields
}

Option group option settings are used to display settings available for each option with their default values and other information. These values are used with the DescribeOptionGroupOptions action.

func (OptionGroupOptionSetting) GoString

func (s OptionGroupOptionSetting) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OptionGroupOptionSetting) SetAllowedValues

func (s *OptionGroupOptionSetting) SetAllowedValues(v string) *OptionGroupOptionSetting

SetAllowedValues sets the AllowedValues field's value.

func (*OptionGroupOptionSetting) SetApplyType

func (s *OptionGroupOptionSetting) SetApplyType(v string) *OptionGroupOptionSetting

SetApplyType sets the ApplyType field's value.

func (*OptionGroupOptionSetting) SetDefaultValue

func (s *OptionGroupOptionSetting) SetDefaultValue(v string) *OptionGroupOptionSetting

SetDefaultValue sets the DefaultValue field's value.

func (*OptionGroupOptionSetting) SetIsModifiable

func (s *OptionGroupOptionSetting) SetIsModifiable(v bool) *OptionGroupOptionSetting

SetIsModifiable sets the IsModifiable field's value.

func (*OptionGroupOptionSetting) SetIsRequired

func (s *OptionGroupOptionSetting) SetIsRequired(v bool) *OptionGroupOptionSetting

SetIsRequired sets the IsRequired field's value.

func (*OptionGroupOptionSetting) SetMinimumEngineVersionPerAllowedValue

func (s *OptionGroupOptionSetting) SetMinimumEngineVersionPerAllowedValue(v []*MinimumEngineVersionPerAllowedValue) *OptionGroupOptionSetting

SetMinimumEngineVersionPerAllowedValue sets the MinimumEngineVersionPerAllowedValue field's value.

func (*OptionGroupOptionSetting) SetSettingDescription

func (s *OptionGroupOptionSetting) SetSettingDescription(v string) *OptionGroupOptionSetting

SetSettingDescription sets the SettingDescription field's value.

func (*OptionGroupOptionSetting) SetSettingName

func (s *OptionGroupOptionSetting) SetSettingName(v string) *OptionGroupOptionSetting

SetSettingName sets the SettingName field's value.

func (OptionGroupOptionSetting) String

func (s OptionGroupOptionSetting) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type OptionSetting

type OptionSetting struct {

    // The allowed values of the option setting.
    AllowedValues *string `type:"string"`

    // The DB engine specific parameter type.
    ApplyType *string `type:"string"`

    // The data type of the option setting.
    DataType *string `type:"string"`

    // The default value of the option setting.
    DefaultValue *string `type:"string"`

    // The description of the option setting.
    Description *string `type:"string"`

    // Indicates whether the option setting is part of a collection.
    IsCollection *bool `type:"boolean"`

    // Indicates whether the option setting can be modified from the default.
    IsModifiable *bool `type:"boolean"`

    // The name of the option that has settings that you can set.
    Name *string `type:"string"`

    // The current value of the option setting.
    Value *string `type:"string"`
    // contains filtered or unexported fields
}

Option settings are the actual settings being applied or configured for that option. It is used when you modify an option group or describe option groups. For example, the NATIVE_NETWORK_ENCRYPTION option has a setting called SQLNET.ENCRYPTION_SERVER that can have several different values.

func (OptionSetting) GoString

func (s OptionSetting) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OptionSetting) SetAllowedValues

func (s *OptionSetting) SetAllowedValues(v string) *OptionSetting

SetAllowedValues sets the AllowedValues field's value.

func (*OptionSetting) SetApplyType

func (s *OptionSetting) SetApplyType(v string) *OptionSetting

SetApplyType sets the ApplyType field's value.

func (*OptionSetting) SetDataType

func (s *OptionSetting) SetDataType(v string) *OptionSetting

SetDataType sets the DataType field's value.

func (*OptionSetting) SetDefaultValue

func (s *OptionSetting) SetDefaultValue(v string) *OptionSetting

SetDefaultValue sets the DefaultValue field's value.

func (*OptionSetting) SetDescription

func (s *OptionSetting) SetDescription(v string) *OptionSetting

SetDescription sets the Description field's value.

func (*OptionSetting) SetIsCollection

func (s *OptionSetting) SetIsCollection(v bool) *OptionSetting

SetIsCollection sets the IsCollection field's value.

func (*OptionSetting) SetIsModifiable

func (s *OptionSetting) SetIsModifiable(v bool) *OptionSetting

SetIsModifiable sets the IsModifiable field's value.

func (*OptionSetting) SetName

func (s *OptionSetting) SetName(v string) *OptionSetting

SetName sets the Name field's value.

func (*OptionSetting) SetValue

func (s *OptionSetting) SetValue(v string) *OptionSetting

SetValue sets the Value field's value.

func (OptionSetting) String

func (s OptionSetting) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type OptionVersion

type OptionVersion struct {

    // Indicates whether the version is the default version of the option.
    IsDefault *bool `type:"boolean"`

    // The version of the option.
    Version *string `type:"string"`
    // contains filtered or unexported fields
}

The version for an option. Option group option versions are returned by the DescribeOptionGroupOptions action.

func (OptionVersion) GoString

func (s OptionVersion) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OptionVersion) SetIsDefault

func (s *OptionVersion) SetIsDefault(v bool) *OptionVersion

SetIsDefault sets the IsDefault field's value.

func (*OptionVersion) SetVersion

func (s *OptionVersion) SetVersion(v string) *OptionVersion

SetVersion sets the Version field's value.

func (OptionVersion) String

func (s OptionVersion) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type OrderableDBInstanceOption

type OrderableDBInstanceOption struct {

    // The Availability Zone group for a DB instance.
    AvailabilityZoneGroup *string `type:"string"`

    // A list of Availability Zones for a DB instance.
    AvailabilityZones []*AvailabilityZone `locationNameList:"AvailabilityZone" type:"list"`

    // A list of the available processor features for the DB instance class of a
    // DB instance.
    AvailableProcessorFeatures []*AvailableProcessorFeature `locationNameList:"AvailableProcessorFeature" type:"list"`

    // The DB instance class for a DB instance.
    DBInstanceClass *string `type:"string"`

    // The engine type of a DB instance.
    Engine *string `type:"string"`

    // The engine version of a DB instance.
    EngineVersion *string `type:"string"`

    // The license model for a DB instance.
    LicenseModel *string `type:"string"`

    // Maximum total provisioned IOPS for a DB instance.
    MaxIopsPerDbInstance *int64 `type:"integer"`

    // Maximum provisioned IOPS per GiB for a DB instance.
    MaxIopsPerGib *float64 `type:"double"`

    // Maximum storage size for a DB instance.
    MaxStorageSize *int64 `type:"integer"`

    // Maximum storage throughput for a DB instance.
    MaxStorageThroughputPerDbInstance *int64 `type:"integer"`

    // Maximum storage throughput to provisioned IOPS ratio for a DB instance.
    MaxStorageThroughputPerIops *float64 `type:"double"`

    // Minimum total provisioned IOPS for a DB instance.
    MinIopsPerDbInstance *int64 `type:"integer"`

    // Minimum provisioned IOPS per GiB for a DB instance.
    MinIopsPerGib *float64 `type:"double"`

    // Minimum storage size for a DB instance.
    MinStorageSize *int64 `type:"integer"`

    // Minimum storage throughput for a DB instance.
    MinStorageThroughputPerDbInstance *int64 `type:"integer"`

    // Minimum storage throughput to provisioned IOPS ratio for a DB instance.
    MinStorageThroughputPerIops *float64 `type:"double"`

    // Indicates whether a DB instance is Multi-AZ capable.
    MultiAZCapable *bool `type:"boolean"`

    // Indicates whether a DB instance supports RDS on Outposts.
    //
    // For more information about RDS on Outposts, see Amazon RDS on Amazon Web
    // Services Outposts (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html)
    // in the Amazon RDS User Guide.
    OutpostCapable *bool `type:"boolean"`

    // Indicates whether a DB instance can have a read replica.
    ReadReplicaCapable *bool `type:"boolean"`

    // The storage type for a DB instance.
    StorageType *string `type:"string"`

    // The list of supported modes for Database Activity Streams. Aurora PostgreSQL
    // returns the value [sync, async]. Aurora MySQL and RDS for Oracle return [async]
    // only. If Database Activity Streams isn't supported, the return value is an
    // empty list.
    SupportedActivityStreamModes []*string `type:"list"`

    // A list of the supported DB engine modes.
    SupportedEngineModes []*string `type:"list"`

    // The network types supported by the DB instance (IPV4 or DUAL).
    //
    // A DB instance can support only the IPv4 protocol or the IPv4 and the IPv6
    // protocols (DUAL).
    //
    // For more information, see Working with a DB instance in a VPC (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html)
    // in the Amazon RDS User Guide.
    SupportedNetworkTypes []*string `type:"list"`

    // Indicates whether DB instances can be configured as a Multi-AZ DB cluster.
    //
    // For more information on Multi-AZ DB clusters, see Multi-AZ deployments with
    // two readable standby DB instances (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html)
    // in the Amazon RDS User Guide.
    SupportsClusters *bool `type:"boolean"`

    // Indicates whether a DB instance supports using a dedicated log volume (DLV).
    SupportsDedicatedLogVolume *bool `type:"boolean"`

    // Indicates whether a DB instance supports Enhanced Monitoring at intervals
    // from 1 to 60 seconds.
    SupportsEnhancedMonitoring *bool `type:"boolean"`

    // Indicates whether you can use Aurora global databases with a specific combination
    // of other DB engine attributes.
    SupportsGlobalDatabases *bool `type:"boolean"`

    // Indicates whether a DB instance supports IAM database authentication.
    SupportsIAMDatabaseAuthentication *bool `type:"boolean"`

    // Indicates whether a DB instance supports provisioned IOPS.
    SupportsIops *bool `type:"boolean"`

    // Indicates whether a DB instance supports Kerberos Authentication.
    SupportsKerberosAuthentication *bool `type:"boolean"`

    // Indicates whether a DB instance supports Performance Insights.
    SupportsPerformanceInsights *bool `type:"boolean"`

    // Indicates whether Amazon RDS can automatically scale storage for DB instances
    // that use the specified DB instance class.
    SupportsStorageAutoscaling *bool `type:"boolean"`

    // Indicates whether a DB instance supports encrypted storage.
    SupportsStorageEncryption *bool `type:"boolean"`

    // Indicates whether a DB instance supports storage throughput.
    SupportsStorageThroughput *bool `type:"boolean"`

    // Indicates whether a DB instance is in a VPC.
    Vpc *bool `type:"boolean"`
    // contains filtered or unexported fields
}

Contains a list of available options for a DB instance.

This data type is used as a response element in the DescribeOrderableDBInstanceOptions action.

func (OrderableDBInstanceOption) GoString

func (s OrderableDBInstanceOption) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OrderableDBInstanceOption) SetAvailabilityZoneGroup

func (s *OrderableDBInstanceOption) SetAvailabilityZoneGroup(v string) *OrderableDBInstanceOption

SetAvailabilityZoneGroup sets the AvailabilityZoneGroup field's value.

func (*OrderableDBInstanceOption) SetAvailabilityZones

func (s *OrderableDBInstanceOption) SetAvailabilityZones(v []*AvailabilityZone) *OrderableDBInstanceOption

SetAvailabilityZones sets the AvailabilityZones field's value.

func (*OrderableDBInstanceOption) SetAvailableProcessorFeatures

func (s *OrderableDBInstanceOption) SetAvailableProcessorFeatures(v []*AvailableProcessorFeature) *OrderableDBInstanceOption

SetAvailableProcessorFeatures sets the AvailableProcessorFeatures field's value.

func (*OrderableDBInstanceOption) SetDBInstanceClass

func (s *OrderableDBInstanceOption) SetDBInstanceClass(v string) *OrderableDBInstanceOption

SetDBInstanceClass sets the DBInstanceClass field's value.

func (*OrderableDBInstanceOption) SetEngine

func (s *OrderableDBInstanceOption) SetEngine(v string) *OrderableDBInstanceOption

SetEngine sets the Engine field's value.

func (*OrderableDBInstanceOption) SetEngineVersion

func (s *OrderableDBInstanceOption) SetEngineVersion(v string) *OrderableDBInstanceOption

SetEngineVersion sets the EngineVersion field's value.

func (*OrderableDBInstanceOption) SetLicenseModel

func (s *OrderableDBInstanceOption) SetLicenseModel(v string) *OrderableDBInstanceOption

SetLicenseModel sets the LicenseModel field's value.

func (*OrderableDBInstanceOption) SetMaxIopsPerDbInstance

func (s *OrderableDBInstanceOption) SetMaxIopsPerDbInstance(v int64) *OrderableDBInstanceOption

SetMaxIopsPerDbInstance sets the MaxIopsPerDbInstance field's value.

func (*OrderableDBInstanceOption) SetMaxIopsPerGib

func (s *OrderableDBInstanceOption) SetMaxIopsPerGib(v float64) *OrderableDBInstanceOption

SetMaxIopsPerGib sets the MaxIopsPerGib field's value.

func (*OrderableDBInstanceOption) SetMaxStorageSize

func (s *OrderableDBInstanceOption) SetMaxStorageSize(v int64) *OrderableDBInstanceOption

SetMaxStorageSize sets the MaxStorageSize field's value.

func (*OrderableDBInstanceOption) SetMaxStorageThroughputPerDbInstance

func (s *OrderableDBInstanceOption) SetMaxStorageThroughputPerDbInstance(v int64) *OrderableDBInstanceOption

SetMaxStorageThroughputPerDbInstance sets the MaxStorageThroughputPerDbInstance field's value.

func (*OrderableDBInstanceOption) SetMaxStorageThroughputPerIops

func (s *OrderableDBInstanceOption) SetMaxStorageThroughputPerIops(v float64) *OrderableDBInstanceOption

SetMaxStorageThroughputPerIops sets the MaxStorageThroughputPerIops field's value.

func (*OrderableDBInstanceOption) SetMinIopsPerDbInstance

func (s *OrderableDBInstanceOption) SetMinIopsPerDbInstance(v int64) *OrderableDBInstanceOption

SetMinIopsPerDbInstance sets the MinIopsPerDbInstance field's value.

func (*OrderableDBInstanceOption) SetMinIopsPerGib

func (s *OrderableDBInstanceOption) SetMinIopsPerGib(v float64) *OrderableDBInstanceOption

SetMinIopsPerGib sets the MinIopsPerGib field's value.

func (*OrderableDBInstanceOption) SetMinStorageSize

func (s *OrderableDBInstanceOption) SetMinStorageSize(v int64) *OrderableDBInstanceOption

SetMinStorageSize sets the MinStorageSize field's value.

func (*OrderableDBInstanceOption) SetMinStorageThroughputPerDbInstance

func (s *OrderableDBInstanceOption) SetMinStorageThroughputPerDbInstance(v int64) *OrderableDBInstanceOption

SetMinStorageThroughputPerDbInstance sets the MinStorageThroughputPerDbInstance field's value.

func (*OrderableDBInstanceOption) SetMinStorageThroughputPerIops

func (s *OrderableDBInstanceOption) SetMinStorageThroughputPerIops(v float64) *OrderableDBInstanceOption

SetMinStorageThroughputPerIops sets the MinStorageThroughputPerIops field's value.

func (*OrderableDBInstanceOption) SetMultiAZCapable

func (s *OrderableDBInstanceOption) SetMultiAZCapable(v bool) *OrderableDBInstanceOption

SetMultiAZCapable sets the MultiAZCapable field's value.

func (*OrderableDBInstanceOption) SetOutpostCapable

func (s *OrderableDBInstanceOption) SetOutpostCapable(v bool) *OrderableDBInstanceOption

SetOutpostCapable sets the OutpostCapable field's value.

func (*OrderableDBInstanceOption) SetReadReplicaCapable

func (s *OrderableDBInstanceOption) SetReadReplicaCapable(v bool) *OrderableDBInstanceOption

SetReadReplicaCapable sets the ReadReplicaCapable field's value.

func (*OrderableDBInstanceOption) SetStorageType

func (s *OrderableDBInstanceOption) SetStorageType(v string) *OrderableDBInstanceOption

SetStorageType sets the StorageType field's value.

func (*OrderableDBInstanceOption) SetSupportedActivityStreamModes

func (s *OrderableDBInstanceOption) SetSupportedActivityStreamModes(v []*string) *OrderableDBInstanceOption

SetSupportedActivityStreamModes sets the SupportedActivityStreamModes field's value.

func (*OrderableDBInstanceOption) SetSupportedEngineModes

func (s *OrderableDBInstanceOption) SetSupportedEngineModes(v []*string) *OrderableDBInstanceOption

SetSupportedEngineModes sets the SupportedEngineModes field's value.

func (*OrderableDBInstanceOption) SetSupportedNetworkTypes

func (s *OrderableDBInstanceOption) SetSupportedNetworkTypes(v []*string) *OrderableDBInstanceOption

SetSupportedNetworkTypes sets the SupportedNetworkTypes field's value.

func (*OrderableDBInstanceOption) SetSupportsClusters

func (s *OrderableDBInstanceOption) SetSupportsClusters(v bool) *OrderableDBInstanceOption

SetSupportsClusters sets the SupportsClusters field's value.

func (*OrderableDBInstanceOption) SetSupportsDedicatedLogVolume

func (s *OrderableDBInstanceOption) SetSupportsDedicatedLogVolume(v bool) *OrderableDBInstanceOption

SetSupportsDedicatedLogVolume sets the SupportsDedicatedLogVolume field's value.

func (*OrderableDBInstanceOption) SetSupportsEnhancedMonitoring

func (s *OrderableDBInstanceOption) SetSupportsEnhancedMonitoring(v bool) *OrderableDBInstanceOption

SetSupportsEnhancedMonitoring sets the SupportsEnhancedMonitoring field's value.

func (*OrderableDBInstanceOption) SetSupportsGlobalDatabases

func (s *OrderableDBInstanceOption) SetSupportsGlobalDatabases(v bool) *OrderableDBInstanceOption

SetSupportsGlobalDatabases sets the SupportsGlobalDatabases field's value.

func (*OrderableDBInstanceOption) SetSupportsIAMDatabaseAuthentication

func (s *OrderableDBInstanceOption) SetSupportsIAMDatabaseAuthentication(v bool) *OrderableDBInstanceOption

SetSupportsIAMDatabaseAuthentication sets the SupportsIAMDatabaseAuthentication field's value.

func (*OrderableDBInstanceOption) SetSupportsIops

func (s *OrderableDBInstanceOption) SetSupportsIops(v bool) *OrderableDBInstanceOption

SetSupportsIops sets the SupportsIops field's value.

func (*OrderableDBInstanceOption) SetSupportsKerberosAuthentication

func (s *OrderableDBInstanceOption) SetSupportsKerberosAuthentication(v bool) *OrderableDBInstanceOption

SetSupportsKerberosAuthentication sets the SupportsKerberosAuthentication field's value.

func (*OrderableDBInstanceOption) SetSupportsPerformanceInsights

func (s *OrderableDBInstanceOption) SetSupportsPerformanceInsights(v bool) *OrderableDBInstanceOption

SetSupportsPerformanceInsights sets the SupportsPerformanceInsights field's value.

func (*OrderableDBInstanceOption) SetSupportsStorageAutoscaling

func (s *OrderableDBInstanceOption) SetSupportsStorageAutoscaling(v bool) *OrderableDBInstanceOption

SetSupportsStorageAutoscaling sets the SupportsStorageAutoscaling field's value.

func (*OrderableDBInstanceOption) SetSupportsStorageEncryption

func (s *OrderableDBInstanceOption) SetSupportsStorageEncryption(v bool) *OrderableDBInstanceOption

SetSupportsStorageEncryption sets the SupportsStorageEncryption field's value.

func (*OrderableDBInstanceOption) SetSupportsStorageThroughput

func (s *OrderableDBInstanceOption) SetSupportsStorageThroughput(v bool) *OrderableDBInstanceOption

SetSupportsStorageThroughput sets the SupportsStorageThroughput field's value.

func (*OrderableDBInstanceOption) SetVpc

func (s *OrderableDBInstanceOption) SetVpc(v bool) *OrderableDBInstanceOption

SetVpc sets the Vpc field's value.

func (OrderableDBInstanceOption) String

func (s OrderableDBInstanceOption) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type Outpost

type Outpost struct {

    // The Amazon Resource Name (ARN) of the Outpost.
    Arn *string `type:"string"`
    // contains filtered or unexported fields
}

A data type that represents an Outpost.

For more information about RDS on Outposts, see Amazon RDS on Amazon Web Services Outposts (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html) in the Amazon RDS User Guide.

func (Outpost) GoString

func (s Outpost) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Outpost) SetArn

func (s *Outpost) SetArn(v string) *Outpost

SetArn sets the Arn field's value.

func (Outpost) String

func (s Outpost) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type Parameter

type Parameter struct {

    // Specifies the valid range of values for the parameter.
    AllowedValues *string `type:"string"`

    // Indicates when to apply parameter updates.
    ApplyMethod *string `type:"string" enum:"ApplyMethod"`

    // Specifies the engine specific parameters type.
    ApplyType *string `type:"string"`

    // Specifies the valid data type for the parameter.
    DataType *string `type:"string"`

    // Provides a description of the parameter.
    Description *string `type:"string"`

    // Indicates whether (true) or not (false) the parameter can be modified. Some
    // parameters have security or operational implications that prevent them from
    // being changed.
    IsModifiable *bool `type:"boolean"`

    // The earliest engine version to which the parameter can apply.
    MinimumEngineVersion *string `type:"string"`

    // The name of the parameter.
    ParameterName *string `type:"string"`

    // The value of the parameter.
    ParameterValue *string `type:"string"`

    // The source of the parameter value.
    Source *string `type:"string"`

    // The valid DB engine modes.
    SupportedEngineModes []*string `type:"list"`
    // contains filtered or unexported fields
}

This data type is used as a request parameter in the ModifyDBParameterGroup and ResetDBParameterGroup actions.

This data type is used as a response element in the DescribeEngineDefaultParameters and DescribeDBParameters actions.

func (Parameter) GoString

func (s Parameter) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Parameter) SetAllowedValues

func (s *Parameter) SetAllowedValues(v string) *Parameter

SetAllowedValues sets the AllowedValues field's value.

func (*Parameter) SetApplyMethod

func (s *Parameter) SetApplyMethod(v string) *Parameter

SetApplyMethod sets the ApplyMethod field's value.

func (*Parameter) SetApplyType

func (s *Parameter) SetApplyType(v string) *Parameter

SetApplyType sets the ApplyType field's value.

func (*Parameter) SetDataType

func (s *Parameter) SetDataType(v string) *Parameter

SetDataType sets the DataType field's value.

func (*Parameter) SetDescription

func (s *Parameter) SetDescription(v string) *Parameter

SetDescription sets the Description field's value.

func (*Parameter) SetIsModifiable

func (s *Parameter) SetIsModifiable(v bool) *Parameter

SetIsModifiable sets the IsModifiable field's value.

func (*Parameter) SetMinimumEngineVersion

func (s *Parameter) SetMinimumEngineVersion(v string) *Parameter

SetMinimumEngineVersion sets the MinimumEngineVersion field's value.

func (*Parameter) SetParameterName

func (s *Parameter) SetParameterName(v string) *Parameter

SetParameterName sets the ParameterName field's value.

func (*Parameter) SetParameterValue

func (s *Parameter) SetParameterValue(v string) *Parameter

SetParameterValue sets the ParameterValue field's value.

func (*Parameter) SetSource

func (s *Parameter) SetSource(v string) *Parameter

SetSource sets the Source field's value.

func (*Parameter) SetSupportedEngineModes

func (s *Parameter) SetSupportedEngineModes(v []*string) *Parameter

SetSupportedEngineModes sets the SupportedEngineModes field's value.

func (Parameter) String

func (s Parameter) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PendingCloudwatchLogsExports

type PendingCloudwatchLogsExports struct {

    // Log types that are in the process of being enabled. After they are enabled,
    // these log types are exported to CloudWatch Logs.
    LogTypesToDisable []*string `type:"list"`

    // Log types that are in the process of being deactivated. After they are deactivated,
    // these log types aren't exported to CloudWatch Logs.
    LogTypesToEnable []*string `type:"list"`
    // contains filtered or unexported fields
}

A list of the log types whose configuration is still pending. In other words, these log types are in the process of being activated or deactivated.

func (PendingCloudwatchLogsExports) GoString

func (s PendingCloudwatchLogsExports) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PendingCloudwatchLogsExports) SetLogTypesToDisable

func (s *PendingCloudwatchLogsExports) SetLogTypesToDisable(v []*string) *PendingCloudwatchLogsExports

SetLogTypesToDisable sets the LogTypesToDisable field's value.

func (*PendingCloudwatchLogsExports) SetLogTypesToEnable

func (s *PendingCloudwatchLogsExports) SetLogTypesToEnable(v []*string) *PendingCloudwatchLogsExports

SetLogTypesToEnable sets the LogTypesToEnable field's value.

func (PendingCloudwatchLogsExports) String

func (s PendingCloudwatchLogsExports) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PendingMaintenanceAction

type PendingMaintenanceAction struct {

    // The type of pending maintenance action that is available for the resource.
    // Valid actions are system-update, db-upgrade, hardware-maintenance, and ca-certificate-rotation.
    Action *string `type:"string"`

    // The date of the maintenance window when the action is applied. The maintenance
    // action is applied to the resource during its first maintenance window after
    // this date.
    AutoAppliedAfterDate *time.Time `type:"timestamp"`

    // The effective date when the pending maintenance action is applied to the
    // resource. This date takes into account opt-in requests received from the
    // ApplyPendingMaintenanceAction API, the AutoAppliedAfterDate, and the ForcedApplyDate.
    // This value is blank if an opt-in request has not been received and nothing
    // has been specified as AutoAppliedAfterDate or ForcedApplyDate.
    CurrentApplyDate *time.Time `type:"timestamp"`

    // A description providing more detail about the maintenance action.
    Description *string `type:"string"`

    // The date when the maintenance action is automatically applied.
    //
    // On this date, the maintenance action is applied to the resource as soon as
    // possible, regardless of the maintenance window for the resource. There might
    // be a delay of one or more days from this date before the maintenance action
    // is applied.
    ForcedApplyDate *time.Time `type:"timestamp"`

    // Indicates the type of opt-in request that has been received for the resource.
    OptInStatus *string `type:"string"`
    // contains filtered or unexported fields
}

Provides information about a pending maintenance action for a resource.

func (PendingMaintenanceAction) GoString

func (s PendingMaintenanceAction) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PendingMaintenanceAction) SetAction

func (s *PendingMaintenanceAction) SetAction(v string) *PendingMaintenanceAction

SetAction sets the Action field's value.

func (*PendingMaintenanceAction) SetAutoAppliedAfterDate

func (s *PendingMaintenanceAction) SetAutoAppliedAfterDate(v time.Time) *PendingMaintenanceAction

SetAutoAppliedAfterDate sets the AutoAppliedAfterDate field's value.

func (*PendingMaintenanceAction) SetCurrentApplyDate

func (s *PendingMaintenanceAction) SetCurrentApplyDate(v time.Time) *PendingMaintenanceAction

SetCurrentApplyDate sets the CurrentApplyDate field's value.

func (*PendingMaintenanceAction) SetDescription

func (s *PendingMaintenanceAction) SetDescription(v string) *PendingMaintenanceAction

SetDescription sets the Description field's value.

func (*PendingMaintenanceAction) SetForcedApplyDate

func (s *PendingMaintenanceAction) SetForcedApplyDate(v time.Time) *PendingMaintenanceAction

SetForcedApplyDate sets the ForcedApplyDate field's value.

func (*PendingMaintenanceAction) SetOptInStatus

func (s *PendingMaintenanceAction) SetOptInStatus(v string) *PendingMaintenanceAction

SetOptInStatus sets the OptInStatus field's value.

func (PendingMaintenanceAction) String

func (s PendingMaintenanceAction) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PendingModifiedValues

type PendingModifiedValues struct {

    // The allocated storage size for the DB instance specified in gibibytes (GiB).
    AllocatedStorage *int64 `type:"integer"`

    // The automation mode of the RDS Custom DB instance: full or all-paused. If
    // full, the DB instance automates monitoring and instance recovery. If all-paused,
    // the instance pauses automation for the duration set by --resume-full-automation-mode-minutes.
    AutomationMode *string `type:"string" enum:"AutomationMode"`

    // The number of days for which automated backups are retained.
    BackupRetentionPeriod *int64 `type:"integer"`

    // The identifier of the CA certificate for the DB instance.
    //
    // For more information, see Using SSL/TLS to encrypt a connection to a DB instance
    // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html)
    // in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to
    // a DB cluster (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html)
    // in the Amazon Aurora User Guide.
    CACertificateIdentifier *string `type:"string"`

    // The name of the compute and memory capacity class for the DB instance.
    DBInstanceClass *string `type:"string"`

    // The database identifier for the DB instance.
    DBInstanceIdentifier *string `type:"string"`

    // The DB subnet group for the DB instance.
    DBSubnetGroupName *string `type:"string"`

    // Indicates whether the DB instance has a dedicated log volume (DLV) enabled.>
    DedicatedLogVolume *bool `type:"boolean"`

    // The database engine of the DB instance.
    Engine *string `type:"string"`

    // The database engine version.
    EngineVersion *string `type:"string"`

    // Indicates whether mapping of Amazon Web Services Identity and Access Management
    // (IAM) accounts to database accounts is enabled.
    IAMDatabaseAuthenticationEnabled *bool `type:"boolean"`

    // The Provisioned IOPS value for the DB instance.
    Iops *int64 `type:"integer"`

    // The license model for the DB instance.
    //
    // Valid values: license-included | bring-your-own-license | general-public-license
    LicenseModel *string `type:"string"`

    // The master credentials for the DB instance.
    MasterUserPassword *string `type:"string"`

    // Indicates whether the Single-AZ DB instance will change to a Multi-AZ deployment.
    MultiAZ *bool `type:"boolean"`

    // Indicates whether the DB instance will change to the multi-tenant configuration
    // (TRUE) or the single-tenant configuration (FALSE).
    MultiTenant *bool `type:"boolean"`

    // A list of the log types whose configuration is still pending. In other words,
    // these log types are in the process of being activated or deactivated.
    PendingCloudwatchLogsExports *PendingCloudwatchLogsExports `type:"structure"`

    // The port for the DB instance.
    Port *int64 `type:"integer"`

    // The number of CPU cores and the number of threads per core for the DB instance
    // class of the DB instance.
    ProcessorFeatures []*ProcessorFeature `locationNameList:"ProcessorFeature" type:"list"`

    // The number of minutes to pause the automation. When the time period ends,
    // RDS Custom resumes full automation. The minimum value is 60 (default). The
    // maximum value is 1,440.
    ResumeFullAutomationModeTime *time.Time `type:"timestamp"`

    // The storage throughput of the DB instance.
    StorageThroughput *int64 `type:"integer"`

    // The storage type of the DB instance.
    StorageType *string `type:"string"`
    // contains filtered or unexported fields
}

This data type is used as a response element in the ModifyDBInstance operation and contains changes that will be applied during the next maintenance window.

func (PendingModifiedValues) GoString

func (s PendingModifiedValues) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PendingModifiedValues) SetAllocatedStorage

func (s *PendingModifiedValues) SetAllocatedStorage(v int64) *PendingModifiedValues

SetAllocatedStorage sets the AllocatedStorage field's value.

func (*PendingModifiedValues) SetAutomationMode

func (s *PendingModifiedValues) SetAutomationMode(v string) *PendingModifiedValues

SetAutomationMode sets the AutomationMode field's value.

func (*PendingModifiedValues) SetBackupRetentionPeriod

func (s *PendingModifiedValues) SetBackupRetentionPeriod(v int64) *PendingModifiedValues

SetBackupRetentionPeriod sets the BackupRetentionPeriod field's value.

func (*PendingModifiedValues) SetCACertificateIdentifier

func (s *PendingModifiedValues) SetCACertificateIdentifier(v string) *PendingModifiedValues

SetCACertificateIdentifier sets the CACertificateIdentifier field's value.

func (*PendingModifiedValues) SetDBInstanceClass

func (s *PendingModifiedValues) SetDBInstanceClass(v string) *PendingModifiedValues

SetDBInstanceClass sets the DBInstanceClass field's value.

func (*PendingModifiedValues) SetDBInstanceIdentifier

func (s *PendingModifiedValues) SetDBInstanceIdentifier(v string) *PendingModifiedValues

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*PendingModifiedValues) SetDBSubnetGroupName

func (s *PendingModifiedValues) SetDBSubnetGroupName(v string) *PendingModifiedValues

SetDBSubnetGroupName sets the DBSubnetGroupName field's value.

func (*PendingModifiedValues) SetDedicatedLogVolume

func (s *PendingModifiedValues) SetDedicatedLogVolume(v bool) *PendingModifiedValues

SetDedicatedLogVolume sets the DedicatedLogVolume field's value.

func (*PendingModifiedValues) SetEngine

func (s *PendingModifiedValues) SetEngine(v string) *PendingModifiedValues

SetEngine sets the Engine field's value.

func (*PendingModifiedValues) SetEngineVersion

func (s *PendingModifiedValues) SetEngineVersion(v string) *PendingModifiedValues

SetEngineVersion sets the EngineVersion field's value.

func (*PendingModifiedValues) SetIAMDatabaseAuthenticationEnabled

func (s *PendingModifiedValues) SetIAMDatabaseAuthenticationEnabled(v bool) *PendingModifiedValues

SetIAMDatabaseAuthenticationEnabled sets the IAMDatabaseAuthenticationEnabled field's value.

func (*PendingModifiedValues) SetIops

func (s *PendingModifiedValues) SetIops(v int64) *PendingModifiedValues

SetIops sets the Iops field's value.

func (*PendingModifiedValues) SetLicenseModel

func (s *PendingModifiedValues) SetLicenseModel(v string) *PendingModifiedValues

SetLicenseModel sets the LicenseModel field's value.

func (*PendingModifiedValues) SetMasterUserPassword

func (s *PendingModifiedValues) SetMasterUserPassword(v string) *PendingModifiedValues

SetMasterUserPassword sets the MasterUserPassword field's value.

func (*PendingModifiedValues) SetMultiAZ

func (s *PendingModifiedValues) SetMultiAZ(v bool) *PendingModifiedValues

SetMultiAZ sets the MultiAZ field's value.

func (*PendingModifiedValues) SetMultiTenant

func (s *PendingModifiedValues) SetMultiTenant(v bool) *PendingModifiedValues

SetMultiTenant sets the MultiTenant field's value.

func (*PendingModifiedValues) SetPendingCloudwatchLogsExports

func (s *PendingModifiedValues) SetPendingCloudwatchLogsExports(v *PendingCloudwatchLogsExports) *PendingModifiedValues

SetPendingCloudwatchLogsExports sets the PendingCloudwatchLogsExports field's value.

func (*PendingModifiedValues) SetPort

func (s *PendingModifiedValues) SetPort(v int64) *PendingModifiedValues

SetPort sets the Port field's value.

func (*PendingModifiedValues) SetProcessorFeatures

func (s *PendingModifiedValues) SetProcessorFeatures(v []*ProcessorFeature) *PendingModifiedValues

SetProcessorFeatures sets the ProcessorFeatures field's value.

func (*PendingModifiedValues) SetResumeFullAutomationModeTime

func (s *PendingModifiedValues) SetResumeFullAutomationModeTime(v time.Time) *PendingModifiedValues

SetResumeFullAutomationModeTime sets the ResumeFullAutomationModeTime field's value.

func (*PendingModifiedValues) SetStorageThroughput

func (s *PendingModifiedValues) SetStorageThroughput(v int64) *PendingModifiedValues

SetStorageThroughput sets the StorageThroughput field's value.

func (*PendingModifiedValues) SetStorageType

func (s *PendingModifiedValues) SetStorageType(v string) *PendingModifiedValues

SetStorageType sets the StorageType field's value.

func (PendingModifiedValues) String

func (s PendingModifiedValues) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PerformanceInsightsMetricDimensionGroup

type PerformanceInsightsMetricDimensionGroup struct {

    // A list of specific dimensions from a dimension group. If this list isn't
    // included, then all of the dimensions in the group were requested, or are
    // present in the response.
    Dimensions []*string `type:"list"`

    // The available dimension groups for Performance Insights metric type.
    Group *string `type:"string"`

    // The maximum number of items to fetch for this dimension group.
    Limit *int64 `type:"integer"`
    // contains filtered or unexported fields
}

A logical grouping of Performance Insights metrics for a related subject area. For example, the db.sql dimension group consists of the following dimensions:

  • db.sql.id - The hash of a running SQL statement, generated by Performance Insights.

  • db.sql.db_id - Either the SQL ID generated by the database engine, or a value generated by Performance Insights that begins with pi-.

  • db.sql.statement - The full text of the SQL statement that is running, for example, SELECT * FROM employees.

  • db.sql_tokenized.id - The hash of the SQL digest generated by Performance Insights.

Each response element returns a maximum of 500 bytes. For larger elements, such as SQL statements, only the first 500 bytes are returned.

func (PerformanceInsightsMetricDimensionGroup) GoString

func (s PerformanceInsightsMetricDimensionGroup) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PerformanceInsightsMetricDimensionGroup) SetDimensions

func (s *PerformanceInsightsMetricDimensionGroup) SetDimensions(v []*string) *PerformanceInsightsMetricDimensionGroup

SetDimensions sets the Dimensions field's value.

func (*PerformanceInsightsMetricDimensionGroup) SetGroup

func (s *PerformanceInsightsMetricDimensionGroup) SetGroup(v string) *PerformanceInsightsMetricDimensionGroup

SetGroup sets the Group field's value.

func (*PerformanceInsightsMetricDimensionGroup) SetLimit

func (s *PerformanceInsightsMetricDimensionGroup) SetLimit(v int64) *PerformanceInsightsMetricDimensionGroup

SetLimit sets the Limit field's value.

func (PerformanceInsightsMetricDimensionGroup) String

func (s PerformanceInsightsMetricDimensionGroup) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PerformanceInsightsMetricQuery

type PerformanceInsightsMetricQuery struct {

    // A specification for how to aggregate the data points from a query result.
    // You must specify a valid dimension group. Performance Insights will return
    // all of the dimensions within that group, unless you provide the names of
    // specific dimensions within that group. You can also request that Performance
    // Insights return a limited number of values for a dimension.
    GroupBy *PerformanceInsightsMetricDimensionGroup `type:"structure"`

    // The name of a Performance Insights metric to be measured.
    //
    // Valid Values:
    //
    //    * db.load.avg - A scaled representation of the number of active sessions
    //    for the database engine.
    //
    //    * db.sampledload.avg - The raw number of active sessions for the database
    //    engine.
    //
    //    * The counter metrics listed in Performance Insights operating system
    //    counters (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_PerfInsights_Counters.html#USER_PerfInsights_Counters.OS)
    //    in the Amazon Aurora User Guide.
    //
    // If the number of active sessions is less than an internal Performance Insights
    // threshold, db.load.avg and db.sampledload.avg are the same value. If the
    // number of active sessions is greater than the internal threshold, Performance
    // Insights samples the active sessions, with db.load.avg showing the scaled
    // values, db.sampledload.avg showing the raw values, and db.sampledload.avg
    // less than db.load.avg. For most use cases, you can query db.load.avg only.
    Metric *string `type:"string"`
    // contains filtered or unexported fields
}

A single Performance Insights metric query to process. You must provide the metric to the query. If other parameters aren't specified, Performance Insights returns all data points for the specified metric. Optionally, you can request the data points to be aggregated by dimension group (GroupBy) and return only those data points that match your criteria (Filter).

Constraints:

  • Must be a valid Performance Insights query.

func (PerformanceInsightsMetricQuery) GoString

func (s PerformanceInsightsMetricQuery) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PerformanceInsightsMetricQuery) SetGroupBy

func (s *PerformanceInsightsMetricQuery) SetGroupBy(v *PerformanceInsightsMetricDimensionGroup) *PerformanceInsightsMetricQuery

SetGroupBy sets the GroupBy field's value.

func (*PerformanceInsightsMetricQuery) SetMetric

func (s *PerformanceInsightsMetricQuery) SetMetric(v string) *PerformanceInsightsMetricQuery

SetMetric sets the Metric field's value.

func (PerformanceInsightsMetricQuery) String

func (s PerformanceInsightsMetricQuery) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PerformanceIssueDetails

type PerformanceIssueDetails struct {

    // The analysis of the performance issue. The information might contain markdown.
    Analysis *string `type:"string"`

    // The time when the performance issue stopped.
    EndTime *time.Time `type:"timestamp"`

    // The metrics that are relevant to the performance issue.
    Metrics []*Metric `type:"list"`

    // The time when the performance issue started.
    StartTime *time.Time `type:"timestamp"`
    // contains filtered or unexported fields
}

Details of the performance issue.

func (PerformanceIssueDetails) GoString

func (s PerformanceIssueDetails) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PerformanceIssueDetails) SetAnalysis

func (s *PerformanceIssueDetails) SetAnalysis(v string) *PerformanceIssueDetails

SetAnalysis sets the Analysis field's value.

func (*PerformanceIssueDetails) SetEndTime

func (s *PerformanceIssueDetails) SetEndTime(v time.Time) *PerformanceIssueDetails

SetEndTime sets the EndTime field's value.

func (*PerformanceIssueDetails) SetMetrics

func (s *PerformanceIssueDetails) SetMetrics(v []*Metric) *PerformanceIssueDetails

SetMetrics sets the Metrics field's value.

func (*PerformanceIssueDetails) SetStartTime

func (s *PerformanceIssueDetails) SetStartTime(v time.Time) *PerformanceIssueDetails

SetStartTime sets the StartTime field's value.

func (PerformanceIssueDetails) String

func (s PerformanceIssueDetails) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ProcessorFeature

type ProcessorFeature struct {

    // The name of the processor feature. Valid names are coreCount and threadsPerCore.
    Name *string `type:"string"`

    // The value of a processor feature name.
    Value *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the processor features of a DB instance class.

To specify the number of CPU cores, use the coreCount feature name for the Name parameter. To specify the number of threads per core, use the threadsPerCore feature name for the Name parameter.

You can set the processor features of the DB instance class for a DB instance when you call one of the following actions:

  • CreateDBInstance

  • ModifyDBInstance

  • RestoreDBInstanceFromDBSnapshot

  • RestoreDBInstanceFromS3

  • RestoreDBInstanceToPointInTime

You can view the valid processor values for a particular instance class by calling the DescribeOrderableDBInstanceOptions action and specifying the instance class for the DBInstanceClass parameter.

In addition, you can use the following actions for DB instance class processor information:

  • DescribeDBInstances

  • DescribeDBSnapshots

  • DescribeValidDBInstanceModifications

If you call DescribeDBInstances, ProcessorFeature returns non-null values only if the following conditions are met:

  • You are accessing an Oracle DB instance.

  • Your Oracle DB instance class supports configuring the number of CPU cores and threads per core.

  • The current number CPU cores and threads is set to a non-default value.

For more information, see Configuring the Processor of the DB Instance Class (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html#USER_ConfigureProcessor) in the Amazon RDS User Guide.

func (ProcessorFeature) GoString

func (s ProcessorFeature) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ProcessorFeature) SetName

func (s *ProcessorFeature) SetName(v string) *ProcessorFeature

SetName sets the Name field's value.

func (*ProcessorFeature) SetValue

func (s *ProcessorFeature) SetValue(v string) *ProcessorFeature

SetValue sets the Value field's value.

func (ProcessorFeature) String

func (s ProcessorFeature) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PromoteReadReplicaDBClusterInput

type PromoteReadReplicaDBClusterInput struct {

    // The identifier of the DB cluster read replica to promote. This parameter
    // isn't case-sensitive.
    //
    // Constraints:
    //
    //    * Must match the identifier of an existing DB cluster read replica.
    //
    // Example: my-cluster-replica1
    //
    // DBClusterIdentifier is a required field
    DBClusterIdentifier *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (PromoteReadReplicaDBClusterInput) GoString

func (s PromoteReadReplicaDBClusterInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PromoteReadReplicaDBClusterInput) SetDBClusterIdentifier

func (s *PromoteReadReplicaDBClusterInput) SetDBClusterIdentifier(v string) *PromoteReadReplicaDBClusterInput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (PromoteReadReplicaDBClusterInput) String

func (s PromoteReadReplicaDBClusterInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PromoteReadReplicaDBClusterInput) Validate

func (s *PromoteReadReplicaDBClusterInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PromoteReadReplicaDBClusterOutput

type PromoteReadReplicaDBClusterOutput struct {

    // Contains the details of an Amazon Aurora DB cluster or Multi-AZ DB cluster.
    //
    // For an Amazon Aurora DB cluster, this data type is used as a response element
    // in the operations CreateDBCluster, DeleteDBCluster, DescribeDBClusters, FailoverDBCluster,
    // ModifyDBCluster, PromoteReadReplicaDBCluster, RestoreDBClusterFromS3, RestoreDBClusterFromSnapshot,
    // RestoreDBClusterToPointInTime, StartDBCluster, and StopDBCluster.
    //
    // For a Multi-AZ DB cluster, this data type is used as a response element in
    // the operations CreateDBCluster, DeleteDBCluster, DescribeDBClusters, FailoverDBCluster,
    // ModifyDBCluster, RebootDBCluster, RestoreDBClusterFromSnapshot, and RestoreDBClusterToPointInTime.
    //
    // For more information on Amazon Aurora DB clusters, see What is Amazon Aurora?
    // (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html)
    // in the Amazon Aurora User Guide.
    //
    // For more information on Multi-AZ DB clusters, see Multi-AZ deployments with
    // two readable standby DB instances (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html)
    // in the Amazon RDS User Guide.
    DBCluster *DBCluster `type:"structure"`
    // contains filtered or unexported fields
}

func (PromoteReadReplicaDBClusterOutput) GoString

func (s PromoteReadReplicaDBClusterOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PromoteReadReplicaDBClusterOutput) SetDBCluster

func (s *PromoteReadReplicaDBClusterOutput) SetDBCluster(v *DBCluster) *PromoteReadReplicaDBClusterOutput

SetDBCluster sets the DBCluster field's value.

func (PromoteReadReplicaDBClusterOutput) String

func (s PromoteReadReplicaDBClusterOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PromoteReadReplicaInput

type PromoteReadReplicaInput struct {

    // The number of days for which automated backups are retained. Setting this
    // parameter to a positive number enables backups. Setting this parameter to
    // 0 disables automated backups.
    //
    // Default: 1
    //
    // Constraints:
    //
    //    * Must be a value from 0 to 35.
    //
    //    * Can't be set to 0 if the DB instance is a source to read replicas.
    BackupRetentionPeriod *int64 `type:"integer"`

    // The DB instance identifier. This value is stored as a lowercase string.
    //
    // Constraints:
    //
    //    * Must match the identifier of an existing read replica DB instance.
    //
    // Example: mydbinstance
    //
    // DBInstanceIdentifier is a required field
    DBInstanceIdentifier *string `type:"string" required:"true"`

    // The daily time range during which automated backups are created if automated
    // backups are enabled, using the BackupRetentionPeriod parameter.
    //
    // The default is a 30-minute window selected at random from an 8-hour block
    // of time for each Amazon Web Services Region. To see the time blocks available,
    // see Adjusting the Preferred Maintenance Window (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/AdjustingTheMaintenanceWindow.html)
    // in the Amazon RDS User Guide.
    //
    // Constraints:
    //
    //    * Must be in the format hh24:mi-hh24:mi.
    //
    //    * Must be in Universal Coordinated Time (UTC).
    //
    //    * Must not conflict with the preferred maintenance window.
    //
    //    * Must be at least 30 minutes.
    PreferredBackupWindow *string `type:"string"`
    // contains filtered or unexported fields
}

func (PromoteReadReplicaInput) GoString

func (s PromoteReadReplicaInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PromoteReadReplicaInput) SetBackupRetentionPeriod

func (s *PromoteReadReplicaInput) SetBackupRetentionPeriod(v int64) *PromoteReadReplicaInput

SetBackupRetentionPeriod sets the BackupRetentionPeriod field's value.

func (*PromoteReadReplicaInput) SetDBInstanceIdentifier

func (s *PromoteReadReplicaInput) SetDBInstanceIdentifier(v string) *PromoteReadReplicaInput

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*PromoteReadReplicaInput) SetPreferredBackupWindow

func (s *PromoteReadReplicaInput) SetPreferredBackupWindow(v string) *PromoteReadReplicaInput

SetPreferredBackupWindow sets the PreferredBackupWindow field's value.

func (PromoteReadReplicaInput) String

func (s PromoteReadReplicaInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PromoteReadReplicaInput) Validate

func (s *PromoteReadReplicaInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PromoteReadReplicaOutput

type PromoteReadReplicaOutput struct {

    // Contains the details of an Amazon RDS DB instance.
    //
    // This data type is used as a response element in the operations CreateDBInstance,
    // CreateDBInstanceReadReplica, DeleteDBInstance, DescribeDBInstances, ModifyDBInstance,
    // PromoteReadReplica, RebootDBInstance, RestoreDBInstanceFromDBSnapshot, RestoreDBInstanceFromS3,
    // RestoreDBInstanceToPointInTime, StartDBInstance, and StopDBInstance.
    DBInstance *DBInstance `type:"structure"`
    // contains filtered or unexported fields
}

func (PromoteReadReplicaOutput) GoString

func (s PromoteReadReplicaOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PromoteReadReplicaOutput) SetDBInstance

func (s *PromoteReadReplicaOutput) SetDBInstance(v *DBInstance) *PromoteReadReplicaOutput

SetDBInstance sets the DBInstance field's value.

func (PromoteReadReplicaOutput) String

func (s PromoteReadReplicaOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PurchaseReservedDBInstancesOfferingInput

type PurchaseReservedDBInstancesOfferingInput struct {

    // The number of instances to reserve.
    //
    // Default: 1
    DBInstanceCount *int64 `type:"integer"`

    // Customer-specified identifier to track this reservation.
    //
    // Example: myreservationID
    ReservedDBInstanceId *string `type:"string"`

    // The ID of the Reserved DB instance offering to purchase.
    //
    // Example: 438012d3-4052-4cc7-b2e3-8d3372e0e706
    //
    // ReservedDBInstancesOfferingId is a required field
    ReservedDBInstancesOfferingId *string `type:"string" required:"true"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    Tags []*Tag `locationNameList:"Tag" type:"list"`
    // contains filtered or unexported fields
}

func (PurchaseReservedDBInstancesOfferingInput) GoString

func (s PurchaseReservedDBInstancesOfferingInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PurchaseReservedDBInstancesOfferingInput) SetDBInstanceCount

func (s *PurchaseReservedDBInstancesOfferingInput) SetDBInstanceCount(v int64) *PurchaseReservedDBInstancesOfferingInput

SetDBInstanceCount sets the DBInstanceCount field's value.

func (*PurchaseReservedDBInstancesOfferingInput) SetReservedDBInstanceId

func (s *PurchaseReservedDBInstancesOfferingInput) SetReservedDBInstanceId(v string) *PurchaseReservedDBInstancesOfferingInput

SetReservedDBInstanceId sets the ReservedDBInstanceId field's value.

func (*PurchaseReservedDBInstancesOfferingInput) SetReservedDBInstancesOfferingId

func (s *PurchaseReservedDBInstancesOfferingInput) SetReservedDBInstancesOfferingId(v string) *PurchaseReservedDBInstancesOfferingInput

SetReservedDBInstancesOfferingId sets the ReservedDBInstancesOfferingId field's value.

func (*PurchaseReservedDBInstancesOfferingInput) SetTags

func (s *PurchaseReservedDBInstancesOfferingInput) SetTags(v []*Tag) *PurchaseReservedDBInstancesOfferingInput

SetTags sets the Tags field's value.

func (PurchaseReservedDBInstancesOfferingInput) String

func (s PurchaseReservedDBInstancesOfferingInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PurchaseReservedDBInstancesOfferingInput) Validate

func (s *PurchaseReservedDBInstancesOfferingInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PurchaseReservedDBInstancesOfferingOutput

type PurchaseReservedDBInstancesOfferingOutput struct {

    // This data type is used as a response element in the DescribeReservedDBInstances
    // and PurchaseReservedDBInstancesOffering actions.
    ReservedDBInstance *ReservedDBInstance `type:"structure"`
    // contains filtered or unexported fields
}

func (PurchaseReservedDBInstancesOfferingOutput) GoString

func (s PurchaseReservedDBInstancesOfferingOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PurchaseReservedDBInstancesOfferingOutput) SetReservedDBInstance

func (s *PurchaseReservedDBInstancesOfferingOutput) SetReservedDBInstance(v *ReservedDBInstance) *PurchaseReservedDBInstancesOfferingOutput

SetReservedDBInstance sets the ReservedDBInstance field's value.

func (PurchaseReservedDBInstancesOfferingOutput) String

func (s PurchaseReservedDBInstancesOfferingOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RDS

type RDS struct {
    *client.Client
}

RDS provides the API operation methods for making requests to Amazon Relational Database Service. See this package's package overview docs for details on the service.

RDS methods are safe to use concurrently. It is not safe to modify mutate any of the struct's properties though.

func New

func New(p client.ConfigProvider, cfgs ...*aws.Config) *RDS

New creates a new instance of the RDS client with a session. If additional configuration is needed for the client instance use the optional aws.Config parameter to add your extra config.

Example:

mySession := session.Must(session.NewSession())

// Create a RDS client from just a session.
svc := rds.New(mySession)

// Create a RDS client with additional configuration
svc := rds.New(mySession, aws.NewConfig().WithRegion("us-west-2"))

func (*RDS) AddRoleToDBCluster

func (c *RDS) AddRoleToDBCluster(input *AddRoleToDBClusterInput) (*AddRoleToDBClusterOutput, error)

AddRoleToDBCluster API operation for Amazon Relational Database Service.

Associates an Identity and Access Management (IAM) role with a DB cluster.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation AddRoleToDBCluster for usage and error information.

Returned Error Codes:

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeDBClusterRoleAlreadyExistsFault "DBClusterRoleAlreadyExists" The specified IAM role Amazon Resource Name (ARN) is already associated with the specified DB cluster.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeDBClusterRoleQuotaExceededFault "DBClusterRoleQuotaExceeded" You have exceeded the maximum number of IAM roles that can be associated with the specified DB cluster.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/AddRoleToDBCluster

Example (Shared00)

To associate an AWS Identity and Access Management (IAM) role with a DB cluster The following example associates a role with a DB cluster.

Code:

svc := rds.New(session.New())
input := &rds.AddRoleToDBClusterInput{
    DBClusterIdentifier: aws.String("mydbcluster"),
    RoleArn:             aws.String("arn:aws:iam::123456789012:role/RDSLoadFromS3"),
}

result, err := svc.AddRoleToDBCluster(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeDBClusterRoleAlreadyExistsFault:
            fmt.Println(rds.ErrCodeDBClusterRoleAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        case rds.ErrCodeDBClusterRoleQuotaExceededFault:
            fmt.Println(rds.ErrCodeDBClusterRoleQuotaExceededFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) AddRoleToDBClusterRequest

func (c *RDS) AddRoleToDBClusterRequest(input *AddRoleToDBClusterInput) (req *request.Request, output *AddRoleToDBClusterOutput)

AddRoleToDBClusterRequest generates a "aws/request.Request" representing the client's request for the AddRoleToDBCluster operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See AddRoleToDBCluster for more information on using the AddRoleToDBCluster API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the AddRoleToDBClusterRequest method.
req, resp := client.AddRoleToDBClusterRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/AddRoleToDBCluster

func (*RDS) AddRoleToDBClusterWithContext

func (c *RDS) AddRoleToDBClusterWithContext(ctx aws.Context, input *AddRoleToDBClusterInput, opts ...request.Option) (*AddRoleToDBClusterOutput, error)

AddRoleToDBClusterWithContext is the same as AddRoleToDBCluster with the addition of the ability to pass a context and additional request options.

See AddRoleToDBCluster for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) AddRoleToDBInstance

func (c *RDS) AddRoleToDBInstance(input *AddRoleToDBInstanceInput) (*AddRoleToDBInstanceOutput, error)

AddRoleToDBInstance API operation for Amazon Relational Database Service.

Associates an Amazon Web Services Identity and Access Management (IAM) role with a DB instance.

To add a role to a DB instance, the status of the DB instance must be available.

This command doesn't apply to RDS Custom.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation AddRoleToDBInstance for usage and error information.

Returned Error Codes:

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

  • ErrCodeDBInstanceRoleAlreadyExistsFault "DBInstanceRoleAlreadyExists" The specified RoleArn or FeatureName value is already associated with the DB instance.

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

  • ErrCodeDBInstanceRoleQuotaExceededFault "DBInstanceRoleQuotaExceeded" You can't associate any more Amazon Web Services Identity and Access Management (IAM) roles with the DB instance because the quota has been reached.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/AddRoleToDBInstance

Example (Shared00)

To associate an AWS Identity and Access Management (IAM) role with a DB instance The following example adds the role to a DB instance named test-instance.

Code:

svc := rds.New(session.New())
input := &rds.AddRoleToDBInstanceInput{
    DBInstanceIdentifier: aws.String("test-instance"),
    FeatureName:          aws.String("S3_INTEGRATION"),
    RoleArn:              aws.String("arn:aws:iam::111122223333:role/rds-s3-integration-role"),
}

result, err := svc.AddRoleToDBInstance(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceNotFoundFault, aerr.Error())
        case rds.ErrCodeDBInstanceRoleAlreadyExistsFault:
            fmt.Println(rds.ErrCodeDBInstanceRoleAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeInvalidDBInstanceStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceStateFault, aerr.Error())
        case rds.ErrCodeDBInstanceRoleQuotaExceededFault:
            fmt.Println(rds.ErrCodeDBInstanceRoleQuotaExceededFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) AddRoleToDBInstanceRequest

func (c *RDS) AddRoleToDBInstanceRequest(input *AddRoleToDBInstanceInput) (req *request.Request, output *AddRoleToDBInstanceOutput)

AddRoleToDBInstanceRequest generates a "aws/request.Request" representing the client's request for the AddRoleToDBInstance operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See AddRoleToDBInstance for more information on using the AddRoleToDBInstance API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the AddRoleToDBInstanceRequest method.
req, resp := client.AddRoleToDBInstanceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/AddRoleToDBInstance

func (*RDS) AddRoleToDBInstanceWithContext

func (c *RDS) AddRoleToDBInstanceWithContext(ctx aws.Context, input *AddRoleToDBInstanceInput, opts ...request.Option) (*AddRoleToDBInstanceOutput, error)

AddRoleToDBInstanceWithContext is the same as AddRoleToDBInstance with the addition of the ability to pass a context and additional request options.

See AddRoleToDBInstance for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) AddSourceIdentifierToSubscription

func (c *RDS) AddSourceIdentifierToSubscription(input *AddSourceIdentifierToSubscriptionInput) (*AddSourceIdentifierToSubscriptionOutput, error)

AddSourceIdentifierToSubscription API operation for Amazon Relational Database Service.

Adds a source identifier to an existing RDS event notification subscription.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation AddSourceIdentifierToSubscription for usage and error information.

Returned Error Codes:

  • ErrCodeSubscriptionNotFoundFault "SubscriptionNotFound" The subscription name does not exist.

  • ErrCodeSourceNotFoundFault "SourceNotFound" The requested source could not be found.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/AddSourceIdentifierToSubscription

Example (Shared00)

To add a source identifier to a subscription The following example adds another source identifier to an existing subscription.

Code:

svc := rds.New(session.New())
input := &rds.AddSourceIdentifierToSubscriptionInput{
    SourceIdentifier: aws.String("test-instance-repl"),
    SubscriptionName: aws.String("my-instance-events"),
}

result, err := svc.AddSourceIdentifierToSubscription(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeSubscriptionNotFoundFault:
            fmt.Println(rds.ErrCodeSubscriptionNotFoundFault, aerr.Error())
        case rds.ErrCodeSourceNotFoundFault:
            fmt.Println(rds.ErrCodeSourceNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) AddSourceIdentifierToSubscriptionRequest

func (c *RDS) AddSourceIdentifierToSubscriptionRequest(input *AddSourceIdentifierToSubscriptionInput) (req *request.Request, output *AddSourceIdentifierToSubscriptionOutput)

AddSourceIdentifierToSubscriptionRequest generates a "aws/request.Request" representing the client's request for the AddSourceIdentifierToSubscription operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See AddSourceIdentifierToSubscription for more information on using the AddSourceIdentifierToSubscription API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the AddSourceIdentifierToSubscriptionRequest method.
req, resp := client.AddSourceIdentifierToSubscriptionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/AddSourceIdentifierToSubscription

func (*RDS) AddSourceIdentifierToSubscriptionWithContext

func (c *RDS) AddSourceIdentifierToSubscriptionWithContext(ctx aws.Context, input *AddSourceIdentifierToSubscriptionInput, opts ...request.Option) (*AddSourceIdentifierToSubscriptionOutput, error)

AddSourceIdentifierToSubscriptionWithContext is the same as AddSourceIdentifierToSubscription with the addition of the ability to pass a context and additional request options.

See AddSourceIdentifierToSubscription for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) AddTagsToResource

func (c *RDS) AddTagsToResource(input *AddTagsToResourceInput) (*AddTagsToResourceOutput, error)

AddTagsToResource API operation for Amazon Relational Database Service.

Adds metadata tags to an Amazon RDS resource. These tags can also be used with cost allocation reporting to track cost associated with Amazon RDS resources, or used in a Condition statement in an IAM policy for Amazon RDS.

For an overview on tagging Amazon RDS resources, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.Tagging.html).

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation AddTagsToResource for usage and error information.

Returned Error Codes:

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeDBSnapshotNotFoundFault "DBSnapshotNotFound" DBSnapshotIdentifier doesn't refer to an existing DB snapshot.

  • ErrCodeDBProxyNotFoundFault "DBProxyNotFoundFault" The specified proxy name doesn't correspond to a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

  • ErrCodeDBProxyTargetGroupNotFoundFault "DBProxyTargetGroupNotFoundFault" The specified target group isn't available for a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

  • ErrCodeBlueGreenDeploymentNotFoundFault "BlueGreenDeploymentNotFoundFault" BlueGreenDeploymentIdentifier doesn't refer to an existing blue/green deployment.

  • ErrCodeIntegrationNotFoundFault "IntegrationNotFoundFault" The specified integration could not be found.

  • ErrCodeTenantDatabaseNotFoundFault "TenantDatabaseNotFound" The specified tenant database wasn't found in the DB instance.

  • ErrCodeDBSnapshotTenantDatabaseNotFoundFault "DBSnapshotTenantDatabaseNotFoundFault" The specified snapshot tenant database wasn't found.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/AddTagsToResource

Example (Shared00)

To add tags to a resource This example adds a tag to an option group.

Code:

svc := rds.New(session.New())
input := &rds.AddTagsToResourceInput{
    ResourceName: aws.String("arn:aws:rds:us-east-1:992648334831:og:mymysqloptiongroup"),
    Tags: []*rds.Tag{
        {
            Key:   aws.String("Staging"),
            Value: aws.String("LocationDB"),
        },
    },
}

result, err := svc.AddTagsToResource(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceNotFoundFault, aerr.Error())
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeDBSnapshotNotFoundFault:
            fmt.Println(rds.ErrCodeDBSnapshotNotFoundFault, aerr.Error())
        case rds.ErrCodeDBProxyNotFoundFault:
            fmt.Println(rds.ErrCodeDBProxyNotFoundFault, aerr.Error())
        case rds.ErrCodeDBProxyTargetGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBProxyTargetGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeBlueGreenDeploymentNotFoundFault:
            fmt.Println(rds.ErrCodeBlueGreenDeploymentNotFoundFault, aerr.Error())
        case rds.ErrCodeIntegrationNotFoundFault:
            fmt.Println(rds.ErrCodeIntegrationNotFoundFault, aerr.Error())
        case rds.ErrCodeTenantDatabaseNotFoundFault:
            fmt.Println(rds.ErrCodeTenantDatabaseNotFoundFault, aerr.Error())
        case rds.ErrCodeDBSnapshotTenantDatabaseNotFoundFault:
            fmt.Println(rds.ErrCodeDBSnapshotTenantDatabaseNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) AddTagsToResourceRequest

func (c *RDS) AddTagsToResourceRequest(input *AddTagsToResourceInput) (req *request.Request, output *AddTagsToResourceOutput)

AddTagsToResourceRequest generates a "aws/request.Request" representing the client's request for the AddTagsToResource operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See AddTagsToResource for more information on using the AddTagsToResource API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the AddTagsToResourceRequest method.
req, resp := client.AddTagsToResourceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/AddTagsToResource

func (*RDS) AddTagsToResourceWithContext

func (c *RDS) AddTagsToResourceWithContext(ctx aws.Context, input *AddTagsToResourceInput, opts ...request.Option) (*AddTagsToResourceOutput, error)

AddTagsToResourceWithContext is the same as AddTagsToResource with the addition of the ability to pass a context and additional request options.

See AddTagsToResource for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) ApplyPendingMaintenanceAction

func (c *RDS) ApplyPendingMaintenanceAction(input *ApplyPendingMaintenanceActionInput) (*ApplyPendingMaintenanceActionOutput, error)

ApplyPendingMaintenanceAction API operation for Amazon Relational Database Service.

Applies a pending maintenance action to a resource (for example, to a DB instance).

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation ApplyPendingMaintenanceAction for usage and error information.

Returned Error Codes:

  • ErrCodeResourceNotFoundFault "ResourceNotFoundFault" The specified resource ID was not found.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ApplyPendingMaintenanceAction

Example (Shared00)

To apply pending maintenance actions The following example applies the pending maintenance actions for a DB cluster.

Code:

svc := rds.New(session.New())
input := &rds.ApplyPendingMaintenanceActionInput{
    ApplyAction:        aws.String("system-update"),
    OptInType:          aws.String("immediate"),
    ResourceIdentifier: aws.String("arn:aws:rds:us-east-1:123456789012:cluster:my-db-cluster"),
}

result, err := svc.ApplyPendingMaintenanceAction(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeResourceNotFoundFault:
            fmt.Println(rds.ErrCodeResourceNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        case rds.ErrCodeInvalidDBInstanceStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceStateFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) ApplyPendingMaintenanceActionRequest

func (c *RDS) ApplyPendingMaintenanceActionRequest(input *ApplyPendingMaintenanceActionInput) (req *request.Request, output *ApplyPendingMaintenanceActionOutput)

ApplyPendingMaintenanceActionRequest generates a "aws/request.Request" representing the client's request for the ApplyPendingMaintenanceAction operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ApplyPendingMaintenanceAction for more information on using the ApplyPendingMaintenanceAction API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ApplyPendingMaintenanceActionRequest method.
req, resp := client.ApplyPendingMaintenanceActionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ApplyPendingMaintenanceAction

func (*RDS) ApplyPendingMaintenanceActionWithContext

func (c *RDS) ApplyPendingMaintenanceActionWithContext(ctx aws.Context, input *ApplyPendingMaintenanceActionInput, opts ...request.Option) (*ApplyPendingMaintenanceActionOutput, error)

ApplyPendingMaintenanceActionWithContext is the same as ApplyPendingMaintenanceAction with the addition of the ability to pass a context and additional request options.

See ApplyPendingMaintenanceAction for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) AuthorizeDBSecurityGroupIngress

func (c *RDS) AuthorizeDBSecurityGroupIngress(input *AuthorizeDBSecurityGroupIngressInput) (*AuthorizeDBSecurityGroupIngressOutput, error)

AuthorizeDBSecurityGroupIngress API operation for Amazon Relational Database Service.

Enables ingress to a DBSecurityGroup using one of two forms of authorization. First, EC2 or VPC security groups can be added to the DBSecurityGroup if the application using the database is running on EC2 or VPC instances. Second, IP ranges are available if the application accessing your database is running on the internet. Required parameters for this API are one of CIDR range, EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId for non-VPC).

You can't authorize ingress from an EC2 security group in one Amazon Web Services Region to an Amazon RDS DB instance in another. You can't authorize ingress from a VPC security group in one VPC to an Amazon RDS DB instance in another.

For an overview of CIDR ranges, go to the Wikipedia Tutorial (http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing).

EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that you migrate as soon as possible. For more information, see Migrate from EC2-Classic to a VPC (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html) in the Amazon EC2 User Guide, the blog EC2-Classic Networking is Retiring – Here’s How to Prepare (http://aws.amazon.com/blogs/aws/ec2-classic-is-retiring-heres-how-to-prepare/), and Moving a DB instance not in a VPC into a VPC (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.Non-VPC2VPC.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation AuthorizeDBSecurityGroupIngress for usage and error information.

Returned Error Codes:

  • ErrCodeDBSecurityGroupNotFoundFault "DBSecurityGroupNotFound" DBSecurityGroupName doesn't refer to an existing DB security group.

  • ErrCodeInvalidDBSecurityGroupStateFault "InvalidDBSecurityGroupState" The state of the DB security group doesn't allow deletion.

  • ErrCodeAuthorizationAlreadyExistsFault "AuthorizationAlreadyExists" The specified CIDR IP range or Amazon EC2 security group is already authorized for the specified DB security group.

  • ErrCodeAuthorizationQuotaExceededFault "AuthorizationQuotaExceeded" The DB security group authorization quota has been reached.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/AuthorizeDBSecurityGroupIngress

Example (Shared00)

To authorize DB security group integress This example authorizes access to the specified security group by the specified CIDR block.

Code:

svc := rds.New(session.New())
input := &rds.AuthorizeDBSecurityGroupIngressInput{
    CIDRIP:              aws.String("203.0.113.5/32"),
    DBSecurityGroupName: aws.String("mydbsecuritygroup"),
}

result, err := svc.AuthorizeDBSecurityGroupIngress(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBSecurityGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBSecurityGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBSecurityGroupStateFault:
            fmt.Println(rds.ErrCodeInvalidDBSecurityGroupStateFault, aerr.Error())
        case rds.ErrCodeAuthorizationAlreadyExistsFault:
            fmt.Println(rds.ErrCodeAuthorizationAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeAuthorizationQuotaExceededFault:
            fmt.Println(rds.ErrCodeAuthorizationQuotaExceededFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) AuthorizeDBSecurityGroupIngressRequest

func (c *RDS) AuthorizeDBSecurityGroupIngressRequest(input *AuthorizeDBSecurityGroupIngressInput) (req *request.Request, output *AuthorizeDBSecurityGroupIngressOutput)

AuthorizeDBSecurityGroupIngressRequest generates a "aws/request.Request" representing the client's request for the AuthorizeDBSecurityGroupIngress operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See AuthorizeDBSecurityGroupIngress for more information on using the AuthorizeDBSecurityGroupIngress API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the AuthorizeDBSecurityGroupIngressRequest method.
req, resp := client.AuthorizeDBSecurityGroupIngressRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/AuthorizeDBSecurityGroupIngress

func (*RDS) AuthorizeDBSecurityGroupIngressWithContext

func (c *RDS) AuthorizeDBSecurityGroupIngressWithContext(ctx aws.Context, input *AuthorizeDBSecurityGroupIngressInput, opts ...request.Option) (*AuthorizeDBSecurityGroupIngressOutput, error)

AuthorizeDBSecurityGroupIngressWithContext is the same as AuthorizeDBSecurityGroupIngress with the addition of the ability to pass a context and additional request options.

See AuthorizeDBSecurityGroupIngress for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) BacktrackDBCluster

func (c *RDS) BacktrackDBCluster(input *BacktrackDBClusterInput) (*BacktrackDBClusterOutput, error)

BacktrackDBCluster API operation for Amazon Relational Database Service.

Backtracks a DB cluster to a specific time, without creating a new DB cluster.

For more information on backtracking, see Backtracking an Aurora DB Cluster (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Managing.Backtrack.html) in the Amazon Aurora User Guide.

This action applies only to Aurora MySQL DB clusters.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation BacktrackDBCluster for usage and error information.

Returned Error Codes:

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/BacktrackDBCluster

func (*RDS) BacktrackDBClusterRequest

func (c *RDS) BacktrackDBClusterRequest(input *BacktrackDBClusterInput) (req *request.Request, output *BacktrackDBClusterOutput)

BacktrackDBClusterRequest generates a "aws/request.Request" representing the client's request for the BacktrackDBCluster operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See BacktrackDBCluster for more information on using the BacktrackDBCluster API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the BacktrackDBClusterRequest method.
req, resp := client.BacktrackDBClusterRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/BacktrackDBCluster

func (*RDS) BacktrackDBClusterWithContext

func (c *RDS) BacktrackDBClusterWithContext(ctx aws.Context, input *BacktrackDBClusterInput, opts ...request.Option) (*BacktrackDBClusterOutput, error)

BacktrackDBClusterWithContext is the same as BacktrackDBCluster with the addition of the ability to pass a context and additional request options.

See BacktrackDBCluster for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) CancelExportTask

func (c *RDS) CancelExportTask(input *CancelExportTaskInput) (*CancelExportTaskOutput, error)

CancelExportTask API operation for Amazon Relational Database Service.

Cancels an export task in progress that is exporting a snapshot or cluster to Amazon S3. Any data that has already been written to the S3 bucket isn't removed.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation CancelExportTask for usage and error information.

Returned Error Codes:

  • ErrCodeExportTaskNotFoundFault "ExportTaskNotFound" The export task doesn't exist.

  • ErrCodeInvalidExportTaskStateFault "InvalidExportTaskStateFault" You can't cancel an export task that has completed.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CancelExportTask

Example (Shared00)

To cancel a snapshot export to Amazon S3 The following example cancels an export task in progress that is exporting a snapshot to Amazon S3.

Code:

svc := rds.New(session.New())
input := &rds.CancelExportTaskInput{
    ExportTaskIdentifier: aws.String("my-s3-export-1"),
}

result, err := svc.CancelExportTask(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeExportTaskNotFoundFault:
            fmt.Println(rds.ErrCodeExportTaskNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidExportTaskStateFault:
            fmt.Println(rds.ErrCodeInvalidExportTaskStateFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) CancelExportTaskRequest

func (c *RDS) CancelExportTaskRequest(input *CancelExportTaskInput) (req *request.Request, output *CancelExportTaskOutput)

CancelExportTaskRequest generates a "aws/request.Request" representing the client's request for the CancelExportTask operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CancelExportTask for more information on using the CancelExportTask API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CancelExportTaskRequest method.
req, resp := client.CancelExportTaskRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CancelExportTask

func (*RDS) CancelExportTaskWithContext

func (c *RDS) CancelExportTaskWithContext(ctx aws.Context, input *CancelExportTaskInput, opts ...request.Option) (*CancelExportTaskOutput, error)

CancelExportTaskWithContext is the same as CancelExportTask with the addition of the ability to pass a context and additional request options.

See CancelExportTask for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) CopyDBClusterParameterGroup

func (c *RDS) CopyDBClusterParameterGroup(input *CopyDBClusterParameterGroupInput) (*CopyDBClusterParameterGroupOutput, error)

CopyDBClusterParameterGroup API operation for Amazon Relational Database Service.

Copies the specified DB cluster parameter group.

You can't copy a default DB cluster parameter group. Instead, create a new custom DB cluster parameter group, which copies the default parameters and values for the specified DB cluster parameter group family.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation CopyDBClusterParameterGroup for usage and error information.

Returned Error Codes:

  • ErrCodeDBParameterGroupNotFoundFault "DBParameterGroupNotFound" DBParameterGroupName doesn't refer to an existing DB parameter group.

  • ErrCodeDBParameterGroupQuotaExceededFault "DBParameterGroupQuotaExceeded" The request would result in the user exceeding the allowed number of DB parameter groups.

  • ErrCodeDBParameterGroupAlreadyExistsFault "DBParameterGroupAlreadyExists" A DB parameter group with the same name exists.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBClusterParameterGroup

Example (Shared00)

To copy a DB cluster parameter group This example copies a DB cluster parameter group.

Code:

svc := rds.New(session.New())
input := &rds.CopyDBClusterParameterGroupInput{
    SourceDBClusterParameterGroupIdentifier:  aws.String("mydbclusterparametergroup"),
    TargetDBClusterParameterGroupDescription: aws.String("My DB cluster parameter group copy"),
    TargetDBClusterParameterGroupIdentifier:  aws.String("mydbclusterparametergroup-copy"),
}

result, err := svc.CopyDBClusterParameterGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBParameterGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBParameterGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeDBParameterGroupQuotaExceededFault:
            fmt.Println(rds.ErrCodeDBParameterGroupQuotaExceededFault, aerr.Error())
        case rds.ErrCodeDBParameterGroupAlreadyExistsFault:
            fmt.Println(rds.ErrCodeDBParameterGroupAlreadyExistsFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) CopyDBClusterParameterGroupRequest

func (c *RDS) CopyDBClusterParameterGroupRequest(input *CopyDBClusterParameterGroupInput) (req *request.Request, output *CopyDBClusterParameterGroupOutput)

CopyDBClusterParameterGroupRequest generates a "aws/request.Request" representing the client's request for the CopyDBClusterParameterGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CopyDBClusterParameterGroup for more information on using the CopyDBClusterParameterGroup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CopyDBClusterParameterGroupRequest method.
req, resp := client.CopyDBClusterParameterGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBClusterParameterGroup

func (*RDS) CopyDBClusterParameterGroupWithContext

func (c *RDS) CopyDBClusterParameterGroupWithContext(ctx aws.Context, input *CopyDBClusterParameterGroupInput, opts ...request.Option) (*CopyDBClusterParameterGroupOutput, error)

CopyDBClusterParameterGroupWithContext is the same as CopyDBClusterParameterGroup with the addition of the ability to pass a context and additional request options.

See CopyDBClusterParameterGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) CopyDBClusterSnapshot

func (c *RDS) CopyDBClusterSnapshot(input *CopyDBClusterSnapshotInput) (*CopyDBClusterSnapshotOutput, error)

CopyDBClusterSnapshot API operation for Amazon Relational Database Service.

Copies a snapshot of a DB cluster.

To copy a DB cluster snapshot from a shared manual DB cluster snapshot, SourceDBClusterSnapshotIdentifier must be the Amazon Resource Name (ARN) of the shared DB cluster snapshot.

You can copy an encrypted DB cluster snapshot from another Amazon Web Services Region. In that case, the Amazon Web Services Region where you call the CopyDBClusterSnapshot operation is the destination Amazon Web Services Region for the encrypted DB cluster snapshot to be copied to. To copy an encrypted DB cluster snapshot from another Amazon Web Services Region, you must provide the following values:

  • KmsKeyId - The Amazon Web Services Key Management System (Amazon Web Services KMS) key identifier for the key to use to encrypt the copy of the DB cluster snapshot in the destination Amazon Web Services Region.

  • TargetDBClusterSnapshotIdentifier - The identifier for the new copy of the DB cluster snapshot in the destination Amazon Web Services Region.

  • SourceDBClusterSnapshotIdentifier - The DB cluster snapshot identifier for the encrypted DB cluster snapshot to be copied. This identifier must be in the ARN format for the source Amazon Web Services Region and is the same value as the SourceDBClusterSnapshotIdentifier in the presigned URL.

To cancel the copy operation once it is in progress, delete the target DB cluster snapshot identified by TargetDBClusterSnapshotIdentifier while that DB cluster snapshot is in "copying" status.

For more information on copying encrypted Amazon Aurora DB cluster snapshots from one Amazon Web Services Region to another, see Copying a Snapshot (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_CopySnapshot.html) in the Amazon Aurora User Guide.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html) in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation CopyDBClusterSnapshot for usage and error information.

Returned Error Codes:

  • ErrCodeDBClusterSnapshotAlreadyExistsFault "DBClusterSnapshotAlreadyExistsFault" The user already has a DB cluster snapshot with the given identifier.

  • ErrCodeDBClusterSnapshotNotFoundFault "DBClusterSnapshotNotFoundFault" DBClusterSnapshotIdentifier doesn't refer to an existing DB cluster snapshot.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeInvalidDBClusterSnapshotStateFault "InvalidDBClusterSnapshotStateFault" The supplied value isn't a valid DB cluster snapshot state.

  • ErrCodeSnapshotQuotaExceededFault "SnapshotQuotaExceeded" The request would result in the user exceeding the allowed number of DB snapshots.

  • ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" An error occurred accessing an Amazon Web Services KMS key.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBClusterSnapshot

Example (Shared00)

To copy a DB cluster snapshot The following example creates a copy of a DB cluster snapshot, including its tags.

Code:

svc := rds.New(session.New())
input := &rds.CopyDBClusterSnapshotInput{
    CopyTags:                          aws.Bool(true),
    SourceDBClusterSnapshotIdentifier: aws.String("arn:aws:rds:us-east-1:123456789012:cluster-snapshot:rds:myaurora-2019-06-04-09-16"),
    TargetDBClusterSnapshotIdentifier: aws.String("myclustersnapshotcopy"),
}

result, err := svc.CopyDBClusterSnapshot(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBClusterSnapshotAlreadyExistsFault:
            fmt.Println(rds.ErrCodeDBClusterSnapshotAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeDBClusterSnapshotNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterSnapshotNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterSnapshotStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterSnapshotStateFault, aerr.Error())
        case rds.ErrCodeSnapshotQuotaExceededFault:
            fmt.Println(rds.ErrCodeSnapshotQuotaExceededFault, aerr.Error())
        case rds.ErrCodeKMSKeyNotAccessibleFault:
            fmt.Println(rds.ErrCodeKMSKeyNotAccessibleFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) CopyDBClusterSnapshotRequest

func (c *RDS) CopyDBClusterSnapshotRequest(input *CopyDBClusterSnapshotInput) (req *request.Request, output *CopyDBClusterSnapshotOutput)

CopyDBClusterSnapshotRequest generates a "aws/request.Request" representing the client's request for the CopyDBClusterSnapshot operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CopyDBClusterSnapshot for more information on using the CopyDBClusterSnapshot API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CopyDBClusterSnapshotRequest method.
req, resp := client.CopyDBClusterSnapshotRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBClusterSnapshot

func (*RDS) CopyDBClusterSnapshotWithContext

func (c *RDS) CopyDBClusterSnapshotWithContext(ctx aws.Context, input *CopyDBClusterSnapshotInput, opts ...request.Option) (*CopyDBClusterSnapshotOutput, error)

CopyDBClusterSnapshotWithContext is the same as CopyDBClusterSnapshot with the addition of the ability to pass a context and additional request options.

See CopyDBClusterSnapshot for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) CopyDBParameterGroup

func (c *RDS) CopyDBParameterGroup(input *CopyDBParameterGroupInput) (*CopyDBParameterGroupOutput, error)

CopyDBParameterGroup API operation for Amazon Relational Database Service.

Copies the specified DB parameter group.

You can't copy a default DB parameter group. Instead, create a new custom DB parameter group, which copies the default parameters and values for the specified DB parameter group family.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation CopyDBParameterGroup for usage and error information.

Returned Error Codes:

  • ErrCodeDBParameterGroupNotFoundFault "DBParameterGroupNotFound" DBParameterGroupName doesn't refer to an existing DB parameter group.

  • ErrCodeDBParameterGroupAlreadyExistsFault "DBParameterGroupAlreadyExists" A DB parameter group with the same name exists.

  • ErrCodeDBParameterGroupQuotaExceededFault "DBParameterGroupQuotaExceeded" The request would result in the user exceeding the allowed number of DB parameter groups.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBParameterGroup

Example (Shared00)

To copy a DB parameter group The following example makes a copy of a DB parameter group.

Code:

svc := rds.New(session.New())
input := &rds.CopyDBParameterGroupInput{
    SourceDBParameterGroupIdentifier:  aws.String("mydbpg"),
    TargetDBParameterGroupDescription: aws.String("Copy of mydbpg parameter group"),
    TargetDBParameterGroupIdentifier:  aws.String("mydbpgcopy"),
}

result, err := svc.CopyDBParameterGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBParameterGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBParameterGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeDBParameterGroupAlreadyExistsFault:
            fmt.Println(rds.ErrCodeDBParameterGroupAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeDBParameterGroupQuotaExceededFault:
            fmt.Println(rds.ErrCodeDBParameterGroupQuotaExceededFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) CopyDBParameterGroupRequest

func (c *RDS) CopyDBParameterGroupRequest(input *CopyDBParameterGroupInput) (req *request.Request, output *CopyDBParameterGroupOutput)

CopyDBParameterGroupRequest generates a "aws/request.Request" representing the client's request for the CopyDBParameterGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CopyDBParameterGroup for more information on using the CopyDBParameterGroup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CopyDBParameterGroupRequest method.
req, resp := client.CopyDBParameterGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBParameterGroup

func (*RDS) CopyDBParameterGroupWithContext

func (c *RDS) CopyDBParameterGroupWithContext(ctx aws.Context, input *CopyDBParameterGroupInput, opts ...request.Option) (*CopyDBParameterGroupOutput, error)

CopyDBParameterGroupWithContext is the same as CopyDBParameterGroup with the addition of the ability to pass a context and additional request options.

See CopyDBParameterGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) CopyDBSnapshot

func (c *RDS) CopyDBSnapshot(input *CopyDBSnapshotInput) (*CopyDBSnapshotOutput, error)

CopyDBSnapshot API operation for Amazon Relational Database Service.

Copies the specified DB snapshot. The source DB snapshot must be in the available state.

You can copy a snapshot from one Amazon Web Services Region to another. In that case, the Amazon Web Services Region where you call the CopyDBSnapshot operation is the destination Amazon Web Services Region for the DB snapshot copy.

This command doesn't apply to RDS Custom.

For more information about copying snapshots, see Copying a DB Snapshot (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_CopySnapshot.html#USER_CopyDBSnapshot) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation CopyDBSnapshot for usage and error information.

Returned Error Codes:

  • ErrCodeDBSnapshotAlreadyExistsFault "DBSnapshotAlreadyExists" DBSnapshotIdentifier is already used by an existing snapshot.

  • ErrCodeDBSnapshotNotFoundFault "DBSnapshotNotFound" DBSnapshotIdentifier doesn't refer to an existing DB snapshot.

  • ErrCodeInvalidDBSnapshotStateFault "InvalidDBSnapshotState" The state of the DB snapshot doesn't allow deletion.

  • ErrCodeSnapshotQuotaExceededFault "SnapshotQuotaExceeded" The request would result in the user exceeding the allowed number of DB snapshots.

  • ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" An error occurred accessing an Amazon Web Services KMS key.

  • ErrCodeCustomAvailabilityZoneNotFoundFault "CustomAvailabilityZoneNotFound" CustomAvailabilityZoneId doesn't refer to an existing custom Availability Zone identifier.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBSnapshot

Example (Shared00)

To copy a DB snapshot The following example creates a copy of a DB snapshot.

Code:

svc := rds.New(session.New())
input := &rds.CopyDBSnapshotInput{
    SourceDBSnapshotIdentifier: aws.String("rds:database-mysql-2019-06-06-08-38"),
    TargetDBSnapshotIdentifier: aws.String("mydbsnapshotcopy"),
}

result, err := svc.CopyDBSnapshot(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBSnapshotAlreadyExistsFault:
            fmt.Println(rds.ErrCodeDBSnapshotAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeDBSnapshotNotFoundFault:
            fmt.Println(rds.ErrCodeDBSnapshotNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBSnapshotStateFault:
            fmt.Println(rds.ErrCodeInvalidDBSnapshotStateFault, aerr.Error())
        case rds.ErrCodeSnapshotQuotaExceededFault:
            fmt.Println(rds.ErrCodeSnapshotQuotaExceededFault, aerr.Error())
        case rds.ErrCodeKMSKeyNotAccessibleFault:
            fmt.Println(rds.ErrCodeKMSKeyNotAccessibleFault, aerr.Error())
        case rds.ErrCodeCustomAvailabilityZoneNotFoundFault:
            fmt.Println(rds.ErrCodeCustomAvailabilityZoneNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) CopyDBSnapshotRequest

func (c *RDS) CopyDBSnapshotRequest(input *CopyDBSnapshotInput) (req *request.Request, output *CopyDBSnapshotOutput)

CopyDBSnapshotRequest generates a "aws/request.Request" representing the client's request for the CopyDBSnapshot operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CopyDBSnapshot for more information on using the CopyDBSnapshot API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CopyDBSnapshotRequest method.
req, resp := client.CopyDBSnapshotRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBSnapshot

func (*RDS) CopyDBSnapshotWithContext

func (c *RDS) CopyDBSnapshotWithContext(ctx aws.Context, input *CopyDBSnapshotInput, opts ...request.Option) (*CopyDBSnapshotOutput, error)

CopyDBSnapshotWithContext is the same as CopyDBSnapshot with the addition of the ability to pass a context and additional request options.

See CopyDBSnapshot for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) CopyOptionGroup

func (c *RDS) CopyOptionGroup(input *CopyOptionGroupInput) (*CopyOptionGroupOutput, error)

CopyOptionGroup API operation for Amazon Relational Database Service.

Copies the specified option group.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation CopyOptionGroup for usage and error information.

Returned Error Codes:

  • ErrCodeOptionGroupAlreadyExistsFault "OptionGroupAlreadyExistsFault" The option group you are trying to create already exists.

  • ErrCodeOptionGroupNotFoundFault "OptionGroupNotFoundFault" The specified option group could not be found.

  • ErrCodeOptionGroupQuotaExceededFault "OptionGroupQuotaExceededFault" The quota of 20 option groups was exceeded for this Amazon Web Services account.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyOptionGroup

Example (Shared00)

To copy an option group The following example makes a copy of an option group.

Code:

svc := rds.New(session.New())
input := &rds.CopyOptionGroupInput{
    SourceOptionGroupIdentifier:  aws.String("myoptiongroup"),
    TargetOptionGroupDescription: aws.String("My option group copy"),
    TargetOptionGroupIdentifier:  aws.String("new-option-group"),
}

result, err := svc.CopyOptionGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeOptionGroupAlreadyExistsFault:
            fmt.Println(rds.ErrCodeOptionGroupAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeOptionGroupNotFoundFault:
            fmt.Println(rds.ErrCodeOptionGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeOptionGroupQuotaExceededFault:
            fmt.Println(rds.ErrCodeOptionGroupQuotaExceededFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) CopyOptionGroupRequest

func (c *RDS) CopyOptionGroupRequest(input *CopyOptionGroupInput) (req *request.Request, output *CopyOptionGroupOutput)

CopyOptionGroupRequest generates a "aws/request.Request" representing the client's request for the CopyOptionGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CopyOptionGroup for more information on using the CopyOptionGroup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CopyOptionGroupRequest method.
req, resp := client.CopyOptionGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyOptionGroup

func (*RDS) CopyOptionGroupWithContext

func (c *RDS) CopyOptionGroupWithContext(ctx aws.Context, input *CopyOptionGroupInput, opts ...request.Option) (*CopyOptionGroupOutput, error)

CopyOptionGroupWithContext is the same as CopyOptionGroup with the addition of the ability to pass a context and additional request options.

See CopyOptionGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) CreateBlueGreenDeployment

func (c *RDS) CreateBlueGreenDeployment(input *CreateBlueGreenDeploymentInput) (*CreateBlueGreenDeploymentOutput, error)

CreateBlueGreenDeployment API operation for Amazon Relational Database Service.

Creates a blue/green deployment.

A blue/green deployment creates a staging environment that copies the production environment. In a blue/green deployment, the blue environment is the current production environment. The green environment is the staging environment. The staging environment stays in sync with the current production environment using logical replication.

You can make changes to the databases in the green environment without affecting production workloads. For example, you can upgrade the major or minor DB engine version, change database parameters, or make schema changes in the staging environment. You can thoroughly test changes in the green environment. When ready, you can switch over the environments to promote the green environment to be the new production environment. The switchover typically takes under a minute.

For more information, see Using Amazon RDS Blue/Green Deployments for database updates (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html) in the Amazon RDS User Guide and Using Amazon RDS Blue/Green Deployments for database updates (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html) in the Amazon Aurora User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation CreateBlueGreenDeployment for usage and error information.

Returned Error Codes:

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeSourceDatabaseNotSupportedFault "SourceDatabaseNotSupportedFault" The source DB instance isn't supported for a blue/green deployment.

  • ErrCodeSourceClusterNotSupportedFault "SourceClusterNotSupportedFault" The source DB cluster isn't supported for a blue/green deployment.

  • ErrCodeBlueGreenDeploymentAlreadyExistsFault "BlueGreenDeploymentAlreadyExistsFault" A blue/green deployment with the specified name already exists.

  • ErrCodeDBParameterGroupNotFoundFault "DBParameterGroupNotFound" DBParameterGroupName doesn't refer to an existing DB parameter group.

  • ErrCodeDBClusterParameterGroupNotFoundFault "DBClusterParameterGroupNotFound" DBClusterParameterGroupName doesn't refer to an existing DB cluster parameter group.

  • ErrCodeInstanceQuotaExceededFault "InstanceQuotaExceeded" The request would result in the user exceeding the allowed number of DB instances.

  • ErrCodeDBClusterQuotaExceededFault "DBClusterQuotaExceededFault" The user attempted to create a new DB cluster and the user has already reached the maximum allowed DB cluster quota.

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateBlueGreenDeployment

Example (Shared00)

To create a blue/green deployment for an RDS for MySQL DB instance The following example creates a blue/green deployment for a MySQL DB instance.

Code:

svc := rds.New(session.New())
input := &rds.CreateBlueGreenDeploymentInput{
    BlueGreenDeploymentName:    aws.String("bgd-test-instance"),
    Source:                     aws.String("arn:aws:rds:us-east-1:123456789012:db:my-db-instance"),
    TargetDBParameterGroupName: aws.String("mysql-80-group"),
    TargetEngineVersion:        aws.String("8.0"),
}

result, err := svc.CreateBlueGreenDeployment(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceNotFoundFault, aerr.Error())
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeSourceDatabaseNotSupportedFault:
            fmt.Println(rds.ErrCodeSourceDatabaseNotSupportedFault, aerr.Error())
        case rds.ErrCodeSourceClusterNotSupportedFault:
            fmt.Println(rds.ErrCodeSourceClusterNotSupportedFault, aerr.Error())
        case rds.ErrCodeBlueGreenDeploymentAlreadyExistsFault:
            fmt.Println(rds.ErrCodeBlueGreenDeploymentAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeDBParameterGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBParameterGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeDBClusterParameterGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterParameterGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeInstanceQuotaExceededFault:
            fmt.Println(rds.ErrCodeInstanceQuotaExceededFault, aerr.Error())
        case rds.ErrCodeDBClusterQuotaExceededFault:
            fmt.Println(rds.ErrCodeDBClusterQuotaExceededFault, aerr.Error())
        case rds.ErrCodeInvalidDBInstanceStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceStateFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To create a blue/green deployment for an Aurora MySQL DB cluster The following example creates a blue/green deployment for an Aurora MySQL DB cluster.

Code:

svc := rds.New(session.New())
input := &rds.CreateBlueGreenDeploymentInput{
    BlueGreenDeploymentName:           aws.String("my-blue-green-deployment"),
    Source:                            aws.String("arn:aws:rds:us-east-1:123456789012:cluster:my-aurora-mysql-cluster"),
    TargetDBClusterParameterGroupName: aws.String("mysql-80-cluster-group"),
    TargetDBParameterGroupName:        aws.String("ams-80-binlog-enabled"),
    TargetEngineVersion:               aws.String("8.0"),
}

result, err := svc.CreateBlueGreenDeployment(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceNotFoundFault, aerr.Error())
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeSourceDatabaseNotSupportedFault:
            fmt.Println(rds.ErrCodeSourceDatabaseNotSupportedFault, aerr.Error())
        case rds.ErrCodeSourceClusterNotSupportedFault:
            fmt.Println(rds.ErrCodeSourceClusterNotSupportedFault, aerr.Error())
        case rds.ErrCodeBlueGreenDeploymentAlreadyExistsFault:
            fmt.Println(rds.ErrCodeBlueGreenDeploymentAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeDBParameterGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBParameterGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeDBClusterParameterGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterParameterGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeInstanceQuotaExceededFault:
            fmt.Println(rds.ErrCodeInstanceQuotaExceededFault, aerr.Error())
        case rds.ErrCodeDBClusterQuotaExceededFault:
            fmt.Println(rds.ErrCodeDBClusterQuotaExceededFault, aerr.Error())
        case rds.ErrCodeInvalidDBInstanceStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceStateFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) CreateBlueGreenDeploymentRequest

func (c *RDS) CreateBlueGreenDeploymentRequest(input *CreateBlueGreenDeploymentInput) (req *request.Request, output *CreateBlueGreenDeploymentOutput)

CreateBlueGreenDeploymentRequest generates a "aws/request.Request" representing the client's request for the CreateBlueGreenDeployment operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateBlueGreenDeployment for more information on using the CreateBlueGreenDeployment API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreateBlueGreenDeploymentRequest method.
req, resp := client.CreateBlueGreenDeploymentRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateBlueGreenDeployment

func (*RDS) CreateBlueGreenDeploymentWithContext

func (c *RDS) CreateBlueGreenDeploymentWithContext(ctx aws.Context, input *CreateBlueGreenDeploymentInput, opts ...request.Option) (*CreateBlueGreenDeploymentOutput, error)

CreateBlueGreenDeploymentWithContext is the same as CreateBlueGreenDeployment with the addition of the ability to pass a context and additional request options.

See CreateBlueGreenDeployment for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) CreateCustomDBEngineVersion

func (c *RDS) CreateCustomDBEngineVersion(input *CreateCustomDBEngineVersionInput) (*CreateCustomDBEngineVersionOutput, error)

CreateCustomDBEngineVersion API operation for Amazon Relational Database Service.

Creates a custom DB engine version (CEV).

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation CreateCustomDBEngineVersion for usage and error information.

Returned Error Codes:

  • ErrCodeCustomDBEngineVersionAlreadyExistsFault "CustomDBEngineVersionAlreadyExistsFault" A CEV with the specified name already exists.

  • ErrCodeCustomDBEngineVersionQuotaExceededFault "CustomDBEngineVersionQuotaExceededFault" You have exceeded your CEV quota.

  • ErrCodeEc2ImagePropertiesNotSupportedFault "Ec2ImagePropertiesNotSupportedFault" The AMI configuration prerequisite has not been met.

  • ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" An error occurred accessing an Amazon Web Services KMS key.

  • ErrCodeCreateCustomDBEngineVersionFault "CreateCustomDBEngineVersionFault" An error occurred while trying to create the CEV.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateCustomDBEngineVersion

func (*RDS) CreateCustomDBEngineVersionRequest

func (c *RDS) CreateCustomDBEngineVersionRequest(input *CreateCustomDBEngineVersionInput) (req *request.Request, output *CreateCustomDBEngineVersionOutput)

CreateCustomDBEngineVersionRequest generates a "aws/request.Request" representing the client's request for the CreateCustomDBEngineVersion operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateCustomDBEngineVersion for more information on using the CreateCustomDBEngineVersion API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreateCustomDBEngineVersionRequest method.
req, resp := client.CreateCustomDBEngineVersionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateCustomDBEngineVersion

func (*RDS) CreateCustomDBEngineVersionWithContext

func (c *RDS) CreateCustomDBEngineVersionWithContext(ctx aws.Context, input *CreateCustomDBEngineVersionInput, opts ...request.Option) (*CreateCustomDBEngineVersionOutput, error)

CreateCustomDBEngineVersionWithContext is the same as CreateCustomDBEngineVersion with the addition of the ability to pass a context and additional request options.

See CreateCustomDBEngineVersion for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) CreateDBCluster

func (c *RDS) CreateDBCluster(input *CreateDBClusterInput) (*CreateDBClusterOutput, error)

CreateDBCluster API operation for Amazon Relational Database Service.

Creates a new Amazon Aurora DB cluster or Multi-AZ DB cluster.

If you create an Aurora DB cluster, the request creates an empty cluster. You must explicitly create the writer instance for your DB cluster using the CreateDBInstance (https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBInstance.html) operation. If you create a Multi-AZ DB cluster, the request creates a writer and two reader DB instances for you, each in a different Availability Zone.

You can use the ReplicationSourceIdentifier parameter to create an Amazon Aurora DB cluster as a read replica of another DB cluster or Amazon RDS for MySQL or PostgreSQL DB instance. For more information about Amazon Aurora, see What is Amazon Aurora? (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html) in the Amazon Aurora User Guide.

You can also use the ReplicationSourceIdentifier parameter to create a Multi-AZ DB cluster read replica with an RDS for MySQL or PostgreSQL DB instance as the source. For more information about Multi-AZ DB clusters, see Multi-AZ DB cluster deployments (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation CreateDBCluster for usage and error information.

Returned Error Codes:

  • ErrCodeDBClusterAlreadyExistsFault "DBClusterAlreadyExistsFault" The user already has a DB cluster with the given identifier.

  • ErrCodeInsufficientDBInstanceCapacityFault "InsufficientDBInstanceCapacity" The specified DB instance class isn't available in the specified Availability Zone.

  • ErrCodeInsufficientStorageClusterCapacityFault "InsufficientStorageClusterCapacity" There is insufficient storage available for the current action. You might be able to resolve this error by updating your subnet group to use different Availability Zones that have more storage available.

  • ErrCodeDBClusterQuotaExceededFault "DBClusterQuotaExceededFault" The user attempted to create a new DB cluster and the user has already reached the maximum allowed DB cluster quota.

  • ErrCodeStorageQuotaExceededFault "StorageQuotaExceeded" The request would result in the user exceeding the allowed amount of storage available across all DB instances.

  • ErrCodeDBSubnetGroupNotFoundFault "DBSubnetGroupNotFoundFault" DBSubnetGroupName doesn't refer to an existing DB subnet group.

  • ErrCodeInvalidVPCNetworkStateFault "InvalidVPCNetworkStateFault" The DB subnet group doesn't cover all Availability Zones after it's created because of users' change.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeInvalidDBSubnetGroupFault "InvalidDBSubnetGroupFault" The DBSubnetGroup doesn't belong to the same VPC as that of an existing cross-region read replica of the same source instance.

  • ErrCodeInvalidDBSubnetGroupStateFault "InvalidDBSubnetGroupStateFault" The DB subnet group cannot be deleted because it's in use.

  • ErrCodeInvalidSubnet "InvalidSubnet" The requested subnet is invalid, or multiple subnets were requested that are not all in a common VPC.

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

  • ErrCodeDBClusterParameterGroupNotFoundFault "DBClusterParameterGroupNotFound" DBClusterParameterGroupName doesn't refer to an existing DB cluster parameter group.

  • ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" An error occurred accessing an Amazon Web Services KMS key.

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

  • ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs "DBSubnetGroupDoesNotCoverEnoughAZs" Subnets in the DB subnet group should cover at least two Availability Zones unless there is only one Availability Zone.

  • ErrCodeGlobalClusterNotFoundFault "GlobalClusterNotFoundFault" The GlobalClusterIdentifier doesn't refer to an existing global database cluster.

  • ErrCodeInvalidGlobalClusterStateFault "InvalidGlobalClusterStateFault" The global cluster is in an invalid state and can't perform the requested operation.

  • ErrCodeDomainNotFoundFault "DomainNotFoundFault" Domain doesn't refer to an existing Active Directory domain.

  • ErrCodeOptionGroupNotFoundFault "OptionGroupNotFoundFault" The specified option group could not be found.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBCluster

Example (Shared00)

To create a MySQL 5.7-compatible DB cluster The following example creates a MySQL 5.7-compatible Aurora DB cluster.

Code:

svc := rds.New(session.New())
input := &rds.CreateDBClusterInput{
    DBClusterIdentifier: aws.String("sample-cluster"),
    DBSubnetGroupName:   aws.String("default"),
    Engine:              aws.String("aurora-mysql"),
    EngineVersion:       aws.String("5.7.12"),
    MasterUserPassword:  aws.String("mypassword"),
    MasterUsername:      aws.String("admin"),
    VpcSecurityGroupIds: []*string{
        aws.String("sg-0b91305example"),
    },
}

result, err := svc.CreateDBCluster(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBClusterAlreadyExistsFault:
            fmt.Println(rds.ErrCodeDBClusterAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeInsufficientDBInstanceCapacityFault:
            fmt.Println(rds.ErrCodeInsufficientDBInstanceCapacityFault, aerr.Error())
        case rds.ErrCodeInsufficientStorageClusterCapacityFault:
            fmt.Println(rds.ErrCodeInsufficientStorageClusterCapacityFault, aerr.Error())
        case rds.ErrCodeDBClusterQuotaExceededFault:
            fmt.Println(rds.ErrCodeDBClusterQuotaExceededFault, aerr.Error())
        case rds.ErrCodeStorageQuotaExceededFault:
            fmt.Println(rds.ErrCodeStorageQuotaExceededFault, aerr.Error())
        case rds.ErrCodeDBSubnetGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBSubnetGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidVPCNetworkStateFault:
            fmt.Println(rds.ErrCodeInvalidVPCNetworkStateFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        case rds.ErrCodeInvalidDBSubnetGroupFault:
            fmt.Println(rds.ErrCodeInvalidDBSubnetGroupFault, aerr.Error())
        case rds.ErrCodeInvalidDBSubnetGroupStateFault:
            fmt.Println(rds.ErrCodeInvalidDBSubnetGroupStateFault, aerr.Error())
        case rds.ErrCodeInvalidSubnet:
            fmt.Println(rds.ErrCodeInvalidSubnet, aerr.Error())
        case rds.ErrCodeInvalidDBInstanceStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceStateFault, aerr.Error())
        case rds.ErrCodeDBClusterParameterGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterParameterGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeKMSKeyNotAccessibleFault:
            fmt.Println(rds.ErrCodeKMSKeyNotAccessibleFault, aerr.Error())
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceNotFoundFault, aerr.Error())
        case rds.ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs:
            fmt.Println(rds.ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs, aerr.Error())
        case rds.ErrCodeGlobalClusterNotFoundFault:
            fmt.Println(rds.ErrCodeGlobalClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidGlobalClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidGlobalClusterStateFault, aerr.Error())
        case rds.ErrCodeDomainNotFoundFault:
            fmt.Println(rds.ErrCodeDomainNotFoundFault, aerr.Error())
        case rds.ErrCodeOptionGroupNotFoundFault:
            fmt.Println(rds.ErrCodeOptionGroupNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To create a PostgreSQL-compatible DB cluster The following example creates a PostgreSQL-compatible Aurora DB cluster.

Code:

svc := rds.New(session.New())
input := &rds.CreateDBClusterInput{
    DBClusterIdentifier: aws.String("sample-pg-cluster"),
    DBSubnetGroupName:   aws.String("default"),
    Engine:              aws.String("aurora-postgresql"),
    MasterUserPassword:  aws.String("mypassword"),
    MasterUsername:      aws.String("admin"),
    VpcSecurityGroupIds: []*string{
        aws.String("sg-0b91305example"),
    },
}

result, err := svc.CreateDBCluster(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBClusterAlreadyExistsFault:
            fmt.Println(rds.ErrCodeDBClusterAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeInsufficientDBInstanceCapacityFault:
            fmt.Println(rds.ErrCodeInsufficientDBInstanceCapacityFault, aerr.Error())
        case rds.ErrCodeInsufficientStorageClusterCapacityFault:
            fmt.Println(rds.ErrCodeInsufficientStorageClusterCapacityFault, aerr.Error())
        case rds.ErrCodeDBClusterQuotaExceededFault:
            fmt.Println(rds.ErrCodeDBClusterQuotaExceededFault, aerr.Error())
        case rds.ErrCodeStorageQuotaExceededFault:
            fmt.Println(rds.ErrCodeStorageQuotaExceededFault, aerr.Error())
        case rds.ErrCodeDBSubnetGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBSubnetGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidVPCNetworkStateFault:
            fmt.Println(rds.ErrCodeInvalidVPCNetworkStateFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        case rds.ErrCodeInvalidDBSubnetGroupFault:
            fmt.Println(rds.ErrCodeInvalidDBSubnetGroupFault, aerr.Error())
        case rds.ErrCodeInvalidDBSubnetGroupStateFault:
            fmt.Println(rds.ErrCodeInvalidDBSubnetGroupStateFault, aerr.Error())
        case rds.ErrCodeInvalidSubnet:
            fmt.Println(rds.ErrCodeInvalidSubnet, aerr.Error())
        case rds.ErrCodeInvalidDBInstanceStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceStateFault, aerr.Error())
        case rds.ErrCodeDBClusterParameterGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterParameterGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeKMSKeyNotAccessibleFault:
            fmt.Println(rds.ErrCodeKMSKeyNotAccessibleFault, aerr.Error())
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceNotFoundFault, aerr.Error())
        case rds.ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs:
            fmt.Println(rds.ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs, aerr.Error())
        case rds.ErrCodeGlobalClusterNotFoundFault:
            fmt.Println(rds.ErrCodeGlobalClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidGlobalClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidGlobalClusterStateFault, aerr.Error())
        case rds.ErrCodeDomainNotFoundFault:
            fmt.Println(rds.ErrCodeDomainNotFoundFault, aerr.Error())
        case rds.ErrCodeOptionGroupNotFoundFault:
            fmt.Println(rds.ErrCodeOptionGroupNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) CreateDBClusterEndpoint

func (c *RDS) CreateDBClusterEndpoint(input *CreateDBClusterEndpointInput) (*CreateDBClusterEndpointOutput, error)

CreateDBClusterEndpoint API operation for Amazon Relational Database Service.

Creates a new custom endpoint and associates it with an Amazon Aurora DB cluster.

This action applies only to Aurora DB clusters.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation CreateDBClusterEndpoint for usage and error information.

Returned Error Codes:

  • ErrCodeDBClusterEndpointQuotaExceededFault "DBClusterEndpointQuotaExceededFault" The cluster already has the maximum number of custom endpoints.

  • ErrCodeDBClusterEndpointAlreadyExistsFault "DBClusterEndpointAlreadyExistsFault" The specified custom endpoint can't be created because it already exists.

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBClusterEndpoint

Example (Shared00)

To create a custom DB cluster endpoint The following example creates a custom DB cluster endpoint and associate it with the specified Aurora DB cluster.

Code:

svc := rds.New(session.New())
input := &rds.CreateDBClusterEndpointInput{
    DBClusterEndpointIdentifier: aws.String("mycustomendpoint"),
    DBClusterIdentifier:         aws.String("mydbcluster"),
    EndpointType:                aws.String("reader"),
    StaticMembers: []*string{
        aws.String("dbinstance1"),
        aws.String("dbinstance2"),
    },
}

result, err := svc.CreateDBClusterEndpoint(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBClusterEndpointQuotaExceededFault:
            fmt.Println(rds.ErrCodeDBClusterEndpointQuotaExceededFault, aerr.Error())
        case rds.ErrCodeDBClusterEndpointAlreadyExistsFault:
            fmt.Println(rds.ErrCodeDBClusterEndpointAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        case rds.ErrCodeDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBInstanceStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceStateFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) CreateDBClusterEndpointRequest

func (c *RDS) CreateDBClusterEndpointRequest(input *CreateDBClusterEndpointInput) (req *request.Request, output *CreateDBClusterEndpointOutput)

CreateDBClusterEndpointRequest generates a "aws/request.Request" representing the client's request for the CreateDBClusterEndpoint operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateDBClusterEndpoint for more information on using the CreateDBClusterEndpoint API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreateDBClusterEndpointRequest method.
req, resp := client.CreateDBClusterEndpointRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBClusterEndpoint

func (*RDS) CreateDBClusterEndpointWithContext

func (c *RDS) CreateDBClusterEndpointWithContext(ctx aws.Context, input *CreateDBClusterEndpointInput, opts ...request.Option) (*CreateDBClusterEndpointOutput, error)

CreateDBClusterEndpointWithContext is the same as CreateDBClusterEndpoint with the addition of the ability to pass a context and additional request options.

See CreateDBClusterEndpoint for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) CreateDBClusterParameterGroup

func (c *RDS) CreateDBClusterParameterGroup(input *CreateDBClusterParameterGroupInput) (*CreateDBClusterParameterGroupOutput, error)

CreateDBClusterParameterGroup API operation for Amazon Relational Database Service.

Creates a new DB cluster parameter group.

Parameters in a DB cluster parameter group apply to all of the instances in a DB cluster.

A DB cluster parameter group is initially created with the default parameters for the database engine used by instances in the DB cluster. To provide custom values for any of the parameters, you must modify the group after creating it using ModifyDBClusterParameterGroup. Once you've created a DB cluster parameter group, you need to associate it with your DB cluster using ModifyDBCluster.

When you associate a new DB cluster parameter group with a running Aurora DB cluster, reboot the DB instances in the DB cluster without failover for the new DB cluster parameter group and associated settings to take effect.

When you associate a new DB cluster parameter group with a running Multi-AZ DB cluster, reboot the DB cluster without failover for the new DB cluster parameter group and associated settings to take effect.

After you create a DB cluster parameter group, you should wait at least 5 minutes before creating your first DB cluster that uses that DB cluster parameter group as the default parameter group. This allows Amazon RDS to fully complete the create action before the DB cluster parameter group is used as the default for a new DB cluster. This is especially important for parameters that are critical when creating the default database for a DB cluster, such as the character set for the default database defined by the character_set_database parameter. You can use the Parameter Groups option of the Amazon RDS console (https://console.aws.amazon.com/rds/) or the DescribeDBClusterParameters operation to verify that your DB cluster parameter group has been created or modified.

For more information on Amazon Aurora, see What is Amazon Aurora? (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html) in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation CreateDBClusterParameterGroup for usage and error information.

Returned Error Codes:

  • ErrCodeDBParameterGroupQuotaExceededFault "DBParameterGroupQuotaExceeded" The request would result in the user exceeding the allowed number of DB parameter groups.

  • ErrCodeDBParameterGroupAlreadyExistsFault "DBParameterGroupAlreadyExists" A DB parameter group with the same name exists.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBClusterParameterGroup

Example (Shared00)

To create a DB cluster parameter group The following example creates a DB cluster parameter group.

Code:

svc := rds.New(session.New())
input := &rds.CreateDBClusterParameterGroupInput{
    DBClusterParameterGroupName: aws.String("mydbclusterparametergroup"),
    DBParameterGroupFamily:      aws.String("aurora5.6"),
    Description:                 aws.String("My new cluster parameter group"),
}

result, err := svc.CreateDBClusterParameterGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBParameterGroupQuotaExceededFault:
            fmt.Println(rds.ErrCodeDBParameterGroupQuotaExceededFault, aerr.Error())
        case rds.ErrCodeDBParameterGroupAlreadyExistsFault:
            fmt.Println(rds.ErrCodeDBParameterGroupAlreadyExistsFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) CreateDBClusterParameterGroupRequest

func (c *RDS) CreateDBClusterParameterGroupRequest(input *CreateDBClusterParameterGroupInput) (req *request.Request, output *CreateDBClusterParameterGroupOutput)

CreateDBClusterParameterGroupRequest generates a "aws/request.Request" representing the client's request for the CreateDBClusterParameterGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateDBClusterParameterGroup for more information on using the CreateDBClusterParameterGroup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreateDBClusterParameterGroupRequest method.
req, resp := client.CreateDBClusterParameterGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBClusterParameterGroup

func (*RDS) CreateDBClusterParameterGroupWithContext

func (c *RDS) CreateDBClusterParameterGroupWithContext(ctx aws.Context, input *CreateDBClusterParameterGroupInput, opts ...request.Option) (*CreateDBClusterParameterGroupOutput, error)

CreateDBClusterParameterGroupWithContext is the same as CreateDBClusterParameterGroup with the addition of the ability to pass a context and additional request options.

See CreateDBClusterParameterGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) CreateDBClusterRequest

func (c *RDS) CreateDBClusterRequest(input *CreateDBClusterInput) (req *request.Request, output *CreateDBClusterOutput)

CreateDBClusterRequest generates a "aws/request.Request" representing the client's request for the CreateDBCluster operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateDBCluster for more information on using the CreateDBCluster API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreateDBClusterRequest method.
req, resp := client.CreateDBClusterRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBCluster

func (*RDS) CreateDBClusterSnapshot

func (c *RDS) CreateDBClusterSnapshot(input *CreateDBClusterSnapshotInput) (*CreateDBClusterSnapshotOutput, error)

CreateDBClusterSnapshot API operation for Amazon Relational Database Service.

Creates a snapshot of a DB cluster.

For more information on Amazon Aurora, see What is Amazon Aurora? (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html) in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation CreateDBClusterSnapshot for usage and error information.

Returned Error Codes:

  • ErrCodeDBClusterSnapshotAlreadyExistsFault "DBClusterSnapshotAlreadyExistsFault" The user already has a DB cluster snapshot with the given identifier.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeSnapshotQuotaExceededFault "SnapshotQuotaExceeded" The request would result in the user exceeding the allowed number of DB snapshots.

  • ErrCodeInvalidDBClusterSnapshotStateFault "InvalidDBClusterSnapshotStateFault" The supplied value isn't a valid DB cluster snapshot state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBClusterSnapshot

Example (Shared00)

To create a DB cluster snapshot The following example creates a DB cluster snapshot.

Code:

svc := rds.New(session.New())
input := &rds.CreateDBClusterSnapshotInput{
    DBClusterIdentifier:         aws.String("mydbclustersnapshot"),
    DBClusterSnapshotIdentifier: aws.String("mydbcluster"),
}

result, err := svc.CreateDBClusterSnapshot(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBClusterSnapshotAlreadyExistsFault:
            fmt.Println(rds.ErrCodeDBClusterSnapshotAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeSnapshotQuotaExceededFault:
            fmt.Println(rds.ErrCodeSnapshotQuotaExceededFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterSnapshotStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterSnapshotStateFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) CreateDBClusterSnapshotRequest

func (c *RDS) CreateDBClusterSnapshotRequest(input *CreateDBClusterSnapshotInput) (req *request.Request, output *CreateDBClusterSnapshotOutput)

CreateDBClusterSnapshotRequest generates a "aws/request.Request" representing the client's request for the CreateDBClusterSnapshot operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateDBClusterSnapshot for more information on using the CreateDBClusterSnapshot API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreateDBClusterSnapshotRequest method.
req, resp := client.CreateDBClusterSnapshotRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBClusterSnapshot

func (*RDS) CreateDBClusterSnapshotWithContext

func (c *RDS) CreateDBClusterSnapshotWithContext(ctx aws.Context, input *CreateDBClusterSnapshotInput, opts ...request.Option) (*CreateDBClusterSnapshotOutput, error)

CreateDBClusterSnapshotWithContext is the same as CreateDBClusterSnapshot with the addition of the ability to pass a context and additional request options.

See CreateDBClusterSnapshot for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) CreateDBClusterWithContext

func (c *RDS) CreateDBClusterWithContext(ctx aws.Context, input *CreateDBClusterInput, opts ...request.Option) (*CreateDBClusterOutput, error)

CreateDBClusterWithContext is the same as CreateDBCluster with the addition of the ability to pass a context and additional request options.

See CreateDBCluster for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) CreateDBInstance

func (c *RDS) CreateDBInstance(input *CreateDBInstanceInput) (*CreateDBInstanceOutput, error)

CreateDBInstance API operation for Amazon Relational Database Service.

Creates a new DB instance.

The new DB instance can be an RDS DB instance, or it can be a DB instance in an Aurora DB cluster. For an Aurora DB cluster, you can call this operation multiple times to add more than one DB instance to the cluster.

For more information about creating an RDS DB instance, see Creating an Amazon RDS DB instance (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_CreateDBInstance.html) in the Amazon RDS User Guide.

For more information about creating a DB instance in an Aurora DB cluster, see Creating an Amazon Aurora DB cluster (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.CreateInstance.html) in the Amazon Aurora User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation CreateDBInstance for usage and error information.

Returned Error Codes:

  • ErrCodeDBInstanceAlreadyExistsFault "DBInstanceAlreadyExists" The user already has a DB instance with the given identifier.

  • ErrCodeInsufficientDBInstanceCapacityFault "InsufficientDBInstanceCapacity" The specified DB instance class isn't available in the specified Availability Zone.

  • ErrCodeDBParameterGroupNotFoundFault "DBParameterGroupNotFound" DBParameterGroupName doesn't refer to an existing DB parameter group.

  • ErrCodeDBSecurityGroupNotFoundFault "DBSecurityGroupNotFound" DBSecurityGroupName doesn't refer to an existing DB security group.

  • ErrCodeInstanceQuotaExceededFault "InstanceQuotaExceeded" The request would result in the user exceeding the allowed number of DB instances.

  • ErrCodeStorageQuotaExceededFault "StorageQuotaExceeded" The request would result in the user exceeding the allowed amount of storage available across all DB instances.

  • ErrCodeDBSubnetGroupNotFoundFault "DBSubnetGroupNotFoundFault" DBSubnetGroupName doesn't refer to an existing DB subnet group.

  • ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs "DBSubnetGroupDoesNotCoverEnoughAZs" Subnets in the DB subnet group should cover at least two Availability Zones unless there is only one Availability Zone.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeInvalidSubnet "InvalidSubnet" The requested subnet is invalid, or multiple subnets were requested that are not all in a common VPC.

  • ErrCodeInvalidVPCNetworkStateFault "InvalidVPCNetworkStateFault" The DB subnet group doesn't cover all Availability Zones after it's created because of users' change.

  • ErrCodeProvisionedIopsNotAvailableInAZFault "ProvisionedIopsNotAvailableInAZFault" Provisioned IOPS not available in the specified Availability Zone.

  • ErrCodeOptionGroupNotFoundFault "OptionGroupNotFoundFault" The specified option group could not be found.

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeStorageTypeNotSupportedFault "StorageTypeNotSupported" The specified StorageType can't be associated with the DB instance.

  • ErrCodeAuthorizationNotFoundFault "AuthorizationNotFound" The specified CIDR IP range or Amazon EC2 security group might not be authorized for the specified DB security group.

    Or, RDS might not be authorized to perform necessary actions using IAM on your behalf.

  • ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" An error occurred accessing an Amazon Web Services KMS key.

  • ErrCodeDomainNotFoundFault "DomainNotFoundFault" Domain doesn't refer to an existing Active Directory domain.

  • ErrCodeBackupPolicyNotFoundFault "BackupPolicyNotFoundFault"

  • ErrCodeNetworkTypeNotSupported "NetworkTypeNotSupported" The network type is invalid for the DB instance. Valid nework type values are IPV4 and DUAL.

  • ErrCodeCertificateNotFoundFault "CertificateNotFound" CertificateIdentifier doesn't refer to an existing certificate.

  • ErrCodeTenantDatabaseQuotaExceededFault "TenantDatabaseQuotaExceeded" You attempted to create more tenant databases than are permitted in your Amazon Web Services account.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance

Example (Shared00)

To create a DB instance The following example uses the required options to launch a new DB instance.

Code:

svc := rds.New(session.New())
input := &rds.CreateDBInstanceInput{
    AllocatedStorage:     aws.Int64(20),
    DBInstanceClass:      aws.String("db.t3.micro"),
    DBInstanceIdentifier: aws.String("test-mysql-instance"),
    Engine:               aws.String("mysql"),
    MasterUserPassword:   aws.String("secret99"),
    MasterUsername:       aws.String("admin"),
}

result, err := svc.CreateDBInstance(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBInstanceAlreadyExistsFault:
            fmt.Println(rds.ErrCodeDBInstanceAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeInsufficientDBInstanceCapacityFault:
            fmt.Println(rds.ErrCodeInsufficientDBInstanceCapacityFault, aerr.Error())
        case rds.ErrCodeDBParameterGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBParameterGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeDBSecurityGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBSecurityGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeInstanceQuotaExceededFault:
            fmt.Println(rds.ErrCodeInstanceQuotaExceededFault, aerr.Error())
        case rds.ErrCodeStorageQuotaExceededFault:
            fmt.Println(rds.ErrCodeStorageQuotaExceededFault, aerr.Error())
        case rds.ErrCodeDBSubnetGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBSubnetGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs:
            fmt.Println(rds.ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        case rds.ErrCodeInvalidSubnet:
            fmt.Println(rds.ErrCodeInvalidSubnet, aerr.Error())
        case rds.ErrCodeInvalidVPCNetworkStateFault:
            fmt.Println(rds.ErrCodeInvalidVPCNetworkStateFault, aerr.Error())
        case rds.ErrCodeProvisionedIopsNotAvailableInAZFault:
            fmt.Println(rds.ErrCodeProvisionedIopsNotAvailableInAZFault, aerr.Error())
        case rds.ErrCodeOptionGroupNotFoundFault:
            fmt.Println(rds.ErrCodeOptionGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeStorageTypeNotSupportedFault:
            fmt.Println(rds.ErrCodeStorageTypeNotSupportedFault, aerr.Error())
        case rds.ErrCodeAuthorizationNotFoundFault:
            fmt.Println(rds.ErrCodeAuthorizationNotFoundFault, aerr.Error())
        case rds.ErrCodeKMSKeyNotAccessibleFault:
            fmt.Println(rds.ErrCodeKMSKeyNotAccessibleFault, aerr.Error())
        case rds.ErrCodeDomainNotFoundFault:
            fmt.Println(rds.ErrCodeDomainNotFoundFault, aerr.Error())
        case rds.ErrCodeBackupPolicyNotFoundFault:
            fmt.Println(rds.ErrCodeBackupPolicyNotFoundFault, aerr.Error())
        case rds.ErrCodeNetworkTypeNotSupported:
            fmt.Println(rds.ErrCodeNetworkTypeNotSupported, aerr.Error())
        case rds.ErrCodeCertificateNotFoundFault:
            fmt.Println(rds.ErrCodeCertificateNotFoundFault, aerr.Error())
        case rds.ErrCodeTenantDatabaseQuotaExceededFault:
            fmt.Println(rds.ErrCodeTenantDatabaseQuotaExceededFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) CreateDBInstanceReadReplica

func (c *RDS) CreateDBInstanceReadReplica(input *CreateDBInstanceReadReplicaInput) (*CreateDBInstanceReadReplicaOutput, error)

CreateDBInstanceReadReplica API operation for Amazon Relational Database Service.

Creates a new DB instance that acts as a read replica for an existing source DB instance or Multi-AZ DB cluster. You can create a read replica for a DB instance running Db2, MariaDB, MySQL, Oracle, PostgreSQL, or SQL Server. You can create a read replica for a Multi-AZ DB cluster running MySQL or PostgreSQL. For more information, see Working with read replicas (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReadRepl.html) and Migrating from a Multi-AZ DB cluster to a DB instance using a read replica (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html#multi-az-db-clusters-migrating-to-instance-with-read-replica) in the Amazon RDS User Guide.

Amazon Aurora doesn't support this operation. To create a DB instance for an Aurora DB cluster, use the CreateDBInstance operation.

All read replica DB instances are created with backups disabled. All other attributes (including DB security groups and DB parameter groups) are inherited from the source DB instance or cluster, except as specified.

Your source DB instance or cluster must have backup retention enabled.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation CreateDBInstanceReadReplica for usage and error information.

Returned Error Codes:

  • ErrCodeDBInstanceAlreadyExistsFault "DBInstanceAlreadyExists" The user already has a DB instance with the given identifier.

  • ErrCodeInsufficientDBInstanceCapacityFault "InsufficientDBInstanceCapacity" The specified DB instance class isn't available in the specified Availability Zone.

  • ErrCodeDBParameterGroupNotFoundFault "DBParameterGroupNotFound" DBParameterGroupName doesn't refer to an existing DB parameter group.

  • ErrCodeDBSecurityGroupNotFoundFault "DBSecurityGroupNotFound" DBSecurityGroupName doesn't refer to an existing DB security group.

  • ErrCodeInstanceQuotaExceededFault "InstanceQuotaExceeded" The request would result in the user exceeding the allowed number of DB instances.

  • ErrCodeStorageQuotaExceededFault "StorageQuotaExceeded" The request would result in the user exceeding the allowed amount of storage available across all DB instances.

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeDBSubnetGroupNotFoundFault "DBSubnetGroupNotFoundFault" DBSubnetGroupName doesn't refer to an existing DB subnet group.

  • ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs "DBSubnetGroupDoesNotCoverEnoughAZs" Subnets in the DB subnet group should cover at least two Availability Zones unless there is only one Availability Zone.

  • ErrCodeInvalidSubnet "InvalidSubnet" The requested subnet is invalid, or multiple subnets were requested that are not all in a common VPC.

  • ErrCodeInvalidVPCNetworkStateFault "InvalidVPCNetworkStateFault" The DB subnet group doesn't cover all Availability Zones after it's created because of users' change.

  • ErrCodeProvisionedIopsNotAvailableInAZFault "ProvisionedIopsNotAvailableInAZFault" Provisioned IOPS not available in the specified Availability Zone.

  • ErrCodeOptionGroupNotFoundFault "OptionGroupNotFoundFault" The specified option group could not be found.

  • ErrCodeDBSubnetGroupNotAllowedFault "DBSubnetGroupNotAllowedFault" The DBSubnetGroup shouldn't be specified while creating read replicas that lie in the same region as the source instance.

  • ErrCodeInvalidDBSubnetGroupFault "InvalidDBSubnetGroupFault" The DBSubnetGroup doesn't belong to the same VPC as that of an existing cross-region read replica of the same source instance.

  • ErrCodeStorageTypeNotSupportedFault "StorageTypeNotSupported" The specified StorageType can't be associated with the DB instance.

  • ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" An error occurred accessing an Amazon Web Services KMS key.

  • ErrCodeDomainNotFoundFault "DomainNotFoundFault" Domain doesn't refer to an existing Active Directory domain.

  • ErrCodeNetworkTypeNotSupported "NetworkTypeNotSupported" The network type is invalid for the DB instance. Valid nework type values are IPV4 and DUAL.

  • ErrCodeTenantDatabaseQuotaExceededFault "TenantDatabaseQuotaExceeded" You attempted to create more tenant databases than are permitted in your Amazon Web Services account.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica

Example (Shared00)

To create a DB instance read replica This example creates a read replica of an existing DB instance named test-instance. The read replica is named test-instance-repl.

Code:

svc := rds.New(session.New())
input := &rds.CreateDBInstanceReadReplicaInput{
    DBInstanceIdentifier:       aws.String("test-instance-repl"),
    SourceDBInstanceIdentifier: aws.String("test-instance"),
}

result, err := svc.CreateDBInstanceReadReplica(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBInstanceAlreadyExistsFault:
            fmt.Println(rds.ErrCodeDBInstanceAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeInsufficientDBInstanceCapacityFault:
            fmt.Println(rds.ErrCodeInsufficientDBInstanceCapacityFault, aerr.Error())
        case rds.ErrCodeDBParameterGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBParameterGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeDBSecurityGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBSecurityGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeInstanceQuotaExceededFault:
            fmt.Println(rds.ErrCodeInstanceQuotaExceededFault, aerr.Error())
        case rds.ErrCodeStorageQuotaExceededFault:
            fmt.Println(rds.ErrCodeStorageQuotaExceededFault, aerr.Error())
        case rds.ErrCodeDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceNotFoundFault, aerr.Error())
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBInstanceStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceStateFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        case rds.ErrCodeDBSubnetGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBSubnetGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs:
            fmt.Println(rds.ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs, aerr.Error())
        case rds.ErrCodeInvalidSubnet:
            fmt.Println(rds.ErrCodeInvalidSubnet, aerr.Error())
        case rds.ErrCodeInvalidVPCNetworkStateFault:
            fmt.Println(rds.ErrCodeInvalidVPCNetworkStateFault, aerr.Error())
        case rds.ErrCodeProvisionedIopsNotAvailableInAZFault:
            fmt.Println(rds.ErrCodeProvisionedIopsNotAvailableInAZFault, aerr.Error())
        case rds.ErrCodeOptionGroupNotFoundFault:
            fmt.Println(rds.ErrCodeOptionGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeDBSubnetGroupNotAllowedFault:
            fmt.Println(rds.ErrCodeDBSubnetGroupNotAllowedFault, aerr.Error())
        case rds.ErrCodeInvalidDBSubnetGroupFault:
            fmt.Println(rds.ErrCodeInvalidDBSubnetGroupFault, aerr.Error())
        case rds.ErrCodeStorageTypeNotSupportedFault:
            fmt.Println(rds.ErrCodeStorageTypeNotSupportedFault, aerr.Error())
        case rds.ErrCodeKMSKeyNotAccessibleFault:
            fmt.Println(rds.ErrCodeKMSKeyNotAccessibleFault, aerr.Error())
        case rds.ErrCodeDomainNotFoundFault:
            fmt.Println(rds.ErrCodeDomainNotFoundFault, aerr.Error())
        case rds.ErrCodeNetworkTypeNotSupported:
            fmt.Println(rds.ErrCodeNetworkTypeNotSupported, aerr.Error())
        case rds.ErrCodeTenantDatabaseQuotaExceededFault:
            fmt.Println(rds.ErrCodeTenantDatabaseQuotaExceededFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) CreateDBInstanceReadReplicaRequest

func (c *RDS) CreateDBInstanceReadReplicaRequest(input *CreateDBInstanceReadReplicaInput) (req *request.Request, output *CreateDBInstanceReadReplicaOutput)

CreateDBInstanceReadReplicaRequest generates a "aws/request.Request" representing the client's request for the CreateDBInstanceReadReplica operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateDBInstanceReadReplica for more information on using the CreateDBInstanceReadReplica API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreateDBInstanceReadReplicaRequest method.
req, resp := client.CreateDBInstanceReadReplicaRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica

func (*RDS) CreateDBInstanceReadReplicaWithContext

func (c *RDS) CreateDBInstanceReadReplicaWithContext(ctx aws.Context, input *CreateDBInstanceReadReplicaInput, opts ...request.Option) (*CreateDBInstanceReadReplicaOutput, error)

CreateDBInstanceReadReplicaWithContext is the same as CreateDBInstanceReadReplica with the addition of the ability to pass a context and additional request options.

See CreateDBInstanceReadReplica for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) CreateDBInstanceRequest

func (c *RDS) CreateDBInstanceRequest(input *CreateDBInstanceInput) (req *request.Request, output *CreateDBInstanceOutput)

CreateDBInstanceRequest generates a "aws/request.Request" representing the client's request for the CreateDBInstance operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateDBInstance for more information on using the CreateDBInstance API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreateDBInstanceRequest method.
req, resp := client.CreateDBInstanceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance

func (*RDS) CreateDBInstanceWithContext

func (c *RDS) CreateDBInstanceWithContext(ctx aws.Context, input *CreateDBInstanceInput, opts ...request.Option) (*CreateDBInstanceOutput, error)

CreateDBInstanceWithContext is the same as CreateDBInstance with the addition of the ability to pass a context and additional request options.

See CreateDBInstance for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) CreateDBParameterGroup

func (c *RDS) CreateDBParameterGroup(input *CreateDBParameterGroupInput) (*CreateDBParameterGroupOutput, error)

CreateDBParameterGroup API operation for Amazon Relational Database Service.

Creates a new DB parameter group.

A DB parameter group is initially created with the default parameters for the database engine used by the DB instance. To provide custom values for any of the parameters, you must modify the group after creating it using ModifyDBParameterGroup. Once you've created a DB parameter group, you need to associate it with your DB instance using ModifyDBInstance. When you associate a new DB parameter group with a running DB instance, you need to reboot the DB instance without failover for the new DB parameter group and associated settings to take effect.

This command doesn't apply to RDS Custom.

After you create a DB parameter group, you should wait at least 5 minutes before creating your first DB instance that uses that DB parameter group as the default parameter group. This allows Amazon RDS to fully complete the create action before the parameter group is used as the default for a new DB instance. This is especially important for parameters that are critical when creating the default database for a DB instance, such as the character set for the default database defined by the character_set_database parameter. You can use the Parameter Groups option of the Amazon RDS console (https://console.aws.amazon.com/rds/) or the DescribeDBParameters command to verify that your DB parameter group has been created or modified.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation CreateDBParameterGroup for usage and error information.

Returned Error Codes:

  • ErrCodeDBParameterGroupQuotaExceededFault "DBParameterGroupQuotaExceeded" The request would result in the user exceeding the allowed number of DB parameter groups.

  • ErrCodeDBParameterGroupAlreadyExistsFault "DBParameterGroupAlreadyExists" A DB parameter group with the same name exists.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBParameterGroup

Example (Shared00)

To create a DB parameter group The following example creates a DB parameter group.

Code:

svc := rds.New(session.New())
input := &rds.CreateDBParameterGroupInput{
    DBParameterGroupFamily: aws.String("MySQL8.0"),
    DBParameterGroupName:   aws.String("mydbparametergroup"),
    Description:            aws.String("My new parameter group"),
}

result, err := svc.CreateDBParameterGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBParameterGroupQuotaExceededFault:
            fmt.Println(rds.ErrCodeDBParameterGroupQuotaExceededFault, aerr.Error())
        case rds.ErrCodeDBParameterGroupAlreadyExistsFault:
            fmt.Println(rds.ErrCodeDBParameterGroupAlreadyExistsFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) CreateDBParameterGroupRequest

func (c *RDS) CreateDBParameterGroupRequest(input *CreateDBParameterGroupInput) (req *request.Request, output *CreateDBParameterGroupOutput)

CreateDBParameterGroupRequest generates a "aws/request.Request" representing the client's request for the CreateDBParameterGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateDBParameterGroup for more information on using the CreateDBParameterGroup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreateDBParameterGroupRequest method.
req, resp := client.CreateDBParameterGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBParameterGroup

func (*RDS) CreateDBParameterGroupWithContext

func (c *RDS) CreateDBParameterGroupWithContext(ctx aws.Context, input *CreateDBParameterGroupInput, opts ...request.Option) (*CreateDBParameterGroupOutput, error)

CreateDBParameterGroupWithContext is the same as CreateDBParameterGroup with the addition of the ability to pass a context and additional request options.

See CreateDBParameterGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) CreateDBProxy

func (c *RDS) CreateDBProxy(input *CreateDBProxyInput) (*CreateDBProxyOutput, error)

CreateDBProxy API operation for Amazon Relational Database Service.

Creates a new DB proxy.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation CreateDBProxy for usage and error information.

Returned Error Codes:

  • ErrCodeInvalidSubnet "InvalidSubnet" The requested subnet is invalid, or multiple subnets were requested that are not all in a common VPC.

  • ErrCodeDBProxyAlreadyExistsFault "DBProxyAlreadyExistsFault" The specified proxy name must be unique for all proxies owned by your Amazon Web Services account in the specified Amazon Web Services Region.

  • ErrCodeDBProxyQuotaExceededFault "DBProxyQuotaExceededFault" Your Amazon Web Services account already has the maximum number of proxies in the specified Amazon Web Services Region.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBProxy

func (*RDS) CreateDBProxyEndpoint

func (c *RDS) CreateDBProxyEndpoint(input *CreateDBProxyEndpointInput) (*CreateDBProxyEndpointOutput, error)

CreateDBProxyEndpoint API operation for Amazon Relational Database Service.

Creates a DBProxyEndpoint. Only applies to proxies that are associated with Aurora DB clusters. You can use DB proxy endpoints to specify read/write or read-only access to the DB cluster. You can also use DB proxy endpoints to access a DB proxy through a different VPC than the proxy's default VPC.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation CreateDBProxyEndpoint for usage and error information.

Returned Error Codes:

  • ErrCodeInvalidSubnet "InvalidSubnet" The requested subnet is invalid, or multiple subnets were requested that are not all in a common VPC.

  • ErrCodeDBProxyNotFoundFault "DBProxyNotFoundFault" The specified proxy name doesn't correspond to a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

  • ErrCodeDBProxyEndpointAlreadyExistsFault "DBProxyEndpointAlreadyExistsFault" The specified DB proxy endpoint name must be unique for all DB proxy endpoints owned by your Amazon Web Services account in the specified Amazon Web Services Region.

  • ErrCodeDBProxyEndpointQuotaExceededFault "DBProxyEndpointQuotaExceededFault" The DB proxy already has the maximum number of endpoints.

  • ErrCodeInvalidDBProxyStateFault "InvalidDBProxyStateFault" The requested operation can't be performed while the proxy is in this state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBProxyEndpoint

func (*RDS) CreateDBProxyEndpointRequest

func (c *RDS) CreateDBProxyEndpointRequest(input *CreateDBProxyEndpointInput) (req *request.Request, output *CreateDBProxyEndpointOutput)

CreateDBProxyEndpointRequest generates a "aws/request.Request" representing the client's request for the CreateDBProxyEndpoint operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateDBProxyEndpoint for more information on using the CreateDBProxyEndpoint API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreateDBProxyEndpointRequest method.
req, resp := client.CreateDBProxyEndpointRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBProxyEndpoint

func (*RDS) CreateDBProxyEndpointWithContext

func (c *RDS) CreateDBProxyEndpointWithContext(ctx aws.Context, input *CreateDBProxyEndpointInput, opts ...request.Option) (*CreateDBProxyEndpointOutput, error)

CreateDBProxyEndpointWithContext is the same as CreateDBProxyEndpoint with the addition of the ability to pass a context and additional request options.

See CreateDBProxyEndpoint for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) CreateDBProxyRequest

func (c *RDS) CreateDBProxyRequest(input *CreateDBProxyInput) (req *request.Request, output *CreateDBProxyOutput)

CreateDBProxyRequest generates a "aws/request.Request" representing the client's request for the CreateDBProxy operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateDBProxy for more information on using the CreateDBProxy API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreateDBProxyRequest method.
req, resp := client.CreateDBProxyRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBProxy

func (*RDS) CreateDBProxyWithContext

func (c *RDS) CreateDBProxyWithContext(ctx aws.Context, input *CreateDBProxyInput, opts ...request.Option) (*CreateDBProxyOutput, error)

CreateDBProxyWithContext is the same as CreateDBProxy with the addition of the ability to pass a context and additional request options.

See CreateDBProxy for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) CreateDBSecurityGroup

func (c *RDS) CreateDBSecurityGroup(input *CreateDBSecurityGroupInput) (*CreateDBSecurityGroupOutput, error)

CreateDBSecurityGroup API operation for Amazon Relational Database Service.

Creates a new DB security group. DB security groups control access to a DB instance.

A DB security group controls access to EC2-Classic DB instances that are not in a VPC.

EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that you migrate as soon as possible. For more information, see Migrate from EC2-Classic to a VPC (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html) in the Amazon EC2 User Guide, the blog EC2-Classic Networking is Retiring – Here’s How to Prepare (http://aws.amazon.com/blogs/aws/ec2-classic-is-retiring-heres-how-to-prepare/), and Moving a DB instance not in a VPC into a VPC (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.Non-VPC2VPC.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation CreateDBSecurityGroup for usage and error information.

Returned Error Codes:

  • ErrCodeDBSecurityGroupAlreadyExistsFault "DBSecurityGroupAlreadyExists" A DB security group with the name specified in DBSecurityGroupName already exists.

  • ErrCodeDBSecurityGroupQuotaExceededFault "QuotaExceeded.DBSecurityGroup" The request would result in the user exceeding the allowed number of DB security groups.

  • ErrCodeDBSecurityGroupNotSupportedFault "DBSecurityGroupNotSupported" A DB security group isn't allowed for this action.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSecurityGroup

Example (Shared00)

To create a DB security group. This example creates a DB security group.

Code:

svc := rds.New(session.New())
input := &rds.CreateDBSecurityGroupInput{
    DBSecurityGroupDescription: aws.String("My DB security group"),
    DBSecurityGroupName:        aws.String("mydbsecuritygroup"),
}

result, err := svc.CreateDBSecurityGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBSecurityGroupAlreadyExistsFault:
            fmt.Println(rds.ErrCodeDBSecurityGroupAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeDBSecurityGroupQuotaExceededFault:
            fmt.Println(rds.ErrCodeDBSecurityGroupQuotaExceededFault, aerr.Error())
        case rds.ErrCodeDBSecurityGroupNotSupportedFault:
            fmt.Println(rds.ErrCodeDBSecurityGroupNotSupportedFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) CreateDBSecurityGroupRequest

func (c *RDS) CreateDBSecurityGroupRequest(input *CreateDBSecurityGroupInput) (req *request.Request, output *CreateDBSecurityGroupOutput)

CreateDBSecurityGroupRequest generates a "aws/request.Request" representing the client's request for the CreateDBSecurityGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateDBSecurityGroup for more information on using the CreateDBSecurityGroup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreateDBSecurityGroupRequest method.
req, resp := client.CreateDBSecurityGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSecurityGroup

func (*RDS) CreateDBSecurityGroupWithContext

func (c *RDS) CreateDBSecurityGroupWithContext(ctx aws.Context, input *CreateDBSecurityGroupInput, opts ...request.Option) (*CreateDBSecurityGroupOutput, error)

CreateDBSecurityGroupWithContext is the same as CreateDBSecurityGroup with the addition of the ability to pass a context and additional request options.

See CreateDBSecurityGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) CreateDBShardGroup

func (c *RDS) CreateDBShardGroup(input *CreateDBShardGroupInput) (*CreateDBShardGroupOutput, error)

CreateDBShardGroup API operation for Amazon Relational Database Service.

Creates a new DB shard group for Aurora Limitless Database. You must enable Aurora Limitless Database to create a DB shard group.

Valid for: Aurora DB clusters only

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation CreateDBShardGroup for usage and error information.

Returned Error Codes:

  • ErrCodeDBShardGroupAlreadyExistsFault "DBShardGroupAlreadyExists" The specified DB shard group name must be unique in your Amazon Web Services account in the specified Amazon Web Services Region.

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeMaxDBShardGroupLimitReached "MaxDBShardGroupLimitReached" The maximum number of DB shard groups for your Amazon Web Services account in the specified Amazon Web Services Region has been reached.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeInvalidMaxAcuFault "InvalidMaxAcu" The maximum capacity of the DB shard group must be 48-7168 Aurora capacity units (ACUs).

  • ErrCodeUnsupportedDBEngineVersionFault "UnsupportedDBEngineVersion" The specified DB engine version isn't supported for Aurora Limitless Database.

  • ErrCodeInvalidVPCNetworkStateFault "InvalidVPCNetworkStateFault" The DB subnet group doesn't cover all Availability Zones after it's created because of users' change.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBShardGroup

func (*RDS) CreateDBShardGroupRequest

func (c *RDS) CreateDBShardGroupRequest(input *CreateDBShardGroupInput) (req *request.Request, output *CreateDBShardGroupOutput)

CreateDBShardGroupRequest generates a "aws/request.Request" representing the client's request for the CreateDBShardGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateDBShardGroup for more information on using the CreateDBShardGroup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreateDBShardGroupRequest method.
req, resp := client.CreateDBShardGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBShardGroup

func (*RDS) CreateDBShardGroupWithContext

func (c *RDS) CreateDBShardGroupWithContext(ctx aws.Context, input *CreateDBShardGroupInput, opts ...request.Option) (*CreateDBShardGroupOutput, error)

CreateDBShardGroupWithContext is the same as CreateDBShardGroup with the addition of the ability to pass a context and additional request options.

See CreateDBShardGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) CreateDBSnapshot

func (c *RDS) CreateDBSnapshot(input *CreateDBSnapshotInput) (*CreateDBSnapshotOutput, error)

CreateDBSnapshot API operation for Amazon Relational Database Service.

Creates a snapshot of a DB instance. The source DB instance must be in the available or storage-optimization state.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation CreateDBSnapshot for usage and error information.

Returned Error Codes:

  • ErrCodeDBSnapshotAlreadyExistsFault "DBSnapshotAlreadyExists" DBSnapshotIdentifier is already used by an existing snapshot.

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

  • ErrCodeSnapshotQuotaExceededFault "SnapshotQuotaExceeded" The request would result in the user exceeding the allowed number of DB snapshots.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSnapshot

Example (Shared00)

To create a DB snapshot The following example creates a DB snapshot.

Code:

svc := rds.New(session.New())
input := &rds.CreateDBSnapshotInput{
    DBInstanceIdentifier: aws.String("mydbsnapshot"),
    DBSnapshotIdentifier: aws.String("database-mysql"),
}

result, err := svc.CreateDBSnapshot(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBSnapshotAlreadyExistsFault:
            fmt.Println(rds.ErrCodeDBSnapshotAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeInvalidDBInstanceStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceStateFault, aerr.Error())
        case rds.ErrCodeDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceNotFoundFault, aerr.Error())
        case rds.ErrCodeSnapshotQuotaExceededFault:
            fmt.Println(rds.ErrCodeSnapshotQuotaExceededFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) CreateDBSnapshotRequest

func (c *RDS) CreateDBSnapshotRequest(input *CreateDBSnapshotInput) (req *request.Request, output *CreateDBSnapshotOutput)

CreateDBSnapshotRequest generates a "aws/request.Request" representing the client's request for the CreateDBSnapshot operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateDBSnapshot for more information on using the CreateDBSnapshot API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreateDBSnapshotRequest method.
req, resp := client.CreateDBSnapshotRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSnapshot

func (*RDS) CreateDBSnapshotWithContext

func (c *RDS) CreateDBSnapshotWithContext(ctx aws.Context, input *CreateDBSnapshotInput, opts ...request.Option) (*CreateDBSnapshotOutput, error)

CreateDBSnapshotWithContext is the same as CreateDBSnapshot with the addition of the ability to pass a context and additional request options.

See CreateDBSnapshot for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) CreateDBSubnetGroup

func (c *RDS) CreateDBSubnetGroup(input *CreateDBSubnetGroupInput) (*CreateDBSubnetGroupOutput, error)

CreateDBSubnetGroup API operation for Amazon Relational Database Service.

Creates a new DB subnet group. DB subnet groups must contain at least one subnet in at least two AZs in the Amazon Web Services Region.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation CreateDBSubnetGroup for usage and error information.

Returned Error Codes:

  • ErrCodeDBSubnetGroupAlreadyExistsFault "DBSubnetGroupAlreadyExists" DBSubnetGroupName is already used by an existing DB subnet group.

  • ErrCodeDBSubnetGroupQuotaExceededFault "DBSubnetGroupQuotaExceeded" The request would result in the user exceeding the allowed number of DB subnet groups.

  • ErrCodeDBSubnetQuotaExceededFault "DBSubnetQuotaExceededFault" The request would result in the user exceeding the allowed number of subnets in a DB subnet groups.

  • ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs "DBSubnetGroupDoesNotCoverEnoughAZs" Subnets in the DB subnet group should cover at least two Availability Zones unless there is only one Availability Zone.

  • ErrCodeInvalidSubnet "InvalidSubnet" The requested subnet is invalid, or multiple subnets were requested that are not all in a common VPC.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSubnetGroup

Example (Shared00)

To create a DB subnet group The following example creates a DB subnet group called mysubnetgroup using existing subnets.

Code:

svc := rds.New(session.New())
input := &rds.CreateDBSubnetGroupInput{
    DBSubnetGroupDescription: aws.String("test DB subnet group"),
    DBSubnetGroupName:        aws.String("mysubnetgroup"),
    SubnetIds: []*string{
        aws.String("subnet-0a1dc4e1a6f123456"),
        aws.String("subnet-070dd7ecb3aaaaaaa"),
        aws.String("subnet-00f5b198bc0abcdef"),
    },
}

result, err := svc.CreateDBSubnetGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBSubnetGroupAlreadyExistsFault:
            fmt.Println(rds.ErrCodeDBSubnetGroupAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeDBSubnetGroupQuotaExceededFault:
            fmt.Println(rds.ErrCodeDBSubnetGroupQuotaExceededFault, aerr.Error())
        case rds.ErrCodeDBSubnetQuotaExceededFault:
            fmt.Println(rds.ErrCodeDBSubnetQuotaExceededFault, aerr.Error())
        case rds.ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs:
            fmt.Println(rds.ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs, aerr.Error())
        case rds.ErrCodeInvalidSubnet:
            fmt.Println(rds.ErrCodeInvalidSubnet, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) CreateDBSubnetGroupRequest

func (c *RDS) CreateDBSubnetGroupRequest(input *CreateDBSubnetGroupInput) (req *request.Request, output *CreateDBSubnetGroupOutput)

CreateDBSubnetGroupRequest generates a "aws/request.Request" representing the client's request for the CreateDBSubnetGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateDBSubnetGroup for more information on using the CreateDBSubnetGroup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreateDBSubnetGroupRequest method.
req, resp := client.CreateDBSubnetGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSubnetGroup

func (*RDS) CreateDBSubnetGroupWithContext

func (c *RDS) CreateDBSubnetGroupWithContext(ctx aws.Context, input *CreateDBSubnetGroupInput, opts ...request.Option) (*CreateDBSubnetGroupOutput, error)

CreateDBSubnetGroupWithContext is the same as CreateDBSubnetGroup with the addition of the ability to pass a context and additional request options.

See CreateDBSubnetGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) CreateEventSubscription

func (c *RDS) CreateEventSubscription(input *CreateEventSubscriptionInput) (*CreateEventSubscriptionOutput, error)

CreateEventSubscription API operation for Amazon Relational Database Service.

Creates an RDS event notification subscription. This operation requires a topic Amazon Resource Name (ARN) created by either the RDS console, the SNS console, or the SNS API. To obtain an ARN with SNS, you must create a topic in Amazon SNS and subscribe to the topic. The ARN is displayed in the SNS console.

You can specify the type of source (SourceType) that you want to be notified of and provide a list of RDS sources (SourceIds) that triggers the events. You can also provide a list of event categories (EventCategories) for events that you want to be notified of. For example, you can specify SourceType = db-instance, SourceIds = mydbinstance1, mydbinstance2 and EventCategories = Availability, Backup.

If you specify both the SourceType and SourceIds, such as SourceType = db-instance and SourceIds = myDBInstance1, you are notified of all the db-instance events for the specified source. If you specify a SourceType but do not specify SourceIds, you receive notice of the events for that source type for all your RDS sources. If you don't specify either the SourceType or the SourceIds, you are notified of events generated from all RDS sources belonging to your customer account.

For more information about subscribing to an event for RDS DB engines, see Subscribing to Amazon RDS event notification (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.Subscribing.html) in the Amazon RDS User Guide.

For more information about subscribing to an event for Aurora DB engines, see Subscribing to Amazon RDS event notification (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Events.Subscribing.html) in the Amazon Aurora User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation CreateEventSubscription for usage and error information.

Returned Error Codes:

  • ErrCodeEventSubscriptionQuotaExceededFault "EventSubscriptionQuotaExceeded" You have reached the maximum number of event subscriptions.

  • ErrCodeSubscriptionAlreadyExistFault "SubscriptionAlreadyExist" The supplied subscription name already exists.

  • ErrCodeSNSInvalidTopicFault "SNSInvalidTopic" SNS has responded that there is a problem with the SNS topic specified.

  • ErrCodeSNSNoAuthorizationFault "SNSNoAuthorization" You do not have permission to publish to the SNS topic ARN.

  • ErrCodeSNSTopicArnNotFoundFault "SNSTopicArnNotFound" The SNS topic ARN does not exist.

  • ErrCodeSubscriptionCategoryNotFoundFault "SubscriptionCategoryNotFound" The supplied category does not exist.

  • ErrCodeSourceNotFoundFault "SourceNotFound" The requested source could not be found.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateEventSubscription

Example (Shared00)

To create an event subscription The following example creates a subscription for backup and recovery events for DB instances in the current AWS account. Notifications are sent to an Amazon Simple Notification Service topic.

Code:

svc := rds.New(session.New())
input := &rds.CreateEventSubscriptionInput{
    EventCategories: []*string{
        aws.String("backup"),
        aws.String("recovery"),
    },
    SnsTopicArn:      aws.String("arn:aws:sns:us-east-1:123456789012:interesting-events"),
    SourceType:       aws.String("db-instance"),
    SubscriptionName: aws.String("my-instance-events"),
}

result, err := svc.CreateEventSubscription(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeEventSubscriptionQuotaExceededFault:
            fmt.Println(rds.ErrCodeEventSubscriptionQuotaExceededFault, aerr.Error())
        case rds.ErrCodeSubscriptionAlreadyExistFault:
            fmt.Println(rds.ErrCodeSubscriptionAlreadyExistFault, aerr.Error())
        case rds.ErrCodeSNSInvalidTopicFault:
            fmt.Println(rds.ErrCodeSNSInvalidTopicFault, aerr.Error())
        case rds.ErrCodeSNSNoAuthorizationFault:
            fmt.Println(rds.ErrCodeSNSNoAuthorizationFault, aerr.Error())
        case rds.ErrCodeSNSTopicArnNotFoundFault:
            fmt.Println(rds.ErrCodeSNSTopicArnNotFoundFault, aerr.Error())
        case rds.ErrCodeSubscriptionCategoryNotFoundFault:
            fmt.Println(rds.ErrCodeSubscriptionCategoryNotFoundFault, aerr.Error())
        case rds.ErrCodeSourceNotFoundFault:
            fmt.Println(rds.ErrCodeSourceNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) CreateEventSubscriptionRequest

func (c *RDS) CreateEventSubscriptionRequest(input *CreateEventSubscriptionInput) (req *request.Request, output *CreateEventSubscriptionOutput)

CreateEventSubscriptionRequest generates a "aws/request.Request" representing the client's request for the CreateEventSubscription operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateEventSubscription for more information on using the CreateEventSubscription API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreateEventSubscriptionRequest method.
req, resp := client.CreateEventSubscriptionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateEventSubscription

func (*RDS) CreateEventSubscriptionWithContext

func (c *RDS) CreateEventSubscriptionWithContext(ctx aws.Context, input *CreateEventSubscriptionInput, opts ...request.Option) (*CreateEventSubscriptionOutput, error)

CreateEventSubscriptionWithContext is the same as CreateEventSubscription with the addition of the ability to pass a context and additional request options.

See CreateEventSubscription for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) CreateGlobalCluster

func (c *RDS) CreateGlobalCluster(input *CreateGlobalClusterInput) (*CreateGlobalClusterOutput, error)

CreateGlobalCluster API operation for Amazon Relational Database Service.

Creates an Aurora global database spread across multiple Amazon Web Services Regions. The global database contains a single primary cluster with read-write capability, and a read-only secondary cluster that receives data from the primary cluster through high-speed replication performed by the Aurora storage subsystem.

You can create a global database that is initially empty, and then create the primary and secondary DB clusters in the global database. Or you can specify an existing Aurora cluster during the create operation, and this cluster becomes the primary cluster of the global database.

This operation applies only to Aurora DB clusters.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation CreateGlobalCluster for usage and error information.

Returned Error Codes:

  • ErrCodeGlobalClusterAlreadyExistsFault "GlobalClusterAlreadyExistsFault" The GlobalClusterIdentifier already exists. Choose a new global database identifier (unique name) to create a new global database cluster.

  • ErrCodeGlobalClusterQuotaExceededFault "GlobalClusterQuotaExceededFault" The number of global database clusters for this account is already at the maximum allowed.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateGlobalCluster

Example (Shared00)

To create a global DB cluster The following example creates a new Aurora MySQL-compatible global DB cluster.

Code:

svc := rds.New(session.New())
input := &rds.CreateGlobalClusterInput{
    Engine:                  aws.String("aurora-mysql"),
    GlobalClusterIdentifier: aws.String("myglobalcluster"),
}

result, err := svc.CreateGlobalCluster(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeGlobalClusterAlreadyExistsFault:
            fmt.Println(rds.ErrCodeGlobalClusterAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeGlobalClusterQuotaExceededFault:
            fmt.Println(rds.ErrCodeGlobalClusterQuotaExceededFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) CreateGlobalClusterRequest

func (c *RDS) CreateGlobalClusterRequest(input *CreateGlobalClusterInput) (req *request.Request, output *CreateGlobalClusterOutput)

CreateGlobalClusterRequest generates a "aws/request.Request" representing the client's request for the CreateGlobalCluster operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateGlobalCluster for more information on using the CreateGlobalCluster API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreateGlobalClusterRequest method.
req, resp := client.CreateGlobalClusterRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateGlobalCluster

func (*RDS) CreateGlobalClusterWithContext

func (c *RDS) CreateGlobalClusterWithContext(ctx aws.Context, input *CreateGlobalClusterInput, opts ...request.Option) (*CreateGlobalClusterOutput, error)

CreateGlobalClusterWithContext is the same as CreateGlobalCluster with the addition of the ability to pass a context and additional request options.

See CreateGlobalCluster for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) CreateIntegration

func (c *RDS) CreateIntegration(input *CreateIntegrationInput) (*CreateIntegrationOutput, error)

CreateIntegration API operation for Amazon Relational Database Service.

Creates a zero-ETL integration with Amazon Redshift.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation CreateIntegration for usage and error information.

Returned Error Codes:

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

  • ErrCodeIntegrationAlreadyExistsFault "IntegrationAlreadyExistsFault" The integration you are trying to create already exists.

  • ErrCodeIntegrationQuotaExceededFault "IntegrationQuotaExceededFault" You can't crate any more zero-ETL integrations because the quota has been reached.

  • ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" An error occurred accessing an Amazon Web Services KMS key.

  • ErrCodeIntegrationConflictOperationFault "IntegrationConflictOperationFault" A conflicting conditional operation is currently in progress against this resource. Typically occurs when there are multiple requests being made to the same resource at the same time, and these requests conflict with each other.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateIntegration

Example (Shared00)

To create a zero-ETL integration The following example creates a zero-ETL integration with Amazon Redshift.

Code:

svc := rds.New(session.New())
input := &rds.CreateIntegrationInput{
    IntegrationName: aws.String("my-integration"),
    SourceArn:       aws.String("arn:aws:rds:us-east-1:123456789012:cluster:my-cluster"),
    TargetArn:       aws.String("arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8"),
}

result, err := svc.CreateIntegration(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceNotFoundFault, aerr.Error())
        case rds.ErrCodeIntegrationAlreadyExistsFault:
            fmt.Println(rds.ErrCodeIntegrationAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeIntegrationQuotaExceededFault:
            fmt.Println(rds.ErrCodeIntegrationQuotaExceededFault, aerr.Error())
        case rds.ErrCodeKMSKeyNotAccessibleFault:
            fmt.Println(rds.ErrCodeKMSKeyNotAccessibleFault, aerr.Error())
        case rds.ErrCodeIntegrationConflictOperationFault:
            fmt.Println(rds.ErrCodeIntegrationConflictOperationFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) CreateIntegrationRequest

func (c *RDS) CreateIntegrationRequest(input *CreateIntegrationInput) (req *request.Request, output *CreateIntegrationOutput)

CreateIntegrationRequest generates a "aws/request.Request" representing the client's request for the CreateIntegration operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateIntegration for more information on using the CreateIntegration API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreateIntegrationRequest method.
req, resp := client.CreateIntegrationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateIntegration

func (*RDS) CreateIntegrationWithContext

func (c *RDS) CreateIntegrationWithContext(ctx aws.Context, input *CreateIntegrationInput, opts ...request.Option) (*CreateIntegrationOutput, error)

CreateIntegrationWithContext is the same as CreateIntegration with the addition of the ability to pass a context and additional request options.

See CreateIntegration for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) CreateOptionGroup

func (c *RDS) CreateOptionGroup(input *CreateOptionGroupInput) (*CreateOptionGroupOutput, error)

CreateOptionGroup API operation for Amazon Relational Database Service.

Creates a new option group. You can create up to 20 option groups.

This command doesn't apply to RDS Custom.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation CreateOptionGroup for usage and error information.

Returned Error Codes:

  • ErrCodeOptionGroupAlreadyExistsFault "OptionGroupAlreadyExistsFault" The option group you are trying to create already exists.

  • ErrCodeOptionGroupQuotaExceededFault "OptionGroupQuotaExceededFault" The quota of 20 option groups was exceeded for this Amazon Web Services account.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateOptionGroup

Example (Shared00)

To Create an Amazon RDS option group The following example creates a new Amazon RDS option group for Oracle MySQL version 8,0 named MyOptionGroup.

Code:

svc := rds.New(session.New())
input := &rds.CreateOptionGroupInput{
    EngineName:             aws.String("mysql"),
    MajorEngineVersion:     aws.String("8.0"),
    OptionGroupDescription: aws.String("MySQL 8.0 option group"),
    OptionGroupName:        aws.String("MyOptionGroup"),
}

result, err := svc.CreateOptionGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeOptionGroupAlreadyExistsFault:
            fmt.Println(rds.ErrCodeOptionGroupAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeOptionGroupQuotaExceededFault:
            fmt.Println(rds.ErrCodeOptionGroupQuotaExceededFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) CreateOptionGroupRequest

func (c *RDS) CreateOptionGroupRequest(input *CreateOptionGroupInput) (req *request.Request, output *CreateOptionGroupOutput)

CreateOptionGroupRequest generates a "aws/request.Request" representing the client's request for the CreateOptionGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateOptionGroup for more information on using the CreateOptionGroup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreateOptionGroupRequest method.
req, resp := client.CreateOptionGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateOptionGroup

func (*RDS) CreateOptionGroupWithContext

func (c *RDS) CreateOptionGroupWithContext(ctx aws.Context, input *CreateOptionGroupInput, opts ...request.Option) (*CreateOptionGroupOutput, error)

CreateOptionGroupWithContext is the same as CreateOptionGroup with the addition of the ability to pass a context and additional request options.

See CreateOptionGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) CreateTenantDatabase

func (c *RDS) CreateTenantDatabase(input *CreateTenantDatabaseInput) (*CreateTenantDatabaseOutput, error)

CreateTenantDatabase API operation for Amazon Relational Database Service.

Creates a tenant database in a DB instance that uses the multi-tenant configuration. Only RDS for Oracle container database (CDB) instances are supported.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation CreateTenantDatabase for usage and error information.

Returned Error Codes:

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

  • ErrCodeTenantDatabaseAlreadyExistsFault "TenantDatabaseAlreadyExists" You attempted to either create a tenant database that already exists or modify a tenant database to use the name of an existing tenant database.

  • ErrCodeTenantDatabaseQuotaExceededFault "TenantDatabaseQuotaExceeded" You attempted to create more tenant databases than are permitted in your Amazon Web Services account.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateTenantDatabase

func (*RDS) CreateTenantDatabaseRequest

func (c *RDS) CreateTenantDatabaseRequest(input *CreateTenantDatabaseInput) (req *request.Request, output *CreateTenantDatabaseOutput)

CreateTenantDatabaseRequest generates a "aws/request.Request" representing the client's request for the CreateTenantDatabase operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateTenantDatabase for more information on using the CreateTenantDatabase API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreateTenantDatabaseRequest method.
req, resp := client.CreateTenantDatabaseRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateTenantDatabase

func (*RDS) CreateTenantDatabaseWithContext

func (c *RDS) CreateTenantDatabaseWithContext(ctx aws.Context, input *CreateTenantDatabaseInput, opts ...request.Option) (*CreateTenantDatabaseOutput, error)

CreateTenantDatabaseWithContext is the same as CreateTenantDatabase with the addition of the ability to pass a context and additional request options.

See CreateTenantDatabase for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DeleteBlueGreenDeployment

func (c *RDS) DeleteBlueGreenDeployment(input *DeleteBlueGreenDeploymentInput) (*DeleteBlueGreenDeploymentOutput, error)

DeleteBlueGreenDeployment API operation for Amazon Relational Database Service.

Deletes a blue/green deployment.

For more information, see Using Amazon RDS Blue/Green Deployments for database updates (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html) in the Amazon RDS User Guide and Using Amazon RDS Blue/Green Deployments for database updates (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html) in the Amazon Aurora User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DeleteBlueGreenDeployment for usage and error information.

Returned Error Codes:

  • ErrCodeBlueGreenDeploymentNotFoundFault "BlueGreenDeploymentNotFoundFault" BlueGreenDeploymentIdentifier doesn't refer to an existing blue/green deployment.

  • ErrCodeInvalidBlueGreenDeploymentStateFault "InvalidBlueGreenDeploymentStateFault" The blue/green deployment can't be switched over or deleted because there is an invalid configuration in the green environment.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteBlueGreenDeployment

Example (Shared00)

To delete resources in green environment for an RDS for MySQL DB instance The following example deletes the resources in a green environment for an RDS for MySQL DB instance.

Code:

svc := rds.New(session.New())
input := &rds.DeleteBlueGreenDeploymentInput{
    BlueGreenDeploymentIdentifier: aws.String("bgd-v53303651eexfake"),
    DeleteTarget:                  aws.Bool(true),
}

result, err := svc.DeleteBlueGreenDeployment(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeBlueGreenDeploymentNotFoundFault:
            fmt.Println(rds.ErrCodeBlueGreenDeploymentNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidBlueGreenDeploymentStateFault:
            fmt.Println(rds.ErrCodeInvalidBlueGreenDeploymentStateFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To delete resources in green environment for an Aurora MySQL DB cluster The following example deletes the resources in a green environment for an Aurora MySQL DB cluster.

Code:

svc := rds.New(session.New())
input := &rds.DeleteBlueGreenDeploymentInput{
    BlueGreenDeploymentIdentifier: aws.String("bgd-wi89nwzglccsfake"),
    DeleteTarget:                  aws.Bool(true),
}

result, err := svc.DeleteBlueGreenDeployment(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeBlueGreenDeploymentNotFoundFault:
            fmt.Println(rds.ErrCodeBlueGreenDeploymentNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidBlueGreenDeploymentStateFault:
            fmt.Println(rds.ErrCodeInvalidBlueGreenDeploymentStateFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DeleteBlueGreenDeploymentRequest

func (c *RDS) DeleteBlueGreenDeploymentRequest(input *DeleteBlueGreenDeploymentInput) (req *request.Request, output *DeleteBlueGreenDeploymentOutput)

DeleteBlueGreenDeploymentRequest generates a "aws/request.Request" representing the client's request for the DeleteBlueGreenDeployment operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteBlueGreenDeployment for more information on using the DeleteBlueGreenDeployment API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteBlueGreenDeploymentRequest method.
req, resp := client.DeleteBlueGreenDeploymentRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteBlueGreenDeployment

func (*RDS) DeleteBlueGreenDeploymentWithContext

func (c *RDS) DeleteBlueGreenDeploymentWithContext(ctx aws.Context, input *DeleteBlueGreenDeploymentInput, opts ...request.Option) (*DeleteBlueGreenDeploymentOutput, error)

DeleteBlueGreenDeploymentWithContext is the same as DeleteBlueGreenDeployment with the addition of the ability to pass a context and additional request options.

See DeleteBlueGreenDeployment for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DeleteCustomDBEngineVersion

func (c *RDS) DeleteCustomDBEngineVersion(input *DeleteCustomDBEngineVersionInput) (*DeleteCustomDBEngineVersionOutput, error)

DeleteCustomDBEngineVersion API operation for Amazon Relational Database Service.

Deletes a custom engine version. To run this command, make sure you meet the following prerequisites:

  • The CEV must not be the default for RDS Custom. If it is, change the default before running this command.

  • The CEV must not be associated with an RDS Custom DB instance, RDS Custom instance snapshot, or automated backup of your RDS Custom instance.

Typically, deletion takes a few minutes.

The MediaImport service that imports files from Amazon S3 to create CEVs isn't integrated with Amazon Web Services CloudTrail. If you turn on data logging for Amazon RDS in CloudTrail, calls to the DeleteCustomDbEngineVersion event aren't logged. However, you might see calls from the API gateway that accesses your Amazon S3 bucket. These calls originate from the MediaImport service for the DeleteCustomDbEngineVersion event.

For more information, see Deleting a CEV (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.delete) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DeleteCustomDBEngineVersion for usage and error information.

Returned Error Codes:

  • ErrCodeCustomDBEngineVersionNotFoundFault "CustomDBEngineVersionNotFoundFault" The specified CEV was not found.

  • ErrCodeInvalidCustomDBEngineVersionStateFault "InvalidCustomDBEngineVersionStateFault" You can't delete the CEV.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteCustomDBEngineVersion

func (*RDS) DeleteCustomDBEngineVersionRequest

func (c *RDS) DeleteCustomDBEngineVersionRequest(input *DeleteCustomDBEngineVersionInput) (req *request.Request, output *DeleteCustomDBEngineVersionOutput)

DeleteCustomDBEngineVersionRequest generates a "aws/request.Request" representing the client's request for the DeleteCustomDBEngineVersion operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteCustomDBEngineVersion for more information on using the DeleteCustomDBEngineVersion API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteCustomDBEngineVersionRequest method.
req, resp := client.DeleteCustomDBEngineVersionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteCustomDBEngineVersion

func (*RDS) DeleteCustomDBEngineVersionWithContext

func (c *RDS) DeleteCustomDBEngineVersionWithContext(ctx aws.Context, input *DeleteCustomDBEngineVersionInput, opts ...request.Option) (*DeleteCustomDBEngineVersionOutput, error)

DeleteCustomDBEngineVersionWithContext is the same as DeleteCustomDBEngineVersion with the addition of the ability to pass a context and additional request options.

See DeleteCustomDBEngineVersion for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DeleteDBCluster

func (c *RDS) DeleteDBCluster(input *DeleteDBClusterInput) (*DeleteDBClusterOutput, error)

DeleteDBCluster API operation for Amazon Relational Database Service.

The DeleteDBCluster action deletes a previously provisioned DB cluster. When you delete a DB cluster, all automated backups for that DB cluster are deleted and can't be recovered. Manual DB cluster snapshots of the specified DB cluster are not deleted.

If you're deleting a Multi-AZ DB cluster with read replicas, all cluster members are terminated and read replicas are promoted to standalone instances.

For more information on Amazon Aurora, see What is Amazon Aurora? (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html) in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DeleteDBCluster for usage and error information.

Returned Error Codes:

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeDBClusterSnapshotAlreadyExistsFault "DBClusterSnapshotAlreadyExistsFault" The user already has a DB cluster snapshot with the given identifier.

  • ErrCodeSnapshotQuotaExceededFault "SnapshotQuotaExceeded" The request would result in the user exceeding the allowed number of DB snapshots.

  • ErrCodeInvalidDBClusterSnapshotStateFault "InvalidDBClusterSnapshotStateFault" The supplied value isn't a valid DB cluster snapshot state.

  • ErrCodeDBClusterAutomatedBackupQuotaExceededFault "DBClusterAutomatedBackupQuotaExceededFault" The quota for retained automated backups was exceeded. This prevents you from retaining any additional automated backups. The retained automated backups quota is the same as your DB cluster quota.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBCluster

Example (Shared00)

To delete a DB cluster The following example deletes the DB cluster named mycluster and takes a final snapshot named mycluster-final-snapshot. The status of the DB cluster is available while the snapshot is being taken.

Code:

svc := rds.New(session.New())
input := &rds.DeleteDBClusterInput{
    DBClusterIdentifier:       aws.String("mycluster"),
    FinalDBSnapshotIdentifier: aws.String("mycluster-final-snapshot"),
    SkipFinalSnapshot:         aws.Bool(false),
}

result, err := svc.DeleteDBCluster(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        case rds.ErrCodeDBClusterSnapshotAlreadyExistsFault:
            fmt.Println(rds.ErrCodeDBClusterSnapshotAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeSnapshotQuotaExceededFault:
            fmt.Println(rds.ErrCodeSnapshotQuotaExceededFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterSnapshotStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterSnapshotStateFault, aerr.Error())
        case rds.ErrCodeDBClusterAutomatedBackupQuotaExceededFault:
            fmt.Println(rds.ErrCodeDBClusterAutomatedBackupQuotaExceededFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DeleteDBClusterAutomatedBackup

func (c *RDS) DeleteDBClusterAutomatedBackup(input *DeleteDBClusterAutomatedBackupInput) (*DeleteDBClusterAutomatedBackupOutput, error)

DeleteDBClusterAutomatedBackup API operation for Amazon Relational Database Service.

Deletes automated backups using the DbClusterResourceId value of the source DB cluster or the Amazon Resource Name (ARN) of the automated backups.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DeleteDBClusterAutomatedBackup for usage and error information.

Returned Error Codes:

  • ErrCodeInvalidDBClusterAutomatedBackupStateFault "InvalidDBClusterAutomatedBackupStateFault" The automated backup is in an invalid state. For example, this automated backup is associated with an active cluster.

  • ErrCodeDBClusterAutomatedBackupNotFoundFault "DBClusterAutomatedBackupNotFoundFault" No automated backup for this DB cluster was found.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterAutomatedBackup

func (*RDS) DeleteDBClusterAutomatedBackupRequest

func (c *RDS) DeleteDBClusterAutomatedBackupRequest(input *DeleteDBClusterAutomatedBackupInput) (req *request.Request, output *DeleteDBClusterAutomatedBackupOutput)

DeleteDBClusterAutomatedBackupRequest generates a "aws/request.Request" representing the client's request for the DeleteDBClusterAutomatedBackup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteDBClusterAutomatedBackup for more information on using the DeleteDBClusterAutomatedBackup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteDBClusterAutomatedBackupRequest method.
req, resp := client.DeleteDBClusterAutomatedBackupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterAutomatedBackup

func (*RDS) DeleteDBClusterAutomatedBackupWithContext

func (c *RDS) DeleteDBClusterAutomatedBackupWithContext(ctx aws.Context, input *DeleteDBClusterAutomatedBackupInput, opts ...request.Option) (*DeleteDBClusterAutomatedBackupOutput, error)

DeleteDBClusterAutomatedBackupWithContext is the same as DeleteDBClusterAutomatedBackup with the addition of the ability to pass a context and additional request options.

See DeleteDBClusterAutomatedBackup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DeleteDBClusterEndpoint

func (c *RDS) DeleteDBClusterEndpoint(input *DeleteDBClusterEndpointInput) (*DeleteDBClusterEndpointOutput, error)

DeleteDBClusterEndpoint API operation for Amazon Relational Database Service.

Deletes a custom endpoint and removes it from an Amazon Aurora DB cluster.

This action only applies to Aurora DB clusters.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DeleteDBClusterEndpoint for usage and error information.

Returned Error Codes:

  • ErrCodeInvalidDBClusterEndpointStateFault "InvalidDBClusterEndpointStateFault" The requested operation can't be performed on the endpoint while the endpoint is in this state.

  • ErrCodeDBClusterEndpointNotFoundFault "DBClusterEndpointNotFoundFault" The specified custom endpoint doesn't exist.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterEndpoint

Example (Shared00)

To delete a custom DB cluster endpoint The following example deletes the specified custom DB cluster endpoint.

Code:

svc := rds.New(session.New())
input := &rds.DeleteDBClusterEndpointInput{
    DBClusterEndpointIdentifier: aws.String("mycustomendpoint"),
}

result, err := svc.DeleteDBClusterEndpoint(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeInvalidDBClusterEndpointStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterEndpointStateFault, aerr.Error())
        case rds.ErrCodeDBClusterEndpointNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterEndpointNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DeleteDBClusterEndpointRequest

func (c *RDS) DeleteDBClusterEndpointRequest(input *DeleteDBClusterEndpointInput) (req *request.Request, output *DeleteDBClusterEndpointOutput)

DeleteDBClusterEndpointRequest generates a "aws/request.Request" representing the client's request for the DeleteDBClusterEndpoint operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteDBClusterEndpoint for more information on using the DeleteDBClusterEndpoint API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteDBClusterEndpointRequest method.
req, resp := client.DeleteDBClusterEndpointRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterEndpoint

func (*RDS) DeleteDBClusterEndpointWithContext

func (c *RDS) DeleteDBClusterEndpointWithContext(ctx aws.Context, input *DeleteDBClusterEndpointInput, opts ...request.Option) (*DeleteDBClusterEndpointOutput, error)

DeleteDBClusterEndpointWithContext is the same as DeleteDBClusterEndpoint with the addition of the ability to pass a context and additional request options.

See DeleteDBClusterEndpoint for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DeleteDBClusterParameterGroup

func (c *RDS) DeleteDBClusterParameterGroup(input *DeleteDBClusterParameterGroupInput) (*DeleteDBClusterParameterGroupOutput, error)

DeleteDBClusterParameterGroup API operation for Amazon Relational Database Service.

Deletes a specified DB cluster parameter group. The DB cluster parameter group to be deleted can't be associated with any DB clusters.

For more information on Amazon Aurora, see What is Amazon Aurora? (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html) in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DeleteDBClusterParameterGroup for usage and error information.

Returned Error Codes:

  • ErrCodeInvalidDBParameterGroupStateFault "InvalidDBParameterGroupState" The DB parameter group is in use or is in an invalid state. If you are attempting to delete the parameter group, you can't delete it when the parameter group is in this state.

  • ErrCodeDBParameterGroupNotFoundFault "DBParameterGroupNotFound" DBParameterGroupName doesn't refer to an existing DB parameter group.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterParameterGroup

Example (Shared00)

To delete a DB cluster parameter group The following example deletes the specified DB cluster parameter group.

Code:

svc := rds.New(session.New())
input := &rds.DeleteDBClusterParameterGroupInput{
    DBClusterParameterGroupName: aws.String("mydbclusterparametergroup"),
}

result, err := svc.DeleteDBClusterParameterGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeInvalidDBParameterGroupStateFault:
            fmt.Println(rds.ErrCodeInvalidDBParameterGroupStateFault, aerr.Error())
        case rds.ErrCodeDBParameterGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBParameterGroupNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DeleteDBClusterParameterGroupRequest

func (c *RDS) DeleteDBClusterParameterGroupRequest(input *DeleteDBClusterParameterGroupInput) (req *request.Request, output *DeleteDBClusterParameterGroupOutput)

DeleteDBClusterParameterGroupRequest generates a "aws/request.Request" representing the client's request for the DeleteDBClusterParameterGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteDBClusterParameterGroup for more information on using the DeleteDBClusterParameterGroup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteDBClusterParameterGroupRequest method.
req, resp := client.DeleteDBClusterParameterGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterParameterGroup

func (*RDS) DeleteDBClusterParameterGroupWithContext

func (c *RDS) DeleteDBClusterParameterGroupWithContext(ctx aws.Context, input *DeleteDBClusterParameterGroupInput, opts ...request.Option) (*DeleteDBClusterParameterGroupOutput, error)

DeleteDBClusterParameterGroupWithContext is the same as DeleteDBClusterParameterGroup with the addition of the ability to pass a context and additional request options.

See DeleteDBClusterParameterGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DeleteDBClusterRequest

func (c *RDS) DeleteDBClusterRequest(input *DeleteDBClusterInput) (req *request.Request, output *DeleteDBClusterOutput)

DeleteDBClusterRequest generates a "aws/request.Request" representing the client's request for the DeleteDBCluster operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteDBCluster for more information on using the DeleteDBCluster API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteDBClusterRequest method.
req, resp := client.DeleteDBClusterRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBCluster

func (*RDS) DeleteDBClusterSnapshot

func (c *RDS) DeleteDBClusterSnapshot(input *DeleteDBClusterSnapshotInput) (*DeleteDBClusterSnapshotOutput, error)

DeleteDBClusterSnapshot API operation for Amazon Relational Database Service.

Deletes a DB cluster snapshot. If the snapshot is being copied, the copy operation is terminated.

The DB cluster snapshot must be in the available state to be deleted.

For more information on Amazon Aurora, see What is Amazon Aurora? (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html) in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DeleteDBClusterSnapshot for usage and error information.

Returned Error Codes:

  • ErrCodeInvalidDBClusterSnapshotStateFault "InvalidDBClusterSnapshotStateFault" The supplied value isn't a valid DB cluster snapshot state.

  • ErrCodeDBClusterSnapshotNotFoundFault "DBClusterSnapshotNotFoundFault" DBClusterSnapshotIdentifier doesn't refer to an existing DB cluster snapshot.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterSnapshot

Example (Shared00)

Code:

svc := rds.New(session.New())
input := &rds.DeleteDBClusterSnapshotInput{
    DBClusterSnapshotIdentifier: aws.String("mydbclustersnapshot"),
}

result, err := svc.DeleteDBClusterSnapshot(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeInvalidDBClusterSnapshotStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterSnapshotStateFault, aerr.Error())
        case rds.ErrCodeDBClusterSnapshotNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterSnapshotNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DeleteDBClusterSnapshotRequest

func (c *RDS) DeleteDBClusterSnapshotRequest(input *DeleteDBClusterSnapshotInput) (req *request.Request, output *DeleteDBClusterSnapshotOutput)

DeleteDBClusterSnapshotRequest generates a "aws/request.Request" representing the client's request for the DeleteDBClusterSnapshot operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteDBClusterSnapshot for more information on using the DeleteDBClusterSnapshot API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteDBClusterSnapshotRequest method.
req, resp := client.DeleteDBClusterSnapshotRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterSnapshot

func (*RDS) DeleteDBClusterSnapshotWithContext

func (c *RDS) DeleteDBClusterSnapshotWithContext(ctx aws.Context, input *DeleteDBClusterSnapshotInput, opts ...request.Option) (*DeleteDBClusterSnapshotOutput, error)

DeleteDBClusterSnapshotWithContext is the same as DeleteDBClusterSnapshot with the addition of the ability to pass a context and additional request options.

See DeleteDBClusterSnapshot for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DeleteDBClusterWithContext

func (c *RDS) DeleteDBClusterWithContext(ctx aws.Context, input *DeleteDBClusterInput, opts ...request.Option) (*DeleteDBClusterOutput, error)

DeleteDBClusterWithContext is the same as DeleteDBCluster with the addition of the ability to pass a context and additional request options.

See DeleteDBCluster for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DeleteDBInstance

func (c *RDS) DeleteDBInstance(input *DeleteDBInstanceInput) (*DeleteDBInstanceOutput, error)

DeleteDBInstance API operation for Amazon Relational Database Service.

Deletes a previously provisioned DB instance. When you delete a DB instance, all automated backups for that instance are deleted and can't be recovered. However, manual DB snapshots of the DB instance aren't deleted.

If you request a final DB snapshot, the status of the Amazon RDS DB instance is deleting until the DB snapshot is created. This operation can't be canceled or reverted after it begins. To monitor the status of this operation, use DescribeDBInstance.

When a DB instance is in a failure state and has a status of failed, incompatible-restore, or incompatible-network, you can only delete it when you skip creation of the final snapshot with the SkipFinalSnapshot parameter.

If the specified DB instance is part of an Amazon Aurora DB cluster, you can't delete the DB instance if both of the following conditions are true:

  • The DB cluster is a read replica of another Amazon Aurora DB cluster.

  • The DB instance is the only instance in the DB cluster.

To delete a DB instance in this case, first use the PromoteReadReplicaDBCluster operation to promote the DB cluster so that it's no longer a read replica. After the promotion completes, use the DeleteDBInstance operation to delete the final instance in the DB cluster.

For RDS Custom DB instances, deleting the DB instance permanently deletes the EC2 instance and the associated EBS volumes. Make sure that you don't terminate or delete these resources before you delete the DB instance. Otherwise, deleting the DB instance and creation of the final snapshot might fail.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DeleteDBInstance for usage and error information.

Returned Error Codes:

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

  • ErrCodeDBSnapshotAlreadyExistsFault "DBSnapshotAlreadyExists" DBSnapshotIdentifier is already used by an existing snapshot.

  • ErrCodeSnapshotQuotaExceededFault "SnapshotQuotaExceeded" The request would result in the user exceeding the allowed number of DB snapshots.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeDBInstanceAutomatedBackupQuotaExceededFault "DBInstanceAutomatedBackupQuotaExceeded" The quota for retained automated backups was exceeded. This prevents you from retaining any additional automated backups. The retained automated backups quota is the same as your DB instance quota.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance

Example (Shared00)

To delete a DB instance The following example deletes the specified DB instance after creating a final DB snapshot named test-instance-final-snap.

Code:

svc := rds.New(session.New())
input := &rds.DeleteDBInstanceInput{
    DBInstanceIdentifier:      aws.String("test-instance"),
    FinalDBSnapshotIdentifier: aws.String("test-instance-final-snap"),
    SkipFinalSnapshot:         aws.Bool(false),
}

result, err := svc.DeleteDBInstance(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBInstanceStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceStateFault, aerr.Error())
        case rds.ErrCodeDBSnapshotAlreadyExistsFault:
            fmt.Println(rds.ErrCodeDBSnapshotAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeSnapshotQuotaExceededFault:
            fmt.Println(rds.ErrCodeSnapshotQuotaExceededFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        case rds.ErrCodeDBInstanceAutomatedBackupQuotaExceededFault:
            fmt.Println(rds.ErrCodeDBInstanceAutomatedBackupQuotaExceededFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DeleteDBInstanceAutomatedBackup

func (c *RDS) DeleteDBInstanceAutomatedBackup(input *DeleteDBInstanceAutomatedBackupInput) (*DeleteDBInstanceAutomatedBackupOutput, error)

DeleteDBInstanceAutomatedBackup API operation for Amazon Relational Database Service.

Deletes automated backups using the DbiResourceId value of the source DB instance or the Amazon Resource Name (ARN) of the automated backups.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DeleteDBInstanceAutomatedBackup for usage and error information.

Returned Error Codes:

  • ErrCodeInvalidDBInstanceAutomatedBackupStateFault "InvalidDBInstanceAutomatedBackupState" The automated backup is in an invalid state. For example, this automated backup is associated with an active instance.

  • ErrCodeDBInstanceAutomatedBackupNotFoundFault "DBInstanceAutomatedBackupNotFound" No automated backup for this DB instance was found.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstanceAutomatedBackup

Example (Shared00)

To delete a replicated automated backup from a Region The following example deletes the automated backup with the specified Amazon Resource Name (ARN).

Code:

svc := rds.New(session.New())
input := &rds.DeleteDBInstanceAutomatedBackupInput{
    DBInstanceAutomatedBackupsArn: aws.String("arn:aws:rds:us-west-2:123456789012:auto-backup:ab-jkib2gfq5rv7replzadausbrktni2bn4example"),
}

result, err := svc.DeleteDBInstanceAutomatedBackup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeInvalidDBInstanceAutomatedBackupStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceAutomatedBackupStateFault, aerr.Error())
        case rds.ErrCodeDBInstanceAutomatedBackupNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceAutomatedBackupNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DeleteDBInstanceAutomatedBackupRequest

func (c *RDS) DeleteDBInstanceAutomatedBackupRequest(input *DeleteDBInstanceAutomatedBackupInput) (req *request.Request, output *DeleteDBInstanceAutomatedBackupOutput)

DeleteDBInstanceAutomatedBackupRequest generates a "aws/request.Request" representing the client's request for the DeleteDBInstanceAutomatedBackup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteDBInstanceAutomatedBackup for more information on using the DeleteDBInstanceAutomatedBackup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteDBInstanceAutomatedBackupRequest method.
req, resp := client.DeleteDBInstanceAutomatedBackupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstanceAutomatedBackup

func (*RDS) DeleteDBInstanceAutomatedBackupWithContext

func (c *RDS) DeleteDBInstanceAutomatedBackupWithContext(ctx aws.Context, input *DeleteDBInstanceAutomatedBackupInput, opts ...request.Option) (*DeleteDBInstanceAutomatedBackupOutput, error)

DeleteDBInstanceAutomatedBackupWithContext is the same as DeleteDBInstanceAutomatedBackup with the addition of the ability to pass a context and additional request options.

See DeleteDBInstanceAutomatedBackup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DeleteDBInstanceRequest

func (c *RDS) DeleteDBInstanceRequest(input *DeleteDBInstanceInput) (req *request.Request, output *DeleteDBInstanceOutput)

DeleteDBInstanceRequest generates a "aws/request.Request" representing the client's request for the DeleteDBInstance operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteDBInstance for more information on using the DeleteDBInstance API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteDBInstanceRequest method.
req, resp := client.DeleteDBInstanceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance

func (*RDS) DeleteDBInstanceWithContext

func (c *RDS) DeleteDBInstanceWithContext(ctx aws.Context, input *DeleteDBInstanceInput, opts ...request.Option) (*DeleteDBInstanceOutput, error)

DeleteDBInstanceWithContext is the same as DeleteDBInstance with the addition of the ability to pass a context and additional request options.

See DeleteDBInstance for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DeleteDBParameterGroup

func (c *RDS) DeleteDBParameterGroup(input *DeleteDBParameterGroupInput) (*DeleteDBParameterGroupOutput, error)

DeleteDBParameterGroup API operation for Amazon Relational Database Service.

Deletes a specified DB parameter group. The DB parameter group to be deleted can't be associated with any DB instances.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DeleteDBParameterGroup for usage and error information.

Returned Error Codes:

  • ErrCodeInvalidDBParameterGroupStateFault "InvalidDBParameterGroupState" The DB parameter group is in use or is in an invalid state. If you are attempting to delete the parameter group, you can't delete it when the parameter group is in this state.

  • ErrCodeDBParameterGroupNotFoundFault "DBParameterGroupNotFound" DBParameterGroupName doesn't refer to an existing DB parameter group.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBParameterGroup

Example (Shared00)

To delete a DB parameter group The following example deletes a DB parameter group.

Code:

svc := rds.New(session.New())
input := &rds.DeleteDBParameterGroupInput{
    DBParameterGroupName: aws.String("mydbparametergroup"),
}

result, err := svc.DeleteDBParameterGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeInvalidDBParameterGroupStateFault:
            fmt.Println(rds.ErrCodeInvalidDBParameterGroupStateFault, aerr.Error())
        case rds.ErrCodeDBParameterGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBParameterGroupNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DeleteDBParameterGroupRequest

func (c *RDS) DeleteDBParameterGroupRequest(input *DeleteDBParameterGroupInput) (req *request.Request, output *DeleteDBParameterGroupOutput)

DeleteDBParameterGroupRequest generates a "aws/request.Request" representing the client's request for the DeleteDBParameterGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteDBParameterGroup for more information on using the DeleteDBParameterGroup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteDBParameterGroupRequest method.
req, resp := client.DeleteDBParameterGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBParameterGroup

func (*RDS) DeleteDBParameterGroupWithContext

func (c *RDS) DeleteDBParameterGroupWithContext(ctx aws.Context, input *DeleteDBParameterGroupInput, opts ...request.Option) (*DeleteDBParameterGroupOutput, error)

DeleteDBParameterGroupWithContext is the same as DeleteDBParameterGroup with the addition of the ability to pass a context and additional request options.

See DeleteDBParameterGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DeleteDBProxy

func (c *RDS) DeleteDBProxy(input *DeleteDBProxyInput) (*DeleteDBProxyOutput, error)

DeleteDBProxy API operation for Amazon Relational Database Service.

Deletes an existing DB proxy.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DeleteDBProxy for usage and error information.

Returned Error Codes:

  • ErrCodeDBProxyNotFoundFault "DBProxyNotFoundFault" The specified proxy name doesn't correspond to a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

  • ErrCodeInvalidDBProxyStateFault "InvalidDBProxyStateFault" The requested operation can't be performed while the proxy is in this state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBProxy

func (*RDS) DeleteDBProxyEndpoint

func (c *RDS) DeleteDBProxyEndpoint(input *DeleteDBProxyEndpointInput) (*DeleteDBProxyEndpointOutput, error)

DeleteDBProxyEndpoint API operation for Amazon Relational Database Service.

Deletes a DBProxyEndpoint. Doing so removes the ability to access the DB proxy using the endpoint that you defined. The endpoint that you delete might have provided capabilities such as read/write or read-only operations, or using a different VPC than the DB proxy's default VPC.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DeleteDBProxyEndpoint for usage and error information.

Returned Error Codes:

  • ErrCodeDBProxyEndpointNotFoundFault "DBProxyEndpointNotFoundFault" The DB proxy endpoint doesn't exist.

  • ErrCodeInvalidDBProxyEndpointStateFault "InvalidDBProxyEndpointStateFault" You can't perform this operation while the DB proxy endpoint is in a particular state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBProxyEndpoint

func (*RDS) DeleteDBProxyEndpointRequest

func (c *RDS) DeleteDBProxyEndpointRequest(input *DeleteDBProxyEndpointInput) (req *request.Request, output *DeleteDBProxyEndpointOutput)

DeleteDBProxyEndpointRequest generates a "aws/request.Request" representing the client's request for the DeleteDBProxyEndpoint operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteDBProxyEndpoint for more information on using the DeleteDBProxyEndpoint API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteDBProxyEndpointRequest method.
req, resp := client.DeleteDBProxyEndpointRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBProxyEndpoint

func (*RDS) DeleteDBProxyEndpointWithContext

func (c *RDS) DeleteDBProxyEndpointWithContext(ctx aws.Context, input *DeleteDBProxyEndpointInput, opts ...request.Option) (*DeleteDBProxyEndpointOutput, error)

DeleteDBProxyEndpointWithContext is the same as DeleteDBProxyEndpoint with the addition of the ability to pass a context and additional request options.

See DeleteDBProxyEndpoint for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DeleteDBProxyRequest

func (c *RDS) DeleteDBProxyRequest(input *DeleteDBProxyInput) (req *request.Request, output *DeleteDBProxyOutput)

DeleteDBProxyRequest generates a "aws/request.Request" representing the client's request for the DeleteDBProxy operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteDBProxy for more information on using the DeleteDBProxy API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteDBProxyRequest method.
req, resp := client.DeleteDBProxyRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBProxy

func (*RDS) DeleteDBProxyWithContext

func (c *RDS) DeleteDBProxyWithContext(ctx aws.Context, input *DeleteDBProxyInput, opts ...request.Option) (*DeleteDBProxyOutput, error)

DeleteDBProxyWithContext is the same as DeleteDBProxy with the addition of the ability to pass a context and additional request options.

See DeleteDBProxy for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DeleteDBSecurityGroup

func (c *RDS) DeleteDBSecurityGroup(input *DeleteDBSecurityGroupInput) (*DeleteDBSecurityGroupOutput, error)

DeleteDBSecurityGroup API operation for Amazon Relational Database Service.

Deletes a DB security group.

The specified DB security group must not be associated with any DB instances.

EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that you migrate as soon as possible. For more information, see Migrate from EC2-Classic to a VPC (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html) in the Amazon EC2 User Guide, the blog EC2-Classic Networking is Retiring – Here’s How to Prepare (http://aws.amazon.com/blogs/aws/ec2-classic-is-retiring-heres-how-to-prepare/), and Moving a DB instance not in a VPC into a VPC (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.Non-VPC2VPC.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DeleteDBSecurityGroup for usage and error information.

Returned Error Codes:

  • ErrCodeInvalidDBSecurityGroupStateFault "InvalidDBSecurityGroupState" The state of the DB security group doesn't allow deletion.

  • ErrCodeDBSecurityGroupNotFoundFault "DBSecurityGroupNotFound" DBSecurityGroupName doesn't refer to an existing DB security group.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSecurityGroup

Example (Shared00)

To delete a DB security group The following example deletes a DB security group.

Code:

svc := rds.New(session.New())
input := &rds.DeleteDBSecurityGroupInput{
    DBSecurityGroupName: aws.String("mysecgroup"),
}

result, err := svc.DeleteDBSecurityGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeInvalidDBSecurityGroupStateFault:
            fmt.Println(rds.ErrCodeInvalidDBSecurityGroupStateFault, aerr.Error())
        case rds.ErrCodeDBSecurityGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBSecurityGroupNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DeleteDBSecurityGroupRequest

func (c *RDS) DeleteDBSecurityGroupRequest(input *DeleteDBSecurityGroupInput) (req *request.Request, output *DeleteDBSecurityGroupOutput)

DeleteDBSecurityGroupRequest generates a "aws/request.Request" representing the client's request for the DeleteDBSecurityGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteDBSecurityGroup for more information on using the DeleteDBSecurityGroup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteDBSecurityGroupRequest method.
req, resp := client.DeleteDBSecurityGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSecurityGroup

func (*RDS) DeleteDBSecurityGroupWithContext

func (c *RDS) DeleteDBSecurityGroupWithContext(ctx aws.Context, input *DeleteDBSecurityGroupInput, opts ...request.Option) (*DeleteDBSecurityGroupOutput, error)

DeleteDBSecurityGroupWithContext is the same as DeleteDBSecurityGroup with the addition of the ability to pass a context and additional request options.

See DeleteDBSecurityGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DeleteDBShardGroup

func (c *RDS) DeleteDBShardGroup(input *DeleteDBShardGroupInput) (*DeleteDBShardGroupOutput, error)

DeleteDBShardGroup API operation for Amazon Relational Database Service.

Deletes an Aurora Limitless Database DB shard group.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DeleteDBShardGroup for usage and error information.

Returned Error Codes:

  • ErrCodeDBShardGroupNotFoundFault "DBShardGroupNotFound" The specified DB shard group name wasn't found.

  • ErrCodeInvalidDBShardGroupStateFault "InvalidDBShardGroupState" The DB shard group must be in the available state.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBShardGroup

func (*RDS) DeleteDBShardGroupRequest

func (c *RDS) DeleteDBShardGroupRequest(input *DeleteDBShardGroupInput) (req *request.Request, output *DeleteDBShardGroupOutput)

DeleteDBShardGroupRequest generates a "aws/request.Request" representing the client's request for the DeleteDBShardGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteDBShardGroup for more information on using the DeleteDBShardGroup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteDBShardGroupRequest method.
req, resp := client.DeleteDBShardGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBShardGroup

func (*RDS) DeleteDBShardGroupWithContext

func (c *RDS) DeleteDBShardGroupWithContext(ctx aws.Context, input *DeleteDBShardGroupInput, opts ...request.Option) (*DeleteDBShardGroupOutput, error)

DeleteDBShardGroupWithContext is the same as DeleteDBShardGroup with the addition of the ability to pass a context and additional request options.

See DeleteDBShardGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DeleteDBSnapshot

func (c *RDS) DeleteDBSnapshot(input *DeleteDBSnapshotInput) (*DeleteDBSnapshotOutput, error)

DeleteDBSnapshot API operation for Amazon Relational Database Service.

Deletes a DB snapshot. If the snapshot is being copied, the copy operation is terminated.

The DB snapshot must be in the available state to be deleted.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DeleteDBSnapshot for usage and error information.

Returned Error Codes:

  • ErrCodeInvalidDBSnapshotStateFault "InvalidDBSnapshotState" The state of the DB snapshot doesn't allow deletion.

  • ErrCodeDBSnapshotNotFoundFault "DBSnapshotNotFound" DBSnapshotIdentifier doesn't refer to an existing DB snapshot.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSnapshot

Example (Shared00)

To delete a DB snapshot The following example deletes the specified DB snapshot.

Code:

svc := rds.New(session.New())
input := &rds.DeleteDBSnapshotInput{
    DBSnapshotIdentifier: aws.String("mydbsnapshot"),
}

result, err := svc.DeleteDBSnapshot(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeInvalidDBSnapshotStateFault:
            fmt.Println(rds.ErrCodeInvalidDBSnapshotStateFault, aerr.Error())
        case rds.ErrCodeDBSnapshotNotFoundFault:
            fmt.Println(rds.ErrCodeDBSnapshotNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DeleteDBSnapshotRequest

func (c *RDS) DeleteDBSnapshotRequest(input *DeleteDBSnapshotInput) (req *request.Request, output *DeleteDBSnapshotOutput)

DeleteDBSnapshotRequest generates a "aws/request.Request" representing the client's request for the DeleteDBSnapshot operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteDBSnapshot for more information on using the DeleteDBSnapshot API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteDBSnapshotRequest method.
req, resp := client.DeleteDBSnapshotRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSnapshot

func (*RDS) DeleteDBSnapshotWithContext

func (c *RDS) DeleteDBSnapshotWithContext(ctx aws.Context, input *DeleteDBSnapshotInput, opts ...request.Option) (*DeleteDBSnapshotOutput, error)

DeleteDBSnapshotWithContext is the same as DeleteDBSnapshot with the addition of the ability to pass a context and additional request options.

See DeleteDBSnapshot for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DeleteDBSubnetGroup

func (c *RDS) DeleteDBSubnetGroup(input *DeleteDBSubnetGroupInput) (*DeleteDBSubnetGroupOutput, error)

DeleteDBSubnetGroup API operation for Amazon Relational Database Service.

Deletes a DB subnet group.

The specified database subnet group must not be associated with any DB instances.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DeleteDBSubnetGroup for usage and error information.

Returned Error Codes:

  • ErrCodeInvalidDBSubnetGroupStateFault "InvalidDBSubnetGroupStateFault" The DB subnet group cannot be deleted because it's in use.

  • ErrCodeInvalidDBSubnetStateFault "InvalidDBSubnetStateFault" The DB subnet isn't in the available state.

  • ErrCodeDBSubnetGroupNotFoundFault "DBSubnetGroupNotFoundFault" DBSubnetGroupName doesn't refer to an existing DB subnet group.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSubnetGroup

Example (Shared00)

To delete a DB subnet group The following example deletes the DB subnet group called mysubnetgroup.

Code:

svc := rds.New(session.New())
input := &rds.DeleteDBSubnetGroupInput{
    DBSubnetGroupName: aws.String("mysubnetgroup"),
}

result, err := svc.DeleteDBSubnetGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeInvalidDBSubnetGroupStateFault:
            fmt.Println(rds.ErrCodeInvalidDBSubnetGroupStateFault, aerr.Error())
        case rds.ErrCodeInvalidDBSubnetStateFault:
            fmt.Println(rds.ErrCodeInvalidDBSubnetStateFault, aerr.Error())
        case rds.ErrCodeDBSubnetGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBSubnetGroupNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DeleteDBSubnetGroupRequest

func (c *RDS) DeleteDBSubnetGroupRequest(input *DeleteDBSubnetGroupInput) (req *request.Request, output *DeleteDBSubnetGroupOutput)

DeleteDBSubnetGroupRequest generates a "aws/request.Request" representing the client's request for the DeleteDBSubnetGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteDBSubnetGroup for more information on using the DeleteDBSubnetGroup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteDBSubnetGroupRequest method.
req, resp := client.DeleteDBSubnetGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSubnetGroup

func (*RDS) DeleteDBSubnetGroupWithContext

func (c *RDS) DeleteDBSubnetGroupWithContext(ctx aws.Context, input *DeleteDBSubnetGroupInput, opts ...request.Option) (*DeleteDBSubnetGroupOutput, error)

DeleteDBSubnetGroupWithContext is the same as DeleteDBSubnetGroup with the addition of the ability to pass a context and additional request options.

See DeleteDBSubnetGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DeleteEventSubscription

func (c *RDS) DeleteEventSubscription(input *DeleteEventSubscriptionInput) (*DeleteEventSubscriptionOutput, error)

DeleteEventSubscription API operation for Amazon Relational Database Service.

Deletes an RDS event notification subscription.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DeleteEventSubscription for usage and error information.

Returned Error Codes:

  • ErrCodeSubscriptionNotFoundFault "SubscriptionNotFound" The subscription name does not exist.

  • ErrCodeInvalidEventSubscriptionStateFault "InvalidEventSubscriptionState" This error can occur if someone else is modifying a subscription. You should retry the action.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteEventSubscription

Example (Shared00)

To delete an event subscription The following example deletes the specified event subscription.

Code:

svc := rds.New(session.New())
input := &rds.DeleteEventSubscriptionInput{
    SubscriptionName: aws.String("my-instance-events"),
}

result, err := svc.DeleteEventSubscription(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeSubscriptionNotFoundFault:
            fmt.Println(rds.ErrCodeSubscriptionNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidEventSubscriptionStateFault:
            fmt.Println(rds.ErrCodeInvalidEventSubscriptionStateFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DeleteEventSubscriptionRequest

func (c *RDS) DeleteEventSubscriptionRequest(input *DeleteEventSubscriptionInput) (req *request.Request, output *DeleteEventSubscriptionOutput)

DeleteEventSubscriptionRequest generates a "aws/request.Request" representing the client's request for the DeleteEventSubscription operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteEventSubscription for more information on using the DeleteEventSubscription API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteEventSubscriptionRequest method.
req, resp := client.DeleteEventSubscriptionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteEventSubscription

func (*RDS) DeleteEventSubscriptionWithContext

func (c *RDS) DeleteEventSubscriptionWithContext(ctx aws.Context, input *DeleteEventSubscriptionInput, opts ...request.Option) (*DeleteEventSubscriptionOutput, error)

DeleteEventSubscriptionWithContext is the same as DeleteEventSubscription with the addition of the ability to pass a context and additional request options.

See DeleteEventSubscription for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DeleteGlobalCluster

func (c *RDS) DeleteGlobalCluster(input *DeleteGlobalClusterInput) (*DeleteGlobalClusterOutput, error)

DeleteGlobalCluster API operation for Amazon Relational Database Service.

Deletes a global database cluster. The primary and secondary clusters must already be detached or destroyed first.

This action only applies to Aurora DB clusters.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DeleteGlobalCluster for usage and error information.

Returned Error Codes:

  • ErrCodeGlobalClusterNotFoundFault "GlobalClusterNotFoundFault" The GlobalClusterIdentifier doesn't refer to an existing global database cluster.

  • ErrCodeInvalidGlobalClusterStateFault "InvalidGlobalClusterStateFault" The global cluster is in an invalid state and can't perform the requested operation.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteGlobalCluster

Example (Shared00)

To delete a global DB cluster The following example deletes an Aurora MySQL-compatible global DB cluster.

Code:

svc := rds.New(session.New())
input := &rds.DeleteGlobalClusterInput{
    GlobalClusterIdentifier: aws.String("myglobalcluster"),
}

result, err := svc.DeleteGlobalCluster(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeGlobalClusterNotFoundFault:
            fmt.Println(rds.ErrCodeGlobalClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidGlobalClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidGlobalClusterStateFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DeleteGlobalClusterRequest

func (c *RDS) DeleteGlobalClusterRequest(input *DeleteGlobalClusterInput) (req *request.Request, output *DeleteGlobalClusterOutput)

DeleteGlobalClusterRequest generates a "aws/request.Request" representing the client's request for the DeleteGlobalCluster operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteGlobalCluster for more information on using the DeleteGlobalCluster API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteGlobalClusterRequest method.
req, resp := client.DeleteGlobalClusterRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteGlobalCluster

func (*RDS) DeleteGlobalClusterWithContext

func (c *RDS) DeleteGlobalClusterWithContext(ctx aws.Context, input *DeleteGlobalClusterInput, opts ...request.Option) (*DeleteGlobalClusterOutput, error)

DeleteGlobalClusterWithContext is the same as DeleteGlobalCluster with the addition of the ability to pass a context and additional request options.

See DeleteGlobalCluster for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DeleteIntegration

func (c *RDS) DeleteIntegration(input *DeleteIntegrationInput) (*DeleteIntegrationOutput, error)

DeleteIntegration API operation for Amazon Relational Database Service.

Deletes a zero-ETL integration with Amazon Redshift.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DeleteIntegration for usage and error information.

Returned Error Codes:

  • ErrCodeIntegrationNotFoundFault "IntegrationNotFoundFault" The specified integration could not be found.

  • ErrCodeIntegrationConflictOperationFault "IntegrationConflictOperationFault" A conflicting conditional operation is currently in progress against this resource. Typically occurs when there are multiple requests being made to the same resource at the same time, and these requests conflict with each other.

  • ErrCodeInvalidIntegrationStateFault "InvalidIntegrationStateFault" The integration is in an invalid state and can't perform the requested operation.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteIntegration

Example (Shared00)

To delete a zero-ETL integration The following example deletes a zero-ETL integration with Amazon Redshift.

Code:

svc := rds.New(session.New())
input := &rds.DeleteIntegrationInput{
    IntegrationIdentifier: aws.String("5b9f3d79-7392-4a3e-896c-58eaa1b53231"),
}

result, err := svc.DeleteIntegration(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeIntegrationNotFoundFault:
            fmt.Println(rds.ErrCodeIntegrationNotFoundFault, aerr.Error())
        case rds.ErrCodeIntegrationConflictOperationFault:
            fmt.Println(rds.ErrCodeIntegrationConflictOperationFault, aerr.Error())
        case rds.ErrCodeInvalidIntegrationStateFault:
            fmt.Println(rds.ErrCodeInvalidIntegrationStateFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DeleteIntegrationRequest

func (c *RDS) DeleteIntegrationRequest(input *DeleteIntegrationInput) (req *request.Request, output *DeleteIntegrationOutput)

DeleteIntegrationRequest generates a "aws/request.Request" representing the client's request for the DeleteIntegration operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteIntegration for more information on using the DeleteIntegration API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteIntegrationRequest method.
req, resp := client.DeleteIntegrationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteIntegration

func (*RDS) DeleteIntegrationWithContext

func (c *RDS) DeleteIntegrationWithContext(ctx aws.Context, input *DeleteIntegrationInput, opts ...request.Option) (*DeleteIntegrationOutput, error)

DeleteIntegrationWithContext is the same as DeleteIntegration with the addition of the ability to pass a context and additional request options.

See DeleteIntegration for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DeleteOptionGroup

func (c *RDS) DeleteOptionGroup(input *DeleteOptionGroupInput) (*DeleteOptionGroupOutput, error)

DeleteOptionGroup API operation for Amazon Relational Database Service.

Deletes an existing option group.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DeleteOptionGroup for usage and error information.

Returned Error Codes:

  • ErrCodeOptionGroupNotFoundFault "OptionGroupNotFoundFault" The specified option group could not be found.

  • ErrCodeInvalidOptionGroupStateFault "InvalidOptionGroupStateFault" The option group isn't in the available state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteOptionGroup

Example (Shared00)

To delete an option group The following example deletes the specified option group.

Code:

svc := rds.New(session.New())
input := &rds.DeleteOptionGroupInput{
    OptionGroupName: aws.String("myoptiongroup"),
}

result, err := svc.DeleteOptionGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeOptionGroupNotFoundFault:
            fmt.Println(rds.ErrCodeOptionGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidOptionGroupStateFault:
            fmt.Println(rds.ErrCodeInvalidOptionGroupStateFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DeleteOptionGroupRequest

func (c *RDS) DeleteOptionGroupRequest(input *DeleteOptionGroupInput) (req *request.Request, output *DeleteOptionGroupOutput)

DeleteOptionGroupRequest generates a "aws/request.Request" representing the client's request for the DeleteOptionGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteOptionGroup for more information on using the DeleteOptionGroup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteOptionGroupRequest method.
req, resp := client.DeleteOptionGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteOptionGroup

func (*RDS) DeleteOptionGroupWithContext

func (c *RDS) DeleteOptionGroupWithContext(ctx aws.Context, input *DeleteOptionGroupInput, opts ...request.Option) (*DeleteOptionGroupOutput, error)

DeleteOptionGroupWithContext is the same as DeleteOptionGroup with the addition of the ability to pass a context and additional request options.

See DeleteOptionGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DeleteTenantDatabase

func (c *RDS) DeleteTenantDatabase(input *DeleteTenantDatabaseInput) (*DeleteTenantDatabaseOutput, error)

DeleteTenantDatabase API operation for Amazon Relational Database Service.

Deletes a tenant database from your DB instance. This command only applies to RDS for Oracle container database (CDB) instances.

You can't delete a tenant database when it is the only tenant in the DB instance.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DeleteTenantDatabase for usage and error information.

Returned Error Codes:

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

  • ErrCodeTenantDatabaseNotFoundFault "TenantDatabaseNotFound" The specified tenant database wasn't found in the DB instance.

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteTenantDatabase

func (*RDS) DeleteTenantDatabaseRequest

func (c *RDS) DeleteTenantDatabaseRequest(input *DeleteTenantDatabaseInput) (req *request.Request, output *DeleteTenantDatabaseOutput)

DeleteTenantDatabaseRequest generates a "aws/request.Request" representing the client's request for the DeleteTenantDatabase operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteTenantDatabase for more information on using the DeleteTenantDatabase API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteTenantDatabaseRequest method.
req, resp := client.DeleteTenantDatabaseRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteTenantDatabase

func (*RDS) DeleteTenantDatabaseWithContext

func (c *RDS) DeleteTenantDatabaseWithContext(ctx aws.Context, input *DeleteTenantDatabaseInput, opts ...request.Option) (*DeleteTenantDatabaseOutput, error)

DeleteTenantDatabaseWithContext is the same as DeleteTenantDatabase with the addition of the ability to pass a context and additional request options.

See DeleteTenantDatabase for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DeregisterDBProxyTargets

func (c *RDS) DeregisterDBProxyTargets(input *DeregisterDBProxyTargetsInput) (*DeregisterDBProxyTargetsOutput, error)

DeregisterDBProxyTargets API operation for Amazon Relational Database Service.

Remove the association between one or more DBProxyTarget data structures and a DBProxyTargetGroup.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DeregisterDBProxyTargets for usage and error information.

Returned Error Codes:

  • ErrCodeDBProxyTargetNotFoundFault "DBProxyTargetNotFoundFault" The specified RDS DB instance or Aurora DB cluster isn't available for a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

  • ErrCodeDBProxyTargetGroupNotFoundFault "DBProxyTargetGroupNotFoundFault" The specified target group isn't available for a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

  • ErrCodeDBProxyNotFoundFault "DBProxyNotFoundFault" The specified proxy name doesn't correspond to a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

  • ErrCodeInvalidDBProxyStateFault "InvalidDBProxyStateFault" The requested operation can't be performed while the proxy is in this state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeregisterDBProxyTargets

func (*RDS) DeregisterDBProxyTargetsRequest

func (c *RDS) DeregisterDBProxyTargetsRequest(input *DeregisterDBProxyTargetsInput) (req *request.Request, output *DeregisterDBProxyTargetsOutput)

DeregisterDBProxyTargetsRequest generates a "aws/request.Request" representing the client's request for the DeregisterDBProxyTargets operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeregisterDBProxyTargets for more information on using the DeregisterDBProxyTargets API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeregisterDBProxyTargetsRequest method.
req, resp := client.DeregisterDBProxyTargetsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeregisterDBProxyTargets

func (*RDS) DeregisterDBProxyTargetsWithContext

func (c *RDS) DeregisterDBProxyTargetsWithContext(ctx aws.Context, input *DeregisterDBProxyTargetsInput, opts ...request.Option) (*DeregisterDBProxyTargetsOutput, error)

DeregisterDBProxyTargetsWithContext is the same as DeregisterDBProxyTargets with the addition of the ability to pass a context and additional request options.

See DeregisterDBProxyTargets for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeAccountAttributes

func (c *RDS) DescribeAccountAttributes(input *DescribeAccountAttributesInput) (*DescribeAccountAttributesOutput, error)

DescribeAccountAttributes API operation for Amazon Relational Database Service.

Lists all of the attributes for a customer account. The attributes include Amazon RDS quotas for the account, such as the number of DB instances allowed. The description for a quota includes the quota name, current usage toward that quota, and the quota's maximum value.

This command doesn't take any parameters.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeAccountAttributes for usage and error information. See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeAccountAttributes

Example (Shared00)

To describe account attributes The following example retrieves the attributes for the current AWS account.

Code:

svc := rds.New(session.New())
input := &rds.DescribeAccountAttributesInput{}

result, err := svc.DescribeAccountAttributes(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeAccountAttributesRequest

func (c *RDS) DescribeAccountAttributesRequest(input *DescribeAccountAttributesInput) (req *request.Request, output *DescribeAccountAttributesOutput)

DescribeAccountAttributesRequest generates a "aws/request.Request" representing the client's request for the DescribeAccountAttributes operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeAccountAttributes for more information on using the DescribeAccountAttributes API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeAccountAttributesRequest method.
req, resp := client.DescribeAccountAttributesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeAccountAttributes

func (*RDS) DescribeAccountAttributesWithContext

func (c *RDS) DescribeAccountAttributesWithContext(ctx aws.Context, input *DescribeAccountAttributesInput, opts ...request.Option) (*DescribeAccountAttributesOutput, error)

DescribeAccountAttributesWithContext is the same as DescribeAccountAttributes with the addition of the ability to pass a context and additional request options.

See DescribeAccountAttributes for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeBlueGreenDeployments

func (c *RDS) DescribeBlueGreenDeployments(input *DescribeBlueGreenDeploymentsInput) (*DescribeBlueGreenDeploymentsOutput, error)

DescribeBlueGreenDeployments API operation for Amazon Relational Database Service.

Describes one or more blue/green deployments.

For more information, see Using Amazon RDS Blue/Green Deployments for database updates (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html) in the Amazon RDS User Guide and Using Amazon RDS Blue/Green Deployments for database updates (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html) in the Amazon Aurora User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeBlueGreenDeployments for usage and error information.

Returned Error Codes:

  • ErrCodeBlueGreenDeploymentNotFoundFault "BlueGreenDeploymentNotFoundFault" BlueGreenDeploymentIdentifier doesn't refer to an existing blue/green deployment.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeBlueGreenDeployments

Example (Shared00)

To describe a blue/green deployment of an RDS DB instance after creation completes The following example retrieves the details of a blue/green deployment after creation completes.

Code:

svc := rds.New(session.New())
input := &rds.DescribeBlueGreenDeploymentsInput{
    BlueGreenDeploymentIdentifier: aws.String("bgd-v53303651eexfake"),
}

result, err := svc.DescribeBlueGreenDeployments(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeBlueGreenDeploymentNotFoundFault:
            fmt.Println(rds.ErrCodeBlueGreenDeploymentNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To describe a blue/green deployment for an Aurora MySQL DB cluster The following example retrieves the details of a blue/green deployment.

Code:

svc := rds.New(session.New())
input := &rds.DescribeBlueGreenDeploymentsInput{
    BlueGreenDeploymentIdentifier: aws.String("bgd-wi89nwzglccsfake"),
}

result, err := svc.DescribeBlueGreenDeployments(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeBlueGreenDeploymentNotFoundFault:
            fmt.Println(rds.ErrCodeBlueGreenDeploymentNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared02)

To describe a blue/green deployment for an Aurora MySQL cluster after switchover The following example retrieves the details about a blue/green deployment after the green environment is promoted to be the production environment.

Code:

svc := rds.New(session.New())
input := &rds.DescribeBlueGreenDeploymentsInput{
    BlueGreenDeploymentIdentifier: aws.String("bgd-wi89nwzglccsfake"),
}

result, err := svc.DescribeBlueGreenDeployments(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeBlueGreenDeploymentNotFoundFault:
            fmt.Println(rds.ErrCodeBlueGreenDeploymentNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeBlueGreenDeploymentsPages

func (c *RDS) DescribeBlueGreenDeploymentsPages(input *DescribeBlueGreenDeploymentsInput, fn func(*DescribeBlueGreenDeploymentsOutput, bool) bool) error

DescribeBlueGreenDeploymentsPages iterates over the pages of a DescribeBlueGreenDeployments operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeBlueGreenDeployments method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeBlueGreenDeployments operation.
pageNum := 0
err := client.DescribeBlueGreenDeploymentsPages(params,
    func(page *rds.DescribeBlueGreenDeploymentsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeBlueGreenDeploymentsPagesWithContext

func (c *RDS) DescribeBlueGreenDeploymentsPagesWithContext(ctx aws.Context, input *DescribeBlueGreenDeploymentsInput, fn func(*DescribeBlueGreenDeploymentsOutput, bool) bool, opts ...request.Option) error

DescribeBlueGreenDeploymentsPagesWithContext same as DescribeBlueGreenDeploymentsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeBlueGreenDeploymentsRequest

func (c *RDS) DescribeBlueGreenDeploymentsRequest(input *DescribeBlueGreenDeploymentsInput) (req *request.Request, output *DescribeBlueGreenDeploymentsOutput)

DescribeBlueGreenDeploymentsRequest generates a "aws/request.Request" representing the client's request for the DescribeBlueGreenDeployments operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeBlueGreenDeployments for more information on using the DescribeBlueGreenDeployments API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeBlueGreenDeploymentsRequest method.
req, resp := client.DescribeBlueGreenDeploymentsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeBlueGreenDeployments

func (*RDS) DescribeBlueGreenDeploymentsWithContext

func (c *RDS) DescribeBlueGreenDeploymentsWithContext(ctx aws.Context, input *DescribeBlueGreenDeploymentsInput, opts ...request.Option) (*DescribeBlueGreenDeploymentsOutput, error)

DescribeBlueGreenDeploymentsWithContext is the same as DescribeBlueGreenDeployments with the addition of the ability to pass a context and additional request options.

See DescribeBlueGreenDeployments for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeCertificates

func (c *RDS) DescribeCertificates(input *DescribeCertificatesInput) (*DescribeCertificatesOutput, error)

DescribeCertificates API operation for Amazon Relational Database Service.

Lists the set of certificate authority (CA) certificates provided by Amazon RDS for this Amazon Web Services account.

For more information, see Using SSL/TLS to encrypt a connection to a DB instance (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html) in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html) in the Amazon Aurora User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeCertificates for usage and error information.

Returned Error Codes:

  • ErrCodeCertificateNotFoundFault "CertificateNotFound" CertificateIdentifier doesn't refer to an existing certificate.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeCertificates

Example (Shared00)

To describe certificates The following example retrieves the details of the certificate associated with the user's default region.

Code:

svc := rds.New(session.New())
input := &rds.DescribeCertificatesInput{}

result, err := svc.DescribeCertificates(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeCertificateNotFoundFault:
            fmt.Println(rds.ErrCodeCertificateNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeCertificatesPages

func (c *RDS) DescribeCertificatesPages(input *DescribeCertificatesInput, fn func(*DescribeCertificatesOutput, bool) bool) error

DescribeCertificatesPages iterates over the pages of a DescribeCertificates operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeCertificates method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeCertificates operation.
pageNum := 0
err := client.DescribeCertificatesPages(params,
    func(page *rds.DescribeCertificatesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeCertificatesPagesWithContext

func (c *RDS) DescribeCertificatesPagesWithContext(ctx aws.Context, input *DescribeCertificatesInput, fn func(*DescribeCertificatesOutput, bool) bool, opts ...request.Option) error

DescribeCertificatesPagesWithContext same as DescribeCertificatesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeCertificatesRequest

func (c *RDS) DescribeCertificatesRequest(input *DescribeCertificatesInput) (req *request.Request, output *DescribeCertificatesOutput)

DescribeCertificatesRequest generates a "aws/request.Request" representing the client's request for the DescribeCertificates operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeCertificates for more information on using the DescribeCertificates API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeCertificatesRequest method.
req, resp := client.DescribeCertificatesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeCertificates

func (*RDS) DescribeCertificatesWithContext

func (c *RDS) DescribeCertificatesWithContext(ctx aws.Context, input *DescribeCertificatesInput, opts ...request.Option) (*DescribeCertificatesOutput, error)

DescribeCertificatesWithContext is the same as DescribeCertificates with the addition of the ability to pass a context and additional request options.

See DescribeCertificates for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBClusterAutomatedBackups

func (c *RDS) DescribeDBClusterAutomatedBackups(input *DescribeDBClusterAutomatedBackupsInput) (*DescribeDBClusterAutomatedBackupsOutput, error)

DescribeDBClusterAutomatedBackups API operation for Amazon Relational Database Service.

Displays backups for both current and deleted DB clusters. For example, use this operation to find details about automated backups for previously deleted clusters. Current clusters are returned for both the DescribeDBClusterAutomatedBackups and DescribeDBClusters operations.

All parameters are optional.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeDBClusterAutomatedBackups for usage and error information.

Returned Error Codes:

  • ErrCodeDBClusterAutomatedBackupNotFoundFault "DBClusterAutomatedBackupNotFoundFault" No automated backup for this DB cluster was found.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterAutomatedBackups

func (*RDS) DescribeDBClusterAutomatedBackupsPages

func (c *RDS) DescribeDBClusterAutomatedBackupsPages(input *DescribeDBClusterAutomatedBackupsInput, fn func(*DescribeDBClusterAutomatedBackupsOutput, bool) bool) error

DescribeDBClusterAutomatedBackupsPages iterates over the pages of a DescribeDBClusterAutomatedBackups operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeDBClusterAutomatedBackups method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeDBClusterAutomatedBackups operation.
pageNum := 0
err := client.DescribeDBClusterAutomatedBackupsPages(params,
    func(page *rds.DescribeDBClusterAutomatedBackupsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeDBClusterAutomatedBackupsPagesWithContext

func (c *RDS) DescribeDBClusterAutomatedBackupsPagesWithContext(ctx aws.Context, input *DescribeDBClusterAutomatedBackupsInput, fn func(*DescribeDBClusterAutomatedBackupsOutput, bool) bool, opts ...request.Option) error

DescribeDBClusterAutomatedBackupsPagesWithContext same as DescribeDBClusterAutomatedBackupsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBClusterAutomatedBackupsRequest

func (c *RDS) DescribeDBClusterAutomatedBackupsRequest(input *DescribeDBClusterAutomatedBackupsInput) (req *request.Request, output *DescribeDBClusterAutomatedBackupsOutput)

DescribeDBClusterAutomatedBackupsRequest generates a "aws/request.Request" representing the client's request for the DescribeDBClusterAutomatedBackups operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeDBClusterAutomatedBackups for more information on using the DescribeDBClusterAutomatedBackups API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeDBClusterAutomatedBackupsRequest method.
req, resp := client.DescribeDBClusterAutomatedBackupsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterAutomatedBackups

func (*RDS) DescribeDBClusterAutomatedBackupsWithContext

func (c *RDS) DescribeDBClusterAutomatedBackupsWithContext(ctx aws.Context, input *DescribeDBClusterAutomatedBackupsInput, opts ...request.Option) (*DescribeDBClusterAutomatedBackupsOutput, error)

DescribeDBClusterAutomatedBackupsWithContext is the same as DescribeDBClusterAutomatedBackups with the addition of the ability to pass a context and additional request options.

See DescribeDBClusterAutomatedBackups for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBClusterBacktracks

func (c *RDS) DescribeDBClusterBacktracks(input *DescribeDBClusterBacktracksInput) (*DescribeDBClusterBacktracksOutput, error)

DescribeDBClusterBacktracks API operation for Amazon Relational Database Service.

Returns information about backtracks for a DB cluster.

For more information on Amazon Aurora, see What is Amazon Aurora? (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html) in the Amazon Aurora User Guide.

This action only applies to Aurora MySQL DB clusters.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeDBClusterBacktracks for usage and error information.

Returned Error Codes:

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeDBClusterBacktrackNotFoundFault "DBClusterBacktrackNotFoundFault" BacktrackIdentifier doesn't refer to an existing backtrack.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterBacktracks

Example (Shared00)

To describe backtracks for a DB cluster The following example retrieves details about the specified DB cluster.

Code:

svc := rds.New(session.New())
input := &rds.DescribeDBClusterBacktracksInput{
    DBClusterIdentifier: aws.String("mydbcluster"),
}

result, err := svc.DescribeDBClusterBacktracks(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeDBClusterBacktrackNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterBacktrackNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeDBClusterBacktracksPages

func (c *RDS) DescribeDBClusterBacktracksPages(input *DescribeDBClusterBacktracksInput, fn func(*DescribeDBClusterBacktracksOutput, bool) bool) error

DescribeDBClusterBacktracksPages iterates over the pages of a DescribeDBClusterBacktracks operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeDBClusterBacktracks method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeDBClusterBacktracks operation.
pageNum := 0
err := client.DescribeDBClusterBacktracksPages(params,
    func(page *rds.DescribeDBClusterBacktracksOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeDBClusterBacktracksPagesWithContext

func (c *RDS) DescribeDBClusterBacktracksPagesWithContext(ctx aws.Context, input *DescribeDBClusterBacktracksInput, fn func(*DescribeDBClusterBacktracksOutput, bool) bool, opts ...request.Option) error

DescribeDBClusterBacktracksPagesWithContext same as DescribeDBClusterBacktracksPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBClusterBacktracksRequest

func (c *RDS) DescribeDBClusterBacktracksRequest(input *DescribeDBClusterBacktracksInput) (req *request.Request, output *DescribeDBClusterBacktracksOutput)

DescribeDBClusterBacktracksRequest generates a "aws/request.Request" representing the client's request for the DescribeDBClusterBacktracks operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeDBClusterBacktracks for more information on using the DescribeDBClusterBacktracks API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeDBClusterBacktracksRequest method.
req, resp := client.DescribeDBClusterBacktracksRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterBacktracks

func (*RDS) DescribeDBClusterBacktracksWithContext

func (c *RDS) DescribeDBClusterBacktracksWithContext(ctx aws.Context, input *DescribeDBClusterBacktracksInput, opts ...request.Option) (*DescribeDBClusterBacktracksOutput, error)

DescribeDBClusterBacktracksWithContext is the same as DescribeDBClusterBacktracks with the addition of the ability to pass a context and additional request options.

See DescribeDBClusterBacktracks for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBClusterEndpoints

func (c *RDS) DescribeDBClusterEndpoints(input *DescribeDBClusterEndpointsInput) (*DescribeDBClusterEndpointsOutput, error)

DescribeDBClusterEndpoints API operation for Amazon Relational Database Service.

Returns information about endpoints for an Amazon Aurora DB cluster.

This action only applies to Aurora DB clusters.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeDBClusterEndpoints for usage and error information.

Returned Error Codes:

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterEndpoints

Example (Shared00)

To describe DB cluster endpoints The following example retrieves details for your DB cluster endpoints. The most common kinds of Aurora clusters have two endpoints. One endpoint has type WRITER. You can use this endpoint for all SQL statements. The other endpoint has type READER. You can use this endpoint only for SELECT and other read-only SQL statements.

Code:

svc := rds.New(session.New())
input := &rds.DescribeDBClusterEndpointsInput{}

result, err := svc.DescribeDBClusterEndpoints(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To describe DB cluster endpoints of a single DB cluster The following example retrieves details for the DB cluster endpoints of a single specified DB cluster. Aurora Serverless clusters have only a single endpoint with a type of WRITER.

Code:

svc := rds.New(session.New())
input := &rds.DescribeDBClusterEndpointsInput{
    DBClusterIdentifier: aws.String("serverless-cluster"),
}

result, err := svc.DescribeDBClusterEndpoints(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeDBClusterEndpointsPages

func (c *RDS) DescribeDBClusterEndpointsPages(input *DescribeDBClusterEndpointsInput, fn func(*DescribeDBClusterEndpointsOutput, bool) bool) error

DescribeDBClusterEndpointsPages iterates over the pages of a DescribeDBClusterEndpoints operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeDBClusterEndpoints method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeDBClusterEndpoints operation.
pageNum := 0
err := client.DescribeDBClusterEndpointsPages(params,
    func(page *rds.DescribeDBClusterEndpointsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeDBClusterEndpointsPagesWithContext

func (c *RDS) DescribeDBClusterEndpointsPagesWithContext(ctx aws.Context, input *DescribeDBClusterEndpointsInput, fn func(*DescribeDBClusterEndpointsOutput, bool) bool, opts ...request.Option) error

DescribeDBClusterEndpointsPagesWithContext same as DescribeDBClusterEndpointsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBClusterEndpointsRequest

func (c *RDS) DescribeDBClusterEndpointsRequest(input *DescribeDBClusterEndpointsInput) (req *request.Request, output *DescribeDBClusterEndpointsOutput)

DescribeDBClusterEndpointsRequest generates a "aws/request.Request" representing the client's request for the DescribeDBClusterEndpoints operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeDBClusterEndpoints for more information on using the DescribeDBClusterEndpoints API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeDBClusterEndpointsRequest method.
req, resp := client.DescribeDBClusterEndpointsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterEndpoints

func (*RDS) DescribeDBClusterEndpointsWithContext

func (c *RDS) DescribeDBClusterEndpointsWithContext(ctx aws.Context, input *DescribeDBClusterEndpointsInput, opts ...request.Option) (*DescribeDBClusterEndpointsOutput, error)

DescribeDBClusterEndpointsWithContext is the same as DescribeDBClusterEndpoints with the addition of the ability to pass a context and additional request options.

See DescribeDBClusterEndpoints for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBClusterParameterGroups

func (c *RDS) DescribeDBClusterParameterGroups(input *DescribeDBClusterParameterGroupsInput) (*DescribeDBClusterParameterGroupsOutput, error)

DescribeDBClusterParameterGroups API operation for Amazon Relational Database Service.

Returns a list of DBClusterParameterGroup descriptions. If a DBClusterParameterGroupName parameter is specified, the list will contain only the description of the specified DB cluster parameter group.

For more information on Amazon Aurora, see What is Amazon Aurora? (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html) in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeDBClusterParameterGroups for usage and error information.

Returned Error Codes:

  • ErrCodeDBParameterGroupNotFoundFault "DBParameterGroupNotFound" DBParameterGroupName doesn't refer to an existing DB parameter group.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterParameterGroups

Example (Shared00)

To describe DB cluster parameter groups The following example retrieves details for your DB cluster parameter groups.

Code:

svc := rds.New(session.New())
input := &rds.DescribeDBClusterParameterGroupsInput{}

result, err := svc.DescribeDBClusterParameterGroups(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBParameterGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBParameterGroupNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeDBClusterParameterGroupsPages

func (c *RDS) DescribeDBClusterParameterGroupsPages(input *DescribeDBClusterParameterGroupsInput, fn func(*DescribeDBClusterParameterGroupsOutput, bool) bool) error

DescribeDBClusterParameterGroupsPages iterates over the pages of a DescribeDBClusterParameterGroups operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeDBClusterParameterGroups method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeDBClusterParameterGroups operation.
pageNum := 0
err := client.DescribeDBClusterParameterGroupsPages(params,
    func(page *rds.DescribeDBClusterParameterGroupsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeDBClusterParameterGroupsPagesWithContext

func (c *RDS) DescribeDBClusterParameterGroupsPagesWithContext(ctx aws.Context, input *DescribeDBClusterParameterGroupsInput, fn func(*DescribeDBClusterParameterGroupsOutput, bool) bool, opts ...request.Option) error

DescribeDBClusterParameterGroupsPagesWithContext same as DescribeDBClusterParameterGroupsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBClusterParameterGroupsRequest

func (c *RDS) DescribeDBClusterParameterGroupsRequest(input *DescribeDBClusterParameterGroupsInput) (req *request.Request, output *DescribeDBClusterParameterGroupsOutput)

DescribeDBClusterParameterGroupsRequest generates a "aws/request.Request" representing the client's request for the DescribeDBClusterParameterGroups operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeDBClusterParameterGroups for more information on using the DescribeDBClusterParameterGroups API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeDBClusterParameterGroupsRequest method.
req, resp := client.DescribeDBClusterParameterGroupsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterParameterGroups

func (*RDS) DescribeDBClusterParameterGroupsWithContext

func (c *RDS) DescribeDBClusterParameterGroupsWithContext(ctx aws.Context, input *DescribeDBClusterParameterGroupsInput, opts ...request.Option) (*DescribeDBClusterParameterGroupsOutput, error)

DescribeDBClusterParameterGroupsWithContext is the same as DescribeDBClusterParameterGroups with the addition of the ability to pass a context and additional request options.

See DescribeDBClusterParameterGroups for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBClusterParameters

func (c *RDS) DescribeDBClusterParameters(input *DescribeDBClusterParametersInput) (*DescribeDBClusterParametersOutput, error)

DescribeDBClusterParameters API operation for Amazon Relational Database Service.

Returns the detailed parameter list for a particular DB cluster parameter group.

For more information on Amazon Aurora, see What is Amazon Aurora? (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html) in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeDBClusterParameters for usage and error information.

Returned Error Codes:

  • ErrCodeDBParameterGroupNotFoundFault "DBParameterGroupNotFound" DBParameterGroupName doesn't refer to an existing DB parameter group.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterParameters

Example (Shared00)

To describe the parameters in a DB cluster parameter group The following example retrieves details about the parameters in a DB cluster parameter group.

Code:

svc := rds.New(session.New())
input := &rds.DescribeDBClusterParametersInput{
    DBClusterParameterGroupName: aws.String("mydbclusterpg"),
}

result, err := svc.DescribeDBClusterParameters(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBParameterGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBParameterGroupNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeDBClusterParametersPages

func (c *RDS) DescribeDBClusterParametersPages(input *DescribeDBClusterParametersInput, fn func(*DescribeDBClusterParametersOutput, bool) bool) error

DescribeDBClusterParametersPages iterates over the pages of a DescribeDBClusterParameters operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeDBClusterParameters method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeDBClusterParameters operation.
pageNum := 0
err := client.DescribeDBClusterParametersPages(params,
    func(page *rds.DescribeDBClusterParametersOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeDBClusterParametersPagesWithContext

func (c *RDS) DescribeDBClusterParametersPagesWithContext(ctx aws.Context, input *DescribeDBClusterParametersInput, fn func(*DescribeDBClusterParametersOutput, bool) bool, opts ...request.Option) error

DescribeDBClusterParametersPagesWithContext same as DescribeDBClusterParametersPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBClusterParametersRequest

func (c *RDS) DescribeDBClusterParametersRequest(input *DescribeDBClusterParametersInput) (req *request.Request, output *DescribeDBClusterParametersOutput)

DescribeDBClusterParametersRequest generates a "aws/request.Request" representing the client's request for the DescribeDBClusterParameters operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeDBClusterParameters for more information on using the DescribeDBClusterParameters API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeDBClusterParametersRequest method.
req, resp := client.DescribeDBClusterParametersRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterParameters

func (*RDS) DescribeDBClusterParametersWithContext

func (c *RDS) DescribeDBClusterParametersWithContext(ctx aws.Context, input *DescribeDBClusterParametersInput, opts ...request.Option) (*DescribeDBClusterParametersOutput, error)

DescribeDBClusterParametersWithContext is the same as DescribeDBClusterParameters with the addition of the ability to pass a context and additional request options.

See DescribeDBClusterParameters for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBClusterSnapshotAttributes

func (c *RDS) DescribeDBClusterSnapshotAttributes(input *DescribeDBClusterSnapshotAttributesInput) (*DescribeDBClusterSnapshotAttributesOutput, error)

DescribeDBClusterSnapshotAttributes API operation for Amazon Relational Database Service.

Returns a list of DB cluster snapshot attribute names and values for a manual DB cluster snapshot.

When sharing snapshots with other Amazon Web Services accounts, DescribeDBClusterSnapshotAttributes returns the restore attribute and a list of IDs for the Amazon Web Services accounts that are authorized to copy or restore the manual DB cluster snapshot. If all is included in the list of values for the restore attribute, then the manual DB cluster snapshot is public and can be copied or restored by all Amazon Web Services accounts.

To add or remove access for an Amazon Web Services account to copy or restore a manual DB cluster snapshot, or to make the manual DB cluster snapshot public or private, use the ModifyDBClusterSnapshotAttribute API action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeDBClusterSnapshotAttributes for usage and error information.

Returned Error Codes:

  • ErrCodeDBClusterSnapshotNotFoundFault "DBClusterSnapshotNotFoundFault" DBClusterSnapshotIdentifier doesn't refer to an existing DB cluster snapshot.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterSnapshotAttributes

Example (Shared00)

To describe the attribute names and values for a DB cluster snapshot The following example retrieves details of the attribute names and values for the specified DB cluster snapshot.

Code:

svc := rds.New(session.New())
input := &rds.DescribeDBClusterSnapshotAttributesInput{
    DBClusterSnapshotIdentifier: aws.String("myclustersnapshot"),
}

result, err := svc.DescribeDBClusterSnapshotAttributes(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBClusterSnapshotNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterSnapshotNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeDBClusterSnapshotAttributesRequest

func (c *RDS) DescribeDBClusterSnapshotAttributesRequest(input *DescribeDBClusterSnapshotAttributesInput) (req *request.Request, output *DescribeDBClusterSnapshotAttributesOutput)

DescribeDBClusterSnapshotAttributesRequest generates a "aws/request.Request" representing the client's request for the DescribeDBClusterSnapshotAttributes operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeDBClusterSnapshotAttributes for more information on using the DescribeDBClusterSnapshotAttributes API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeDBClusterSnapshotAttributesRequest method.
req, resp := client.DescribeDBClusterSnapshotAttributesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterSnapshotAttributes

func (*RDS) DescribeDBClusterSnapshotAttributesWithContext

func (c *RDS) DescribeDBClusterSnapshotAttributesWithContext(ctx aws.Context, input *DescribeDBClusterSnapshotAttributesInput, opts ...request.Option) (*DescribeDBClusterSnapshotAttributesOutput, error)

DescribeDBClusterSnapshotAttributesWithContext is the same as DescribeDBClusterSnapshotAttributes with the addition of the ability to pass a context and additional request options.

See DescribeDBClusterSnapshotAttributes for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBClusterSnapshots

func (c *RDS) DescribeDBClusterSnapshots(input *DescribeDBClusterSnapshotsInput) (*DescribeDBClusterSnapshotsOutput, error)

DescribeDBClusterSnapshots API operation for Amazon Relational Database Service.

Returns information about DB cluster snapshots. This API action supports pagination.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html) in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeDBClusterSnapshots for usage and error information.

Returned Error Codes:

  • ErrCodeDBClusterSnapshotNotFoundFault "DBClusterSnapshotNotFoundFault" DBClusterSnapshotIdentifier doesn't refer to an existing DB cluster snapshot.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterSnapshots

Example (Shared00)

To describe a DB cluster snapshot for a DB cluster The following example retrieves the details for the DB cluster snapshots for the specified DB cluster.

Code:

svc := rds.New(session.New())
input := &rds.DescribeDBClusterSnapshotsInput{
    DBClusterIdentifier: aws.String("mydbcluster"),
}

result, err := svc.DescribeDBClusterSnapshots(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBClusterSnapshotNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterSnapshotNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeDBClusterSnapshotsPages

func (c *RDS) DescribeDBClusterSnapshotsPages(input *DescribeDBClusterSnapshotsInput, fn func(*DescribeDBClusterSnapshotsOutput, bool) bool) error

DescribeDBClusterSnapshotsPages iterates over the pages of a DescribeDBClusterSnapshots operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeDBClusterSnapshots method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeDBClusterSnapshots operation.
pageNum := 0
err := client.DescribeDBClusterSnapshotsPages(params,
    func(page *rds.DescribeDBClusterSnapshotsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeDBClusterSnapshotsPagesWithContext

func (c *RDS) DescribeDBClusterSnapshotsPagesWithContext(ctx aws.Context, input *DescribeDBClusterSnapshotsInput, fn func(*DescribeDBClusterSnapshotsOutput, bool) bool, opts ...request.Option) error

DescribeDBClusterSnapshotsPagesWithContext same as DescribeDBClusterSnapshotsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBClusterSnapshotsRequest

func (c *RDS) DescribeDBClusterSnapshotsRequest(input *DescribeDBClusterSnapshotsInput) (req *request.Request, output *DescribeDBClusterSnapshotsOutput)

DescribeDBClusterSnapshotsRequest generates a "aws/request.Request" representing the client's request for the DescribeDBClusterSnapshots operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeDBClusterSnapshots for more information on using the DescribeDBClusterSnapshots API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeDBClusterSnapshotsRequest method.
req, resp := client.DescribeDBClusterSnapshotsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterSnapshots

func (*RDS) DescribeDBClusterSnapshotsWithContext

func (c *RDS) DescribeDBClusterSnapshotsWithContext(ctx aws.Context, input *DescribeDBClusterSnapshotsInput, opts ...request.Option) (*DescribeDBClusterSnapshotsOutput, error)

DescribeDBClusterSnapshotsWithContext is the same as DescribeDBClusterSnapshots with the addition of the ability to pass a context and additional request options.

See DescribeDBClusterSnapshots for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBClusters

func (c *RDS) DescribeDBClusters(input *DescribeDBClustersInput) (*DescribeDBClustersOutput, error)

DescribeDBClusters API operation for Amazon Relational Database Service.

Describes existing Amazon Aurora DB clusters and Multi-AZ DB clusters. This API supports pagination.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html) in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html) in the Amazon RDS User Guide.

This operation can also return information for Amazon Neptune DB instances and Amazon DocumentDB instances.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeDBClusters for usage and error information.

Returned Error Codes:

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusters

Example (Shared00)

To describe a DB cluster The following example retrieves the details of the specified DB cluster.

Code:

svc := rds.New(session.New())
input := &rds.DescribeDBClustersInput{
    DBClusterIdentifier: aws.String("mydbcluster"),
}

result, err := svc.DescribeDBClusters(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeDBClustersPages

func (c *RDS) DescribeDBClustersPages(input *DescribeDBClustersInput, fn func(*DescribeDBClustersOutput, bool) bool) error

DescribeDBClustersPages iterates over the pages of a DescribeDBClusters operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeDBClusters method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeDBClusters operation.
pageNum := 0
err := client.DescribeDBClustersPages(params,
    func(page *rds.DescribeDBClustersOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeDBClustersPagesWithContext

func (c *RDS) DescribeDBClustersPagesWithContext(ctx aws.Context, input *DescribeDBClustersInput, fn func(*DescribeDBClustersOutput, bool) bool, opts ...request.Option) error

DescribeDBClustersPagesWithContext same as DescribeDBClustersPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBClustersRequest

func (c *RDS) DescribeDBClustersRequest(input *DescribeDBClustersInput) (req *request.Request, output *DescribeDBClustersOutput)

DescribeDBClustersRequest generates a "aws/request.Request" representing the client's request for the DescribeDBClusters operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeDBClusters for more information on using the DescribeDBClusters API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeDBClustersRequest method.
req, resp := client.DescribeDBClustersRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusters

func (*RDS) DescribeDBClustersWithContext

func (c *RDS) DescribeDBClustersWithContext(ctx aws.Context, input *DescribeDBClustersInput, opts ...request.Option) (*DescribeDBClustersOutput, error)

DescribeDBClustersWithContext is the same as DescribeDBClusters with the addition of the ability to pass a context and additional request options.

See DescribeDBClusters for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBEngineVersions

func (c *RDS) DescribeDBEngineVersions(input *DescribeDBEngineVersionsInput) (*DescribeDBEngineVersionsOutput, error)

DescribeDBEngineVersions API operation for Amazon Relational Database Service.

Describes the properties of specific versions of DB engines.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeDBEngineVersions for usage and error information. See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBEngineVersions

Example (Shared00)

To describe the DB engine versions for the MySQL DB engine The following example displays details about each of the DB engine versions for the specified DB engine.

Code:

svc := rds.New(session.New())
input := &rds.DescribeDBEngineVersionsInput{
    Engine: aws.String("mysql"),
}

result, err := svc.DescribeDBEngineVersions(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeDBEngineVersionsPages

func (c *RDS) DescribeDBEngineVersionsPages(input *DescribeDBEngineVersionsInput, fn func(*DescribeDBEngineVersionsOutput, bool) bool) error

DescribeDBEngineVersionsPages iterates over the pages of a DescribeDBEngineVersions operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeDBEngineVersions method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeDBEngineVersions operation.
pageNum := 0
err := client.DescribeDBEngineVersionsPages(params,
    func(page *rds.DescribeDBEngineVersionsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeDBEngineVersionsPagesWithContext

func (c *RDS) DescribeDBEngineVersionsPagesWithContext(ctx aws.Context, input *DescribeDBEngineVersionsInput, fn func(*DescribeDBEngineVersionsOutput, bool) bool, opts ...request.Option) error

DescribeDBEngineVersionsPagesWithContext same as DescribeDBEngineVersionsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBEngineVersionsRequest

func (c *RDS) DescribeDBEngineVersionsRequest(input *DescribeDBEngineVersionsInput) (req *request.Request, output *DescribeDBEngineVersionsOutput)

DescribeDBEngineVersionsRequest generates a "aws/request.Request" representing the client's request for the DescribeDBEngineVersions operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeDBEngineVersions for more information on using the DescribeDBEngineVersions API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeDBEngineVersionsRequest method.
req, resp := client.DescribeDBEngineVersionsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBEngineVersions

func (*RDS) DescribeDBEngineVersionsWithContext

func (c *RDS) DescribeDBEngineVersionsWithContext(ctx aws.Context, input *DescribeDBEngineVersionsInput, opts ...request.Option) (*DescribeDBEngineVersionsOutput, error)

DescribeDBEngineVersionsWithContext is the same as DescribeDBEngineVersions with the addition of the ability to pass a context and additional request options.

See DescribeDBEngineVersions for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBInstanceAutomatedBackups

func (c *RDS) DescribeDBInstanceAutomatedBackups(input *DescribeDBInstanceAutomatedBackupsInput) (*DescribeDBInstanceAutomatedBackupsOutput, error)

DescribeDBInstanceAutomatedBackups API operation for Amazon Relational Database Service.

Displays backups for both current and deleted instances. For example, use this operation to find details about automated backups for previously deleted instances. Current instances with retention periods greater than zero (0) are returned for both the DescribeDBInstanceAutomatedBackups and DescribeDBInstances operations.

All parameters are optional.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeDBInstanceAutomatedBackups for usage and error information.

Returned Error Codes:

  • ErrCodeDBInstanceAutomatedBackupNotFoundFault "DBInstanceAutomatedBackupNotFound" No automated backup for this DB instance was found.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBInstanceAutomatedBackups

Example (Shared00)

To describe the automated backups for a DB instance The following example displays details about the automated backups for the specified DB instance. The details include replicated automated backups in other AWS Regions.

Code:

svc := rds.New(session.New())
input := &rds.DescribeDBInstanceAutomatedBackupsInput{
    DBInstanceIdentifier: aws.String("new-orcl-db"),
}

result, err := svc.DescribeDBInstanceAutomatedBackups(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBInstanceAutomatedBackupNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceAutomatedBackupNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeDBInstanceAutomatedBackupsPages

func (c *RDS) DescribeDBInstanceAutomatedBackupsPages(input *DescribeDBInstanceAutomatedBackupsInput, fn func(*DescribeDBInstanceAutomatedBackupsOutput, bool) bool) error

DescribeDBInstanceAutomatedBackupsPages iterates over the pages of a DescribeDBInstanceAutomatedBackups operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeDBInstanceAutomatedBackups method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeDBInstanceAutomatedBackups operation.
pageNum := 0
err := client.DescribeDBInstanceAutomatedBackupsPages(params,
    func(page *rds.DescribeDBInstanceAutomatedBackupsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeDBInstanceAutomatedBackupsPagesWithContext

func (c *RDS) DescribeDBInstanceAutomatedBackupsPagesWithContext(ctx aws.Context, input *DescribeDBInstanceAutomatedBackupsInput, fn func(*DescribeDBInstanceAutomatedBackupsOutput, bool) bool, opts ...request.Option) error

DescribeDBInstanceAutomatedBackupsPagesWithContext same as DescribeDBInstanceAutomatedBackupsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBInstanceAutomatedBackupsRequest

func (c *RDS) DescribeDBInstanceAutomatedBackupsRequest(input *DescribeDBInstanceAutomatedBackupsInput) (req *request.Request, output *DescribeDBInstanceAutomatedBackupsOutput)

DescribeDBInstanceAutomatedBackupsRequest generates a "aws/request.Request" representing the client's request for the DescribeDBInstanceAutomatedBackups operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeDBInstanceAutomatedBackups for more information on using the DescribeDBInstanceAutomatedBackups API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeDBInstanceAutomatedBackupsRequest method.
req, resp := client.DescribeDBInstanceAutomatedBackupsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBInstanceAutomatedBackups

func (*RDS) DescribeDBInstanceAutomatedBackupsWithContext

func (c *RDS) DescribeDBInstanceAutomatedBackupsWithContext(ctx aws.Context, input *DescribeDBInstanceAutomatedBackupsInput, opts ...request.Option) (*DescribeDBInstanceAutomatedBackupsOutput, error)

DescribeDBInstanceAutomatedBackupsWithContext is the same as DescribeDBInstanceAutomatedBackups with the addition of the ability to pass a context and additional request options.

See DescribeDBInstanceAutomatedBackups for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBInstances

func (c *RDS) DescribeDBInstances(input *DescribeDBInstancesInput) (*DescribeDBInstancesOutput, error)

DescribeDBInstances API operation for Amazon Relational Database Service.

Describes provisioned RDS instances. This API supports pagination.

This operation can also return information for Amazon Neptune DB instances and Amazon DocumentDB instances.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeDBInstances for usage and error information.

Returned Error Codes:

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBInstances

Example (Shared00)

To describe a DB instance The following example retrieves details about the specified DB instance.

Code:

svc := rds.New(session.New())
input := &rds.DescribeDBInstancesInput{
    DBInstanceIdentifier: aws.String("mydbinstancecf"),
}

result, err := svc.DescribeDBInstances(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeDBInstancesPages

func (c *RDS) DescribeDBInstancesPages(input *DescribeDBInstancesInput, fn func(*DescribeDBInstancesOutput, bool) bool) error

DescribeDBInstancesPages iterates over the pages of a DescribeDBInstances operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeDBInstances method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeDBInstances operation.
pageNum := 0
err := client.DescribeDBInstancesPages(params,
    func(page *rds.DescribeDBInstancesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeDBInstancesPagesWithContext

func (c *RDS) DescribeDBInstancesPagesWithContext(ctx aws.Context, input *DescribeDBInstancesInput, fn func(*DescribeDBInstancesOutput, bool) bool, opts ...request.Option) error

DescribeDBInstancesPagesWithContext same as DescribeDBInstancesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBInstancesRequest

func (c *RDS) DescribeDBInstancesRequest(input *DescribeDBInstancesInput) (req *request.Request, output *DescribeDBInstancesOutput)

DescribeDBInstancesRequest generates a "aws/request.Request" representing the client's request for the DescribeDBInstances operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeDBInstances for more information on using the DescribeDBInstances API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeDBInstancesRequest method.
req, resp := client.DescribeDBInstancesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBInstances

func (*RDS) DescribeDBInstancesWithContext

func (c *RDS) DescribeDBInstancesWithContext(ctx aws.Context, input *DescribeDBInstancesInput, opts ...request.Option) (*DescribeDBInstancesOutput, error)

DescribeDBInstancesWithContext is the same as DescribeDBInstances with the addition of the ability to pass a context and additional request options.

See DescribeDBInstances for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBLogFiles

func (c *RDS) DescribeDBLogFiles(input *DescribeDBLogFilesInput) (*DescribeDBLogFilesOutput, error)

DescribeDBLogFiles API operation for Amazon Relational Database Service.

Returns a list of DB log files for the DB instance.

This command doesn't apply to RDS Custom.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeDBLogFiles for usage and error information.

Returned Error Codes:

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBLogFiles

Example (Shared00)

To describe the log files for a DB instance The following example retrieves details about the log files for the specified DB instance.

Code:

svc := rds.New(session.New())
input := &rds.DescribeDBLogFilesInput{
    DBInstanceIdentifier: aws.String("test-instance"),
}

result, err := svc.DescribeDBLogFiles(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeDBLogFilesPages

func (c *RDS) DescribeDBLogFilesPages(input *DescribeDBLogFilesInput, fn func(*DescribeDBLogFilesOutput, bool) bool) error

DescribeDBLogFilesPages iterates over the pages of a DescribeDBLogFiles operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeDBLogFiles method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeDBLogFiles operation.
pageNum := 0
err := client.DescribeDBLogFilesPages(params,
    func(page *rds.DescribeDBLogFilesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeDBLogFilesPagesWithContext

func (c *RDS) DescribeDBLogFilesPagesWithContext(ctx aws.Context, input *DescribeDBLogFilesInput, fn func(*DescribeDBLogFilesOutput, bool) bool, opts ...request.Option) error

DescribeDBLogFilesPagesWithContext same as DescribeDBLogFilesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBLogFilesRequest

func (c *RDS) DescribeDBLogFilesRequest(input *DescribeDBLogFilesInput) (req *request.Request, output *DescribeDBLogFilesOutput)

DescribeDBLogFilesRequest generates a "aws/request.Request" representing the client's request for the DescribeDBLogFiles operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeDBLogFiles for more information on using the DescribeDBLogFiles API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeDBLogFilesRequest method.
req, resp := client.DescribeDBLogFilesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBLogFiles

func (*RDS) DescribeDBLogFilesWithContext

func (c *RDS) DescribeDBLogFilesWithContext(ctx aws.Context, input *DescribeDBLogFilesInput, opts ...request.Option) (*DescribeDBLogFilesOutput, error)

DescribeDBLogFilesWithContext is the same as DescribeDBLogFiles with the addition of the ability to pass a context and additional request options.

See DescribeDBLogFiles for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBParameterGroups

func (c *RDS) DescribeDBParameterGroups(input *DescribeDBParameterGroupsInput) (*DescribeDBParameterGroupsOutput, error)

DescribeDBParameterGroups API operation for Amazon Relational Database Service.

Returns a list of DBParameterGroup descriptions. If a DBParameterGroupName is specified, the list will contain only the description of the specified DB parameter group.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeDBParameterGroups for usage and error information.

Returned Error Codes:

  • ErrCodeDBParameterGroupNotFoundFault "DBParameterGroupNotFound" DBParameterGroupName doesn't refer to an existing DB parameter group.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBParameterGroups

Example (Shared00)

To describe your DB parameter groups The following example retrieves details about your DB parameter groups.

Code:

svc := rds.New(session.New())
input := &rds.DescribeDBParameterGroupsInput{}

result, err := svc.DescribeDBParameterGroups(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBParameterGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBParameterGroupNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeDBParameterGroupsPages

func (c *RDS) DescribeDBParameterGroupsPages(input *DescribeDBParameterGroupsInput, fn func(*DescribeDBParameterGroupsOutput, bool) bool) error

DescribeDBParameterGroupsPages iterates over the pages of a DescribeDBParameterGroups operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeDBParameterGroups method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeDBParameterGroups operation.
pageNum := 0
err := client.DescribeDBParameterGroupsPages(params,
    func(page *rds.DescribeDBParameterGroupsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeDBParameterGroupsPagesWithContext

func (c *RDS) DescribeDBParameterGroupsPagesWithContext(ctx aws.Context, input *DescribeDBParameterGroupsInput, fn func(*DescribeDBParameterGroupsOutput, bool) bool, opts ...request.Option) error

DescribeDBParameterGroupsPagesWithContext same as DescribeDBParameterGroupsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBParameterGroupsRequest

func (c *RDS) DescribeDBParameterGroupsRequest(input *DescribeDBParameterGroupsInput) (req *request.Request, output *DescribeDBParameterGroupsOutput)

DescribeDBParameterGroupsRequest generates a "aws/request.Request" representing the client's request for the DescribeDBParameterGroups operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeDBParameterGroups for more information on using the DescribeDBParameterGroups API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeDBParameterGroupsRequest method.
req, resp := client.DescribeDBParameterGroupsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBParameterGroups

func (*RDS) DescribeDBParameterGroupsWithContext

func (c *RDS) DescribeDBParameterGroupsWithContext(ctx aws.Context, input *DescribeDBParameterGroupsInput, opts ...request.Option) (*DescribeDBParameterGroupsOutput, error)

DescribeDBParameterGroupsWithContext is the same as DescribeDBParameterGroups with the addition of the ability to pass a context and additional request options.

See DescribeDBParameterGroups for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBParameters

func (c *RDS) DescribeDBParameters(input *DescribeDBParametersInput) (*DescribeDBParametersOutput, error)

DescribeDBParameters API operation for Amazon Relational Database Service.

Returns the detailed parameter list for a particular DB parameter group.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeDBParameters for usage and error information.

Returned Error Codes:

  • ErrCodeDBParameterGroupNotFoundFault "DBParameterGroupNotFound" DBParameterGroupName doesn't refer to an existing DB parameter group.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBParameters

Example (Shared00)

To describe the parameters in a DB parameter group The following example retrieves the details of the specified DB parameter group.

Code:

svc := rds.New(session.New())
input := &rds.DescribeDBParametersInput{
    DBParameterGroupName: aws.String("mydbpg"),
}

result, err := svc.DescribeDBParameters(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBParameterGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBParameterGroupNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeDBParametersPages

func (c *RDS) DescribeDBParametersPages(input *DescribeDBParametersInput, fn func(*DescribeDBParametersOutput, bool) bool) error

DescribeDBParametersPages iterates over the pages of a DescribeDBParameters operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeDBParameters method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeDBParameters operation.
pageNum := 0
err := client.DescribeDBParametersPages(params,
    func(page *rds.DescribeDBParametersOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeDBParametersPagesWithContext

func (c *RDS) DescribeDBParametersPagesWithContext(ctx aws.Context, input *DescribeDBParametersInput, fn func(*DescribeDBParametersOutput, bool) bool, opts ...request.Option) error

DescribeDBParametersPagesWithContext same as DescribeDBParametersPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBParametersRequest

func (c *RDS) DescribeDBParametersRequest(input *DescribeDBParametersInput) (req *request.Request, output *DescribeDBParametersOutput)

DescribeDBParametersRequest generates a "aws/request.Request" representing the client's request for the DescribeDBParameters operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeDBParameters for more information on using the DescribeDBParameters API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeDBParametersRequest method.
req, resp := client.DescribeDBParametersRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBParameters

func (*RDS) DescribeDBParametersWithContext

func (c *RDS) DescribeDBParametersWithContext(ctx aws.Context, input *DescribeDBParametersInput, opts ...request.Option) (*DescribeDBParametersOutput, error)

DescribeDBParametersWithContext is the same as DescribeDBParameters with the addition of the ability to pass a context and additional request options.

See DescribeDBParameters for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBProxies

func (c *RDS) DescribeDBProxies(input *DescribeDBProxiesInput) (*DescribeDBProxiesOutput, error)

DescribeDBProxies API operation for Amazon Relational Database Service.

Returns information about DB proxies.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeDBProxies for usage and error information.

Returned Error Codes:

  • ErrCodeDBProxyNotFoundFault "DBProxyNotFoundFault" The specified proxy name doesn't correspond to a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBProxies

func (*RDS) DescribeDBProxiesPages

func (c *RDS) DescribeDBProxiesPages(input *DescribeDBProxiesInput, fn func(*DescribeDBProxiesOutput, bool) bool) error

DescribeDBProxiesPages iterates over the pages of a DescribeDBProxies operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeDBProxies method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeDBProxies operation.
pageNum := 0
err := client.DescribeDBProxiesPages(params,
    func(page *rds.DescribeDBProxiesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeDBProxiesPagesWithContext

func (c *RDS) DescribeDBProxiesPagesWithContext(ctx aws.Context, input *DescribeDBProxiesInput, fn func(*DescribeDBProxiesOutput, bool) bool, opts ...request.Option) error

DescribeDBProxiesPagesWithContext same as DescribeDBProxiesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBProxiesRequest

func (c *RDS) DescribeDBProxiesRequest(input *DescribeDBProxiesInput) (req *request.Request, output *DescribeDBProxiesOutput)

DescribeDBProxiesRequest generates a "aws/request.Request" representing the client's request for the DescribeDBProxies operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeDBProxies for more information on using the DescribeDBProxies API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeDBProxiesRequest method.
req, resp := client.DescribeDBProxiesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBProxies

func (*RDS) DescribeDBProxiesWithContext

func (c *RDS) DescribeDBProxiesWithContext(ctx aws.Context, input *DescribeDBProxiesInput, opts ...request.Option) (*DescribeDBProxiesOutput, error)

DescribeDBProxiesWithContext is the same as DescribeDBProxies with the addition of the ability to pass a context and additional request options.

See DescribeDBProxies for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBProxyEndpoints

func (c *RDS) DescribeDBProxyEndpoints(input *DescribeDBProxyEndpointsInput) (*DescribeDBProxyEndpointsOutput, error)

DescribeDBProxyEndpoints API operation for Amazon Relational Database Service.

Returns information about DB proxy endpoints.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeDBProxyEndpoints for usage and error information.

Returned Error Codes:

  • ErrCodeDBProxyNotFoundFault "DBProxyNotFoundFault" The specified proxy name doesn't correspond to a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

  • ErrCodeDBProxyEndpointNotFoundFault "DBProxyEndpointNotFoundFault" The DB proxy endpoint doesn't exist.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBProxyEndpoints

func (*RDS) DescribeDBProxyEndpointsPages

func (c *RDS) DescribeDBProxyEndpointsPages(input *DescribeDBProxyEndpointsInput, fn func(*DescribeDBProxyEndpointsOutput, bool) bool) error

DescribeDBProxyEndpointsPages iterates over the pages of a DescribeDBProxyEndpoints operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeDBProxyEndpoints method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeDBProxyEndpoints operation.
pageNum := 0
err := client.DescribeDBProxyEndpointsPages(params,
    func(page *rds.DescribeDBProxyEndpointsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeDBProxyEndpointsPagesWithContext

func (c *RDS) DescribeDBProxyEndpointsPagesWithContext(ctx aws.Context, input *DescribeDBProxyEndpointsInput, fn func(*DescribeDBProxyEndpointsOutput, bool) bool, opts ...request.Option) error

DescribeDBProxyEndpointsPagesWithContext same as DescribeDBProxyEndpointsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBProxyEndpointsRequest

func (c *RDS) DescribeDBProxyEndpointsRequest(input *DescribeDBProxyEndpointsInput) (req *request.Request, output *DescribeDBProxyEndpointsOutput)

DescribeDBProxyEndpointsRequest generates a "aws/request.Request" representing the client's request for the DescribeDBProxyEndpoints operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeDBProxyEndpoints for more information on using the DescribeDBProxyEndpoints API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeDBProxyEndpointsRequest method.
req, resp := client.DescribeDBProxyEndpointsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBProxyEndpoints

func (*RDS) DescribeDBProxyEndpointsWithContext

func (c *RDS) DescribeDBProxyEndpointsWithContext(ctx aws.Context, input *DescribeDBProxyEndpointsInput, opts ...request.Option) (*DescribeDBProxyEndpointsOutput, error)

DescribeDBProxyEndpointsWithContext is the same as DescribeDBProxyEndpoints with the addition of the ability to pass a context and additional request options.

See DescribeDBProxyEndpoints for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBProxyTargetGroups

func (c *RDS) DescribeDBProxyTargetGroups(input *DescribeDBProxyTargetGroupsInput) (*DescribeDBProxyTargetGroupsOutput, error)

DescribeDBProxyTargetGroups API operation for Amazon Relational Database Service.

Returns information about DB proxy target groups, represented by DBProxyTargetGroup data structures.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeDBProxyTargetGroups for usage and error information.

Returned Error Codes:

  • ErrCodeDBProxyNotFoundFault "DBProxyNotFoundFault" The specified proxy name doesn't correspond to a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

  • ErrCodeDBProxyTargetGroupNotFoundFault "DBProxyTargetGroupNotFoundFault" The specified target group isn't available for a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

  • ErrCodeInvalidDBProxyStateFault "InvalidDBProxyStateFault" The requested operation can't be performed while the proxy is in this state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBProxyTargetGroups

func (*RDS) DescribeDBProxyTargetGroupsPages

func (c *RDS) DescribeDBProxyTargetGroupsPages(input *DescribeDBProxyTargetGroupsInput, fn func(*DescribeDBProxyTargetGroupsOutput, bool) bool) error

DescribeDBProxyTargetGroupsPages iterates over the pages of a DescribeDBProxyTargetGroups operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeDBProxyTargetGroups method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeDBProxyTargetGroups operation.
pageNum := 0
err := client.DescribeDBProxyTargetGroupsPages(params,
    func(page *rds.DescribeDBProxyTargetGroupsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeDBProxyTargetGroupsPagesWithContext

func (c *RDS) DescribeDBProxyTargetGroupsPagesWithContext(ctx aws.Context, input *DescribeDBProxyTargetGroupsInput, fn func(*DescribeDBProxyTargetGroupsOutput, bool) bool, opts ...request.Option) error

DescribeDBProxyTargetGroupsPagesWithContext same as DescribeDBProxyTargetGroupsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBProxyTargetGroupsRequest

func (c *RDS) DescribeDBProxyTargetGroupsRequest(input *DescribeDBProxyTargetGroupsInput) (req *request.Request, output *DescribeDBProxyTargetGroupsOutput)

DescribeDBProxyTargetGroupsRequest generates a "aws/request.Request" representing the client's request for the DescribeDBProxyTargetGroups operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeDBProxyTargetGroups for more information on using the DescribeDBProxyTargetGroups API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeDBProxyTargetGroupsRequest method.
req, resp := client.DescribeDBProxyTargetGroupsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBProxyTargetGroups

func (*RDS) DescribeDBProxyTargetGroupsWithContext

func (c *RDS) DescribeDBProxyTargetGroupsWithContext(ctx aws.Context, input *DescribeDBProxyTargetGroupsInput, opts ...request.Option) (*DescribeDBProxyTargetGroupsOutput, error)

DescribeDBProxyTargetGroupsWithContext is the same as DescribeDBProxyTargetGroups with the addition of the ability to pass a context and additional request options.

See DescribeDBProxyTargetGroups for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBProxyTargets

func (c *RDS) DescribeDBProxyTargets(input *DescribeDBProxyTargetsInput) (*DescribeDBProxyTargetsOutput, error)

DescribeDBProxyTargets API operation for Amazon Relational Database Service.

Returns information about DBProxyTarget objects. This API supports pagination.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeDBProxyTargets for usage and error information.

Returned Error Codes:

  • ErrCodeDBProxyNotFoundFault "DBProxyNotFoundFault" The specified proxy name doesn't correspond to a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

  • ErrCodeDBProxyTargetNotFoundFault "DBProxyTargetNotFoundFault" The specified RDS DB instance or Aurora DB cluster isn't available for a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

  • ErrCodeDBProxyTargetGroupNotFoundFault "DBProxyTargetGroupNotFoundFault" The specified target group isn't available for a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

  • ErrCodeInvalidDBProxyStateFault "InvalidDBProxyStateFault" The requested operation can't be performed while the proxy is in this state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBProxyTargets

func (*RDS) DescribeDBProxyTargetsPages

func (c *RDS) DescribeDBProxyTargetsPages(input *DescribeDBProxyTargetsInput, fn func(*DescribeDBProxyTargetsOutput, bool) bool) error

DescribeDBProxyTargetsPages iterates over the pages of a DescribeDBProxyTargets operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeDBProxyTargets method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeDBProxyTargets operation.
pageNum := 0
err := client.DescribeDBProxyTargetsPages(params,
    func(page *rds.DescribeDBProxyTargetsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeDBProxyTargetsPagesWithContext

func (c *RDS) DescribeDBProxyTargetsPagesWithContext(ctx aws.Context, input *DescribeDBProxyTargetsInput, fn func(*DescribeDBProxyTargetsOutput, bool) bool, opts ...request.Option) error

DescribeDBProxyTargetsPagesWithContext same as DescribeDBProxyTargetsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBProxyTargetsRequest

func (c *RDS) DescribeDBProxyTargetsRequest(input *DescribeDBProxyTargetsInput) (req *request.Request, output *DescribeDBProxyTargetsOutput)

DescribeDBProxyTargetsRequest generates a "aws/request.Request" representing the client's request for the DescribeDBProxyTargets operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeDBProxyTargets for more information on using the DescribeDBProxyTargets API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeDBProxyTargetsRequest method.
req, resp := client.DescribeDBProxyTargetsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBProxyTargets

func (*RDS) DescribeDBProxyTargetsWithContext

func (c *RDS) DescribeDBProxyTargetsWithContext(ctx aws.Context, input *DescribeDBProxyTargetsInput, opts ...request.Option) (*DescribeDBProxyTargetsOutput, error)

DescribeDBProxyTargetsWithContext is the same as DescribeDBProxyTargets with the addition of the ability to pass a context and additional request options.

See DescribeDBProxyTargets for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBRecommendations

func (c *RDS) DescribeDBRecommendations(input *DescribeDBRecommendationsInput) (*DescribeDBRecommendationsOutput, error)

DescribeDBRecommendations API operation for Amazon Relational Database Service.

Describes the recommendations to resolve the issues for your DB instances, DB clusters, and DB parameter groups.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeDBRecommendations for usage and error information. See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBRecommendations

func (*RDS) DescribeDBRecommendationsPages

func (c *RDS) DescribeDBRecommendationsPages(input *DescribeDBRecommendationsInput, fn func(*DescribeDBRecommendationsOutput, bool) bool) error

DescribeDBRecommendationsPages iterates over the pages of a DescribeDBRecommendations operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeDBRecommendations method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeDBRecommendations operation.
pageNum := 0
err := client.DescribeDBRecommendationsPages(params,
    func(page *rds.DescribeDBRecommendationsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeDBRecommendationsPagesWithContext

func (c *RDS) DescribeDBRecommendationsPagesWithContext(ctx aws.Context, input *DescribeDBRecommendationsInput, fn func(*DescribeDBRecommendationsOutput, bool) bool, opts ...request.Option) error

DescribeDBRecommendationsPagesWithContext same as DescribeDBRecommendationsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBRecommendationsRequest

func (c *RDS) DescribeDBRecommendationsRequest(input *DescribeDBRecommendationsInput) (req *request.Request, output *DescribeDBRecommendationsOutput)

DescribeDBRecommendationsRequest generates a "aws/request.Request" representing the client's request for the DescribeDBRecommendations operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeDBRecommendations for more information on using the DescribeDBRecommendations API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeDBRecommendationsRequest method.
req, resp := client.DescribeDBRecommendationsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBRecommendations

func (*RDS) DescribeDBRecommendationsWithContext

func (c *RDS) DescribeDBRecommendationsWithContext(ctx aws.Context, input *DescribeDBRecommendationsInput, opts ...request.Option) (*DescribeDBRecommendationsOutput, error)

DescribeDBRecommendationsWithContext is the same as DescribeDBRecommendations with the addition of the ability to pass a context and additional request options.

See DescribeDBRecommendations for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBSecurityGroups

func (c *RDS) DescribeDBSecurityGroups(input *DescribeDBSecurityGroupsInput) (*DescribeDBSecurityGroupsOutput, error)

DescribeDBSecurityGroups API operation for Amazon Relational Database Service.

Returns a list of DBSecurityGroup descriptions. If a DBSecurityGroupName is specified, the list will contain only the descriptions of the specified DB security group.

EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that you migrate as soon as possible. For more information, see Migrate from EC2-Classic to a VPC (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html) in the Amazon EC2 User Guide, the blog EC2-Classic Networking is Retiring – Here’s How to Prepare (http://aws.amazon.com/blogs/aws/ec2-classic-is-retiring-heres-how-to-prepare/), and Moving a DB instance not in a VPC into a VPC (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.Non-VPC2VPC.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeDBSecurityGroups for usage and error information.

Returned Error Codes:

  • ErrCodeDBSecurityGroupNotFoundFault "DBSecurityGroupNotFound" DBSecurityGroupName doesn't refer to an existing DB security group.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBSecurityGroups

Example (Shared00)

To list DB security group settings This example lists settings for the specified security group.

Code:

svc := rds.New(session.New())
input := &rds.DescribeDBSecurityGroupsInput{
    DBSecurityGroupName: aws.String("mydbsecuritygroup"),
}

result, err := svc.DescribeDBSecurityGroups(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBSecurityGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBSecurityGroupNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeDBSecurityGroupsPages

func (c *RDS) DescribeDBSecurityGroupsPages(input *DescribeDBSecurityGroupsInput, fn func(*DescribeDBSecurityGroupsOutput, bool) bool) error

DescribeDBSecurityGroupsPages iterates over the pages of a DescribeDBSecurityGroups operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeDBSecurityGroups method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeDBSecurityGroups operation.
pageNum := 0
err := client.DescribeDBSecurityGroupsPages(params,
    func(page *rds.DescribeDBSecurityGroupsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeDBSecurityGroupsPagesWithContext

func (c *RDS) DescribeDBSecurityGroupsPagesWithContext(ctx aws.Context, input *DescribeDBSecurityGroupsInput, fn func(*DescribeDBSecurityGroupsOutput, bool) bool, opts ...request.Option) error

DescribeDBSecurityGroupsPagesWithContext same as DescribeDBSecurityGroupsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBSecurityGroupsRequest

func (c *RDS) DescribeDBSecurityGroupsRequest(input *DescribeDBSecurityGroupsInput) (req *request.Request, output *DescribeDBSecurityGroupsOutput)

DescribeDBSecurityGroupsRequest generates a "aws/request.Request" representing the client's request for the DescribeDBSecurityGroups operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeDBSecurityGroups for more information on using the DescribeDBSecurityGroups API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeDBSecurityGroupsRequest method.
req, resp := client.DescribeDBSecurityGroupsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBSecurityGroups

func (*RDS) DescribeDBSecurityGroupsWithContext

func (c *RDS) DescribeDBSecurityGroupsWithContext(ctx aws.Context, input *DescribeDBSecurityGroupsInput, opts ...request.Option) (*DescribeDBSecurityGroupsOutput, error)

DescribeDBSecurityGroupsWithContext is the same as DescribeDBSecurityGroups with the addition of the ability to pass a context and additional request options.

See DescribeDBSecurityGroups for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBShardGroups

func (c *RDS) DescribeDBShardGroups(input *DescribeDBShardGroupsInput) (*DescribeDBShardGroupsOutput, error)

DescribeDBShardGroups API operation for Amazon Relational Database Service.

Describes existing Aurora Limitless Database DB shard groups.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeDBShardGroups for usage and error information.

Returned Error Codes:

  • ErrCodeDBShardGroupNotFoundFault "DBShardGroupNotFound" The specified DB shard group name wasn't found.

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBShardGroups

func (*RDS) DescribeDBShardGroupsRequest

func (c *RDS) DescribeDBShardGroupsRequest(input *DescribeDBShardGroupsInput) (req *request.Request, output *DescribeDBShardGroupsOutput)

DescribeDBShardGroupsRequest generates a "aws/request.Request" representing the client's request for the DescribeDBShardGroups operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeDBShardGroups for more information on using the DescribeDBShardGroups API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeDBShardGroupsRequest method.
req, resp := client.DescribeDBShardGroupsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBShardGroups

func (*RDS) DescribeDBShardGroupsWithContext

func (c *RDS) DescribeDBShardGroupsWithContext(ctx aws.Context, input *DescribeDBShardGroupsInput, opts ...request.Option) (*DescribeDBShardGroupsOutput, error)

DescribeDBShardGroupsWithContext is the same as DescribeDBShardGroups with the addition of the ability to pass a context and additional request options.

See DescribeDBShardGroups for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBSnapshotAttributes

func (c *RDS) DescribeDBSnapshotAttributes(input *DescribeDBSnapshotAttributesInput) (*DescribeDBSnapshotAttributesOutput, error)

DescribeDBSnapshotAttributes API operation for Amazon Relational Database Service.

Returns a list of DB snapshot attribute names and values for a manual DB snapshot.

When sharing snapshots with other Amazon Web Services accounts, DescribeDBSnapshotAttributes returns the restore attribute and a list of IDs for the Amazon Web Services accounts that are authorized to copy or restore the manual DB snapshot. If all is included in the list of values for the restore attribute, then the manual DB snapshot is public and can be copied or restored by all Amazon Web Services accounts.

To add or remove access for an Amazon Web Services account to copy or restore a manual DB snapshot, or to make the manual DB snapshot public or private, use the ModifyDBSnapshotAttribute API action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeDBSnapshotAttributes for usage and error information.

Returned Error Codes:

  • ErrCodeDBSnapshotNotFoundFault "DBSnapshotNotFound" DBSnapshotIdentifier doesn't refer to an existing DB snapshot.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBSnapshotAttributes

Example (Shared00)

To describe the attribute names and values for a DB snapshot The following example describes the attribute names and values for a DB snapshot.

Code:

svc := rds.New(session.New())
input := &rds.DescribeDBSnapshotAttributesInput{
    DBSnapshotIdentifier: aws.String("mydbsnapshot"),
}

result, err := svc.DescribeDBSnapshotAttributes(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBSnapshotNotFoundFault:
            fmt.Println(rds.ErrCodeDBSnapshotNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeDBSnapshotAttributesRequest

func (c *RDS) DescribeDBSnapshotAttributesRequest(input *DescribeDBSnapshotAttributesInput) (req *request.Request, output *DescribeDBSnapshotAttributesOutput)

DescribeDBSnapshotAttributesRequest generates a "aws/request.Request" representing the client's request for the DescribeDBSnapshotAttributes operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeDBSnapshotAttributes for more information on using the DescribeDBSnapshotAttributes API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeDBSnapshotAttributesRequest method.
req, resp := client.DescribeDBSnapshotAttributesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBSnapshotAttributes

func (*RDS) DescribeDBSnapshotAttributesWithContext

func (c *RDS) DescribeDBSnapshotAttributesWithContext(ctx aws.Context, input *DescribeDBSnapshotAttributesInput, opts ...request.Option) (*DescribeDBSnapshotAttributesOutput, error)

DescribeDBSnapshotAttributesWithContext is the same as DescribeDBSnapshotAttributes with the addition of the ability to pass a context and additional request options.

See DescribeDBSnapshotAttributes for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBSnapshotTenantDatabases

func (c *RDS) DescribeDBSnapshotTenantDatabases(input *DescribeDBSnapshotTenantDatabasesInput) (*DescribeDBSnapshotTenantDatabasesOutput, error)

DescribeDBSnapshotTenantDatabases API operation for Amazon Relational Database Service.

Describes the tenant databases that exist in a DB snapshot. This command only applies to RDS for Oracle DB instances in the multi-tenant configuration.

You can use this command to inspect the tenant databases within a snapshot before restoring it. You can't directly interact with the tenant databases in a DB snapshot. If you restore a snapshot that was taken from DB instance using the multi-tenant configuration, you restore all its tenant databases.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeDBSnapshotTenantDatabases for usage and error information.

Returned Error Codes:

  • ErrCodeDBSnapshotNotFoundFault "DBSnapshotNotFound" DBSnapshotIdentifier doesn't refer to an existing DB snapshot.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBSnapshotTenantDatabases

func (*RDS) DescribeDBSnapshotTenantDatabasesPages

func (c *RDS) DescribeDBSnapshotTenantDatabasesPages(input *DescribeDBSnapshotTenantDatabasesInput, fn func(*DescribeDBSnapshotTenantDatabasesOutput, bool) bool) error

DescribeDBSnapshotTenantDatabasesPages iterates over the pages of a DescribeDBSnapshotTenantDatabases operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeDBSnapshotTenantDatabases method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeDBSnapshotTenantDatabases operation.
pageNum := 0
err := client.DescribeDBSnapshotTenantDatabasesPages(params,
    func(page *rds.DescribeDBSnapshotTenantDatabasesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeDBSnapshotTenantDatabasesPagesWithContext

func (c *RDS) DescribeDBSnapshotTenantDatabasesPagesWithContext(ctx aws.Context, input *DescribeDBSnapshotTenantDatabasesInput, fn func(*DescribeDBSnapshotTenantDatabasesOutput, bool) bool, opts ...request.Option) error

DescribeDBSnapshotTenantDatabasesPagesWithContext same as DescribeDBSnapshotTenantDatabasesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBSnapshotTenantDatabasesRequest

func (c *RDS) DescribeDBSnapshotTenantDatabasesRequest(input *DescribeDBSnapshotTenantDatabasesInput) (req *request.Request, output *DescribeDBSnapshotTenantDatabasesOutput)

DescribeDBSnapshotTenantDatabasesRequest generates a "aws/request.Request" representing the client's request for the DescribeDBSnapshotTenantDatabases operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeDBSnapshotTenantDatabases for more information on using the DescribeDBSnapshotTenantDatabases API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeDBSnapshotTenantDatabasesRequest method.
req, resp := client.DescribeDBSnapshotTenantDatabasesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBSnapshotTenantDatabases

func (*RDS) DescribeDBSnapshotTenantDatabasesWithContext

func (c *RDS) DescribeDBSnapshotTenantDatabasesWithContext(ctx aws.Context, input *DescribeDBSnapshotTenantDatabasesInput, opts ...request.Option) (*DescribeDBSnapshotTenantDatabasesOutput, error)

DescribeDBSnapshotTenantDatabasesWithContext is the same as DescribeDBSnapshotTenantDatabases with the addition of the ability to pass a context and additional request options.

See DescribeDBSnapshotTenantDatabases for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBSnapshots

func (c *RDS) DescribeDBSnapshots(input *DescribeDBSnapshotsInput) (*DescribeDBSnapshotsOutput, error)

DescribeDBSnapshots API operation for Amazon Relational Database Service.

Returns information about DB snapshots. This API action supports pagination.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeDBSnapshots for usage and error information.

Returned Error Codes:

  • ErrCodeDBSnapshotNotFoundFault "DBSnapshotNotFound" DBSnapshotIdentifier doesn't refer to an existing DB snapshot.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBSnapshots

Example (Shared00)

To describe a DB snapshot for a DB instance The following example retrieves the details of a DB snapshot for a DB instance.

Code:

svc := rds.New(session.New())
input := &rds.DescribeDBSnapshotsInput{
    DBSnapshotIdentifier: aws.String("mydbsnapshot"),
}

result, err := svc.DescribeDBSnapshots(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBSnapshotNotFoundFault:
            fmt.Println(rds.ErrCodeDBSnapshotNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeDBSnapshotsPages

func (c *RDS) DescribeDBSnapshotsPages(input *DescribeDBSnapshotsInput, fn func(*DescribeDBSnapshotsOutput, bool) bool) error

DescribeDBSnapshotsPages iterates over the pages of a DescribeDBSnapshots operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeDBSnapshots method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeDBSnapshots operation.
pageNum := 0
err := client.DescribeDBSnapshotsPages(params,
    func(page *rds.DescribeDBSnapshotsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeDBSnapshotsPagesWithContext

func (c *RDS) DescribeDBSnapshotsPagesWithContext(ctx aws.Context, input *DescribeDBSnapshotsInput, fn func(*DescribeDBSnapshotsOutput, bool) bool, opts ...request.Option) error

DescribeDBSnapshotsPagesWithContext same as DescribeDBSnapshotsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBSnapshotsRequest

func (c *RDS) DescribeDBSnapshotsRequest(input *DescribeDBSnapshotsInput) (req *request.Request, output *DescribeDBSnapshotsOutput)

DescribeDBSnapshotsRequest generates a "aws/request.Request" representing the client's request for the DescribeDBSnapshots operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeDBSnapshots for more information on using the DescribeDBSnapshots API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeDBSnapshotsRequest method.
req, resp := client.DescribeDBSnapshotsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBSnapshots

func (*RDS) DescribeDBSnapshotsWithContext

func (c *RDS) DescribeDBSnapshotsWithContext(ctx aws.Context, input *DescribeDBSnapshotsInput, opts ...request.Option) (*DescribeDBSnapshotsOutput, error)

DescribeDBSnapshotsWithContext is the same as DescribeDBSnapshots with the addition of the ability to pass a context and additional request options.

See DescribeDBSnapshots for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBSubnetGroups

func (c *RDS) DescribeDBSubnetGroups(input *DescribeDBSubnetGroupsInput) (*DescribeDBSubnetGroupsOutput, error)

DescribeDBSubnetGroups API operation for Amazon Relational Database Service.

Returns a list of DBSubnetGroup descriptions. If a DBSubnetGroupName is specified, the list will contain only the descriptions of the specified DBSubnetGroup.

For an overview of CIDR ranges, go to the Wikipedia Tutorial (http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing).

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeDBSubnetGroups for usage and error information.

Returned Error Codes:

  • ErrCodeDBSubnetGroupNotFoundFault "DBSubnetGroupNotFoundFault" DBSubnetGroupName doesn't refer to an existing DB subnet group.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBSubnetGroups

Example (Shared00)

To describe a DB subnet group The following example retrieves the details of the specified DB subnet group.

Code:

svc := rds.New(session.New())
input := &rds.DescribeDBSubnetGroupsInput{}

result, err := svc.DescribeDBSubnetGroups(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBSubnetGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBSubnetGroupNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeDBSubnetGroupsPages

func (c *RDS) DescribeDBSubnetGroupsPages(input *DescribeDBSubnetGroupsInput, fn func(*DescribeDBSubnetGroupsOutput, bool) bool) error

DescribeDBSubnetGroupsPages iterates over the pages of a DescribeDBSubnetGroups operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeDBSubnetGroups method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeDBSubnetGroups operation.
pageNum := 0
err := client.DescribeDBSubnetGroupsPages(params,
    func(page *rds.DescribeDBSubnetGroupsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeDBSubnetGroupsPagesWithContext

func (c *RDS) DescribeDBSubnetGroupsPagesWithContext(ctx aws.Context, input *DescribeDBSubnetGroupsInput, fn func(*DescribeDBSubnetGroupsOutput, bool) bool, opts ...request.Option) error

DescribeDBSubnetGroupsPagesWithContext same as DescribeDBSubnetGroupsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeDBSubnetGroupsRequest

func (c *RDS) DescribeDBSubnetGroupsRequest(input *DescribeDBSubnetGroupsInput) (req *request.Request, output *DescribeDBSubnetGroupsOutput)

DescribeDBSubnetGroupsRequest generates a "aws/request.Request" representing the client's request for the DescribeDBSubnetGroups operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeDBSubnetGroups for more information on using the DescribeDBSubnetGroups API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeDBSubnetGroupsRequest method.
req, resp := client.DescribeDBSubnetGroupsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBSubnetGroups

func (*RDS) DescribeDBSubnetGroupsWithContext

func (c *RDS) DescribeDBSubnetGroupsWithContext(ctx aws.Context, input *DescribeDBSubnetGroupsInput, opts ...request.Option) (*DescribeDBSubnetGroupsOutput, error)

DescribeDBSubnetGroupsWithContext is the same as DescribeDBSubnetGroups with the addition of the ability to pass a context and additional request options.

See DescribeDBSubnetGroups for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeEngineDefaultClusterParameters

func (c *RDS) DescribeEngineDefaultClusterParameters(input *DescribeEngineDefaultClusterParametersInput) (*DescribeEngineDefaultClusterParametersOutput, error)

DescribeEngineDefaultClusterParameters API operation for Amazon Relational Database Service.

Returns the default engine and system parameter information for the cluster database engine.

For more information on Amazon Aurora, see What is Amazon Aurora? (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html) in the Amazon Aurora User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeEngineDefaultClusterParameters for usage and error information. See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeEngineDefaultClusterParameters

Example (Shared00)

To describe the default engine and system parameter information for the Aurora database engine The following example retrieves the details of the default engine and system parameter information for Aurora DB clusters with MySQL 5.7 compatibility.

Code:

svc := rds.New(session.New())
input := &rds.DescribeEngineDefaultClusterParametersInput{
    DBParameterGroupFamily: aws.String("aurora-mysql5.7"),
}

result, err := svc.DescribeEngineDefaultClusterParameters(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeEngineDefaultClusterParametersRequest

func (c *RDS) DescribeEngineDefaultClusterParametersRequest(input *DescribeEngineDefaultClusterParametersInput) (req *request.Request, output *DescribeEngineDefaultClusterParametersOutput)

DescribeEngineDefaultClusterParametersRequest generates a "aws/request.Request" representing the client's request for the DescribeEngineDefaultClusterParameters operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeEngineDefaultClusterParameters for more information on using the DescribeEngineDefaultClusterParameters API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeEngineDefaultClusterParametersRequest method.
req, resp := client.DescribeEngineDefaultClusterParametersRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeEngineDefaultClusterParameters

func (*RDS) DescribeEngineDefaultClusterParametersWithContext

func (c *RDS) DescribeEngineDefaultClusterParametersWithContext(ctx aws.Context, input *DescribeEngineDefaultClusterParametersInput, opts ...request.Option) (*DescribeEngineDefaultClusterParametersOutput, error)

DescribeEngineDefaultClusterParametersWithContext is the same as DescribeEngineDefaultClusterParameters with the addition of the ability to pass a context and additional request options.

See DescribeEngineDefaultClusterParameters for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeEngineDefaultParameters

func (c *RDS) DescribeEngineDefaultParameters(input *DescribeEngineDefaultParametersInput) (*DescribeEngineDefaultParametersOutput, error)

DescribeEngineDefaultParameters API operation for Amazon Relational Database Service.

Returns the default engine and system parameter information for the specified database engine.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeEngineDefaultParameters for usage and error information. See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeEngineDefaultParameters

Example (Shared00)

To describe the default engine and system parameter information for the database engine The following example retrieves details for the default engine and system parameter information for MySQL 5.7 DB instances.

Code:

svc := rds.New(session.New())
input := &rds.DescribeEngineDefaultParametersInput{
    DBParameterGroupFamily: aws.String("mysql5.7"),
}

result, err := svc.DescribeEngineDefaultParameters(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeEngineDefaultParametersPages

func (c *RDS) DescribeEngineDefaultParametersPages(input *DescribeEngineDefaultParametersInput, fn func(*DescribeEngineDefaultParametersOutput, bool) bool) error

DescribeEngineDefaultParametersPages iterates over the pages of a DescribeEngineDefaultParameters operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeEngineDefaultParameters method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeEngineDefaultParameters operation.
pageNum := 0
err := client.DescribeEngineDefaultParametersPages(params,
    func(page *rds.DescribeEngineDefaultParametersOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeEngineDefaultParametersPagesWithContext

func (c *RDS) DescribeEngineDefaultParametersPagesWithContext(ctx aws.Context, input *DescribeEngineDefaultParametersInput, fn func(*DescribeEngineDefaultParametersOutput, bool) bool, opts ...request.Option) error

DescribeEngineDefaultParametersPagesWithContext same as DescribeEngineDefaultParametersPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeEngineDefaultParametersRequest

func (c *RDS) DescribeEngineDefaultParametersRequest(input *DescribeEngineDefaultParametersInput) (req *request.Request, output *DescribeEngineDefaultParametersOutput)

DescribeEngineDefaultParametersRequest generates a "aws/request.Request" representing the client's request for the DescribeEngineDefaultParameters operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeEngineDefaultParameters for more information on using the DescribeEngineDefaultParameters API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeEngineDefaultParametersRequest method.
req, resp := client.DescribeEngineDefaultParametersRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeEngineDefaultParameters

func (*RDS) DescribeEngineDefaultParametersWithContext

func (c *RDS) DescribeEngineDefaultParametersWithContext(ctx aws.Context, input *DescribeEngineDefaultParametersInput, opts ...request.Option) (*DescribeEngineDefaultParametersOutput, error)

DescribeEngineDefaultParametersWithContext is the same as DescribeEngineDefaultParameters with the addition of the ability to pass a context and additional request options.

See DescribeEngineDefaultParameters for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeEventCategories

func (c *RDS) DescribeEventCategories(input *DescribeEventCategoriesInput) (*DescribeEventCategoriesOutput, error)

DescribeEventCategories API operation for Amazon Relational Database Service.

Displays a list of categories for all event source types, or, if specified, for a specified source type. You can also see this list in the "Amazon RDS event categories and event messages" section of the Amazon RDS User Guide (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.Messages.html) or the Amazon Aurora User Guide (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Events.Messages.html).

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeEventCategories for usage and error information. See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeEventCategories

Example (Shared00)

To describe event categories The following example retrieves details about the event categories for all available event sources.

Code:

svc := rds.New(session.New())
input := &rds.DescribeEventCategoriesInput{
    SourceType: aws.String(""),
}

result, err := svc.DescribeEventCategories(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeEventCategoriesRequest

func (c *RDS) DescribeEventCategoriesRequest(input *DescribeEventCategoriesInput) (req *request.Request, output *DescribeEventCategoriesOutput)

DescribeEventCategoriesRequest generates a "aws/request.Request" representing the client's request for the DescribeEventCategories operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeEventCategories for more information on using the DescribeEventCategories API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeEventCategoriesRequest method.
req, resp := client.DescribeEventCategoriesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeEventCategories

func (*RDS) DescribeEventCategoriesWithContext

func (c *RDS) DescribeEventCategoriesWithContext(ctx aws.Context, input *DescribeEventCategoriesInput, opts ...request.Option) (*DescribeEventCategoriesOutput, error)

DescribeEventCategoriesWithContext is the same as DescribeEventCategories with the addition of the ability to pass a context and additional request options.

See DescribeEventCategories for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeEventSubscriptions

func (c *RDS) DescribeEventSubscriptions(input *DescribeEventSubscriptionsInput) (*DescribeEventSubscriptionsOutput, error)

DescribeEventSubscriptions API operation for Amazon Relational Database Service.

Lists all the subscription descriptions for a customer account. The description for a subscription includes SubscriptionName, SNSTopicARN, CustomerID, SourceType, SourceID, CreationTime, and Status.

If you specify a SubscriptionName, lists the description for that subscription.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeEventSubscriptions for usage and error information.

Returned Error Codes:

  • ErrCodeSubscriptionNotFoundFault "SubscriptionNotFound" The subscription name does not exist.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeEventSubscriptions

Example (Shared00)

To describe event subscriptions This example describes all of the Amazon RDS event subscriptions for the current AWS account.

Code:

svc := rds.New(session.New())
input := &rds.DescribeEventSubscriptionsInput{}

result, err := svc.DescribeEventSubscriptions(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeSubscriptionNotFoundFault:
            fmt.Println(rds.ErrCodeSubscriptionNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeEventSubscriptionsPages

func (c *RDS) DescribeEventSubscriptionsPages(input *DescribeEventSubscriptionsInput, fn func(*DescribeEventSubscriptionsOutput, bool) bool) error

DescribeEventSubscriptionsPages iterates over the pages of a DescribeEventSubscriptions operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeEventSubscriptions method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeEventSubscriptions operation.
pageNum := 0
err := client.DescribeEventSubscriptionsPages(params,
    func(page *rds.DescribeEventSubscriptionsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeEventSubscriptionsPagesWithContext

func (c *RDS) DescribeEventSubscriptionsPagesWithContext(ctx aws.Context, input *DescribeEventSubscriptionsInput, fn func(*DescribeEventSubscriptionsOutput, bool) bool, opts ...request.Option) error

DescribeEventSubscriptionsPagesWithContext same as DescribeEventSubscriptionsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeEventSubscriptionsRequest

func (c *RDS) DescribeEventSubscriptionsRequest(input *DescribeEventSubscriptionsInput) (req *request.Request, output *DescribeEventSubscriptionsOutput)

DescribeEventSubscriptionsRequest generates a "aws/request.Request" representing the client's request for the DescribeEventSubscriptions operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeEventSubscriptions for more information on using the DescribeEventSubscriptions API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeEventSubscriptionsRequest method.
req, resp := client.DescribeEventSubscriptionsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeEventSubscriptions

func (*RDS) DescribeEventSubscriptionsWithContext

func (c *RDS) DescribeEventSubscriptionsWithContext(ctx aws.Context, input *DescribeEventSubscriptionsInput, opts ...request.Option) (*DescribeEventSubscriptionsOutput, error)

DescribeEventSubscriptionsWithContext is the same as DescribeEventSubscriptions with the addition of the ability to pass a context and additional request options.

See DescribeEventSubscriptions for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeEvents

func (c *RDS) DescribeEvents(input *DescribeEventsInput) (*DescribeEventsOutput, error)

DescribeEvents API operation for Amazon Relational Database Service.

Returns events related to DB instances, DB clusters, DB parameter groups, DB security groups, DB snapshots, DB cluster snapshots, and RDS Proxies for the past 14 days. Events specific to a particular DB instance, DB cluster, DB parameter group, DB security group, DB snapshot, DB cluster snapshot group, or RDS Proxy can be obtained by providing the name as a parameter.

For more information on working with events, see Monitoring Amazon RDS events (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/working-with-events.html) in the Amazon RDS User Guide and Monitoring Amazon Aurora events (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/working-with-events.html) in the Amazon Aurora User Guide.

By default, RDS returns events that were generated in the past hour.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeEvents for usage and error information. See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeEvents

Example (Shared00)

To describe events The following retrieves details for the events that have occurred for the specified DB instance.

Code:

svc := rds.New(session.New())
input := &rds.DescribeEventsInput{
    SourceIdentifier: aws.String("test-instance"),
    SourceType:       aws.String("db-instance"),
}

result, err := svc.DescribeEvents(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeEventsPages

func (c *RDS) DescribeEventsPages(input *DescribeEventsInput, fn func(*DescribeEventsOutput, bool) bool) error

DescribeEventsPages iterates over the pages of a DescribeEvents operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeEvents method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeEvents operation.
pageNum := 0
err := client.DescribeEventsPages(params,
    func(page *rds.DescribeEventsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeEventsPagesWithContext

func (c *RDS) DescribeEventsPagesWithContext(ctx aws.Context, input *DescribeEventsInput, fn func(*DescribeEventsOutput, bool) bool, opts ...request.Option) error

DescribeEventsPagesWithContext same as DescribeEventsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeEventsRequest

func (c *RDS) DescribeEventsRequest(input *DescribeEventsInput) (req *request.Request, output *DescribeEventsOutput)

DescribeEventsRequest generates a "aws/request.Request" representing the client's request for the DescribeEvents operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeEvents for more information on using the DescribeEvents API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeEventsRequest method.
req, resp := client.DescribeEventsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeEvents

func (*RDS) DescribeEventsWithContext

func (c *RDS) DescribeEventsWithContext(ctx aws.Context, input *DescribeEventsInput, opts ...request.Option) (*DescribeEventsOutput, error)

DescribeEventsWithContext is the same as DescribeEvents with the addition of the ability to pass a context and additional request options.

See DescribeEvents for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeExportTasks

func (c *RDS) DescribeExportTasks(input *DescribeExportTasksInput) (*DescribeExportTasksOutput, error)

DescribeExportTasks API operation for Amazon Relational Database Service.

Returns information about a snapshot or cluster export to Amazon S3. This API operation supports pagination.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeExportTasks for usage and error information.

Returned Error Codes:

  • ErrCodeExportTaskNotFoundFault "ExportTaskNotFound" The export task doesn't exist.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeExportTasks

Example (Shared00)

To describe snapshot export tasks The following example returns information about snapshot exports to Amazon S3.

Code:

svc := rds.New(session.New())
input := &rds.DescribeExportTasksInput{}

result, err := svc.DescribeExportTasks(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeExportTaskNotFoundFault:
            fmt.Println(rds.ErrCodeExportTaskNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeExportTasksPages

func (c *RDS) DescribeExportTasksPages(input *DescribeExportTasksInput, fn func(*DescribeExportTasksOutput, bool) bool) error

DescribeExportTasksPages iterates over the pages of a DescribeExportTasks operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeExportTasks method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeExportTasks operation.
pageNum := 0
err := client.DescribeExportTasksPages(params,
    func(page *rds.DescribeExportTasksOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeExportTasksPagesWithContext

func (c *RDS) DescribeExportTasksPagesWithContext(ctx aws.Context, input *DescribeExportTasksInput, fn func(*DescribeExportTasksOutput, bool) bool, opts ...request.Option) error

DescribeExportTasksPagesWithContext same as DescribeExportTasksPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeExportTasksRequest

func (c *RDS) DescribeExportTasksRequest(input *DescribeExportTasksInput) (req *request.Request, output *DescribeExportTasksOutput)

DescribeExportTasksRequest generates a "aws/request.Request" representing the client's request for the DescribeExportTasks operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeExportTasks for more information on using the DescribeExportTasks API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeExportTasksRequest method.
req, resp := client.DescribeExportTasksRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeExportTasks

func (*RDS) DescribeExportTasksWithContext

func (c *RDS) DescribeExportTasksWithContext(ctx aws.Context, input *DescribeExportTasksInput, opts ...request.Option) (*DescribeExportTasksOutput, error)

DescribeExportTasksWithContext is the same as DescribeExportTasks with the addition of the ability to pass a context and additional request options.

See DescribeExportTasks for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeGlobalClusters

func (c *RDS) DescribeGlobalClusters(input *DescribeGlobalClustersInput) (*DescribeGlobalClustersOutput, error)

DescribeGlobalClusters API operation for Amazon Relational Database Service.

Returns information about Aurora global database clusters. This API supports pagination.

For more information on Amazon Aurora, see What is Amazon Aurora? (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html) in the Amazon Aurora User Guide.

This action only applies to Aurora DB clusters.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeGlobalClusters for usage and error information.

Returned Error Codes:

  • ErrCodeGlobalClusterNotFoundFault "GlobalClusterNotFoundFault" The GlobalClusterIdentifier doesn't refer to an existing global database cluster.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeGlobalClusters

Example (Shared00)

To describe global DB clusters The following example lists Aurora global DB clusters in the current AWS Region.

Code:

svc := rds.New(session.New())
input := &rds.DescribeGlobalClustersInput{}

result, err := svc.DescribeGlobalClusters(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeGlobalClusterNotFoundFault:
            fmt.Println(rds.ErrCodeGlobalClusterNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeGlobalClustersPages

func (c *RDS) DescribeGlobalClustersPages(input *DescribeGlobalClustersInput, fn func(*DescribeGlobalClustersOutput, bool) bool) error

DescribeGlobalClustersPages iterates over the pages of a DescribeGlobalClusters operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeGlobalClusters method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeGlobalClusters operation.
pageNum := 0
err := client.DescribeGlobalClustersPages(params,
    func(page *rds.DescribeGlobalClustersOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeGlobalClustersPagesWithContext

func (c *RDS) DescribeGlobalClustersPagesWithContext(ctx aws.Context, input *DescribeGlobalClustersInput, fn func(*DescribeGlobalClustersOutput, bool) bool, opts ...request.Option) error

DescribeGlobalClustersPagesWithContext same as DescribeGlobalClustersPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeGlobalClustersRequest

func (c *RDS) DescribeGlobalClustersRequest(input *DescribeGlobalClustersInput) (req *request.Request, output *DescribeGlobalClustersOutput)

DescribeGlobalClustersRequest generates a "aws/request.Request" representing the client's request for the DescribeGlobalClusters operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeGlobalClusters for more information on using the DescribeGlobalClusters API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeGlobalClustersRequest method.
req, resp := client.DescribeGlobalClustersRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeGlobalClusters

func (*RDS) DescribeGlobalClustersWithContext

func (c *RDS) DescribeGlobalClustersWithContext(ctx aws.Context, input *DescribeGlobalClustersInput, opts ...request.Option) (*DescribeGlobalClustersOutput, error)

DescribeGlobalClustersWithContext is the same as DescribeGlobalClusters with the addition of the ability to pass a context and additional request options.

See DescribeGlobalClusters for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeIntegrations

func (c *RDS) DescribeIntegrations(input *DescribeIntegrationsInput) (*DescribeIntegrationsOutput, error)

DescribeIntegrations API operation for Amazon Relational Database Service.

Describe one or more zero-ETL integrations with Amazon Redshift.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeIntegrations for usage and error information.

Returned Error Codes:

  • ErrCodeIntegrationNotFoundFault "IntegrationNotFoundFault" The specified integration could not be found.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeIntegrations

Example (Shared00)

To describe a zero-ETL integration The following example retrieves information about a zero-ETL integration with Amazon Redshift.

Code:

svc := rds.New(session.New())
input := &rds.DescribeIntegrationsInput{
    IntegrationIdentifier: aws.String("5b9f3d79-7392-4a3e-896c-58eaa1b53231"),
}

result, err := svc.DescribeIntegrations(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeIntegrationNotFoundFault:
            fmt.Println(rds.ErrCodeIntegrationNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeIntegrationsPages

func (c *RDS) DescribeIntegrationsPages(input *DescribeIntegrationsInput, fn func(*DescribeIntegrationsOutput, bool) bool) error

DescribeIntegrationsPages iterates over the pages of a DescribeIntegrations operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeIntegrations method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeIntegrations operation.
pageNum := 0
err := client.DescribeIntegrationsPages(params,
    func(page *rds.DescribeIntegrationsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeIntegrationsPagesWithContext

func (c *RDS) DescribeIntegrationsPagesWithContext(ctx aws.Context, input *DescribeIntegrationsInput, fn func(*DescribeIntegrationsOutput, bool) bool, opts ...request.Option) error

DescribeIntegrationsPagesWithContext same as DescribeIntegrationsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeIntegrationsRequest

func (c *RDS) DescribeIntegrationsRequest(input *DescribeIntegrationsInput) (req *request.Request, output *DescribeIntegrationsOutput)

DescribeIntegrationsRequest generates a "aws/request.Request" representing the client's request for the DescribeIntegrations operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeIntegrations for more information on using the DescribeIntegrations API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeIntegrationsRequest method.
req, resp := client.DescribeIntegrationsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeIntegrations

func (*RDS) DescribeIntegrationsWithContext

func (c *RDS) DescribeIntegrationsWithContext(ctx aws.Context, input *DescribeIntegrationsInput, opts ...request.Option) (*DescribeIntegrationsOutput, error)

DescribeIntegrationsWithContext is the same as DescribeIntegrations with the addition of the ability to pass a context and additional request options.

See DescribeIntegrations for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeOptionGroupOptions

func (c *RDS) DescribeOptionGroupOptions(input *DescribeOptionGroupOptionsInput) (*DescribeOptionGroupOptionsOutput, error)

DescribeOptionGroupOptions API operation for Amazon Relational Database Service.

Describes all available options for the specified engine.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeOptionGroupOptions for usage and error information. See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeOptionGroupOptions

Example (Shared00)

To describe all available options The following example lists the options for an RDS for MySQL version 8.0 DB instance.

Code:

svc := rds.New(session.New())
input := &rds.DescribeOptionGroupOptionsInput{
    EngineName:         aws.String("mysql"),
    MajorEngineVersion: aws.String("8.0"),
}

result, err := svc.DescribeOptionGroupOptions(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeOptionGroupOptionsPages

func (c *RDS) DescribeOptionGroupOptionsPages(input *DescribeOptionGroupOptionsInput, fn func(*DescribeOptionGroupOptionsOutput, bool) bool) error

DescribeOptionGroupOptionsPages iterates over the pages of a DescribeOptionGroupOptions operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeOptionGroupOptions method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeOptionGroupOptions operation.
pageNum := 0
err := client.DescribeOptionGroupOptionsPages(params,
    func(page *rds.DescribeOptionGroupOptionsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeOptionGroupOptionsPagesWithContext

func (c *RDS) DescribeOptionGroupOptionsPagesWithContext(ctx aws.Context, input *DescribeOptionGroupOptionsInput, fn func(*DescribeOptionGroupOptionsOutput, bool) bool, opts ...request.Option) error

DescribeOptionGroupOptionsPagesWithContext same as DescribeOptionGroupOptionsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeOptionGroupOptionsRequest

func (c *RDS) DescribeOptionGroupOptionsRequest(input *DescribeOptionGroupOptionsInput) (req *request.Request, output *DescribeOptionGroupOptionsOutput)

DescribeOptionGroupOptionsRequest generates a "aws/request.Request" representing the client's request for the DescribeOptionGroupOptions operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeOptionGroupOptions for more information on using the DescribeOptionGroupOptions API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeOptionGroupOptionsRequest method.
req, resp := client.DescribeOptionGroupOptionsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeOptionGroupOptions

func (*RDS) DescribeOptionGroupOptionsWithContext

func (c *RDS) DescribeOptionGroupOptionsWithContext(ctx aws.Context, input *DescribeOptionGroupOptionsInput, opts ...request.Option) (*DescribeOptionGroupOptionsOutput, error)

DescribeOptionGroupOptionsWithContext is the same as DescribeOptionGroupOptions with the addition of the ability to pass a context and additional request options.

See DescribeOptionGroupOptions for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeOptionGroups

func (c *RDS) DescribeOptionGroups(input *DescribeOptionGroupsInput) (*DescribeOptionGroupsOutput, error)

DescribeOptionGroups API operation for Amazon Relational Database Service.

Describes the available option groups.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeOptionGroups for usage and error information.

Returned Error Codes:

  • ErrCodeOptionGroupNotFoundFault "OptionGroupNotFoundFault" The specified option group could not be found.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeOptionGroups

Example (Shared00)

To describe the available option groups The following example lists the options groups for an Oracle Database 19c instance.

Code:

svc := rds.New(session.New())
input := &rds.DescribeOptionGroupsInput{
    EngineName:         aws.String("oracle-ee"),
    MajorEngineVersion: aws.String("19"),
}

result, err := svc.DescribeOptionGroups(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeOptionGroupNotFoundFault:
            fmt.Println(rds.ErrCodeOptionGroupNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeOptionGroupsPages

func (c *RDS) DescribeOptionGroupsPages(input *DescribeOptionGroupsInput, fn func(*DescribeOptionGroupsOutput, bool) bool) error

DescribeOptionGroupsPages iterates over the pages of a DescribeOptionGroups operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeOptionGroups method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeOptionGroups operation.
pageNum := 0
err := client.DescribeOptionGroupsPages(params,
    func(page *rds.DescribeOptionGroupsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeOptionGroupsPagesWithContext

func (c *RDS) DescribeOptionGroupsPagesWithContext(ctx aws.Context, input *DescribeOptionGroupsInput, fn func(*DescribeOptionGroupsOutput, bool) bool, opts ...request.Option) error

DescribeOptionGroupsPagesWithContext same as DescribeOptionGroupsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeOptionGroupsRequest

func (c *RDS) DescribeOptionGroupsRequest(input *DescribeOptionGroupsInput) (req *request.Request, output *DescribeOptionGroupsOutput)

DescribeOptionGroupsRequest generates a "aws/request.Request" representing the client's request for the DescribeOptionGroups operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeOptionGroups for more information on using the DescribeOptionGroups API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeOptionGroupsRequest method.
req, resp := client.DescribeOptionGroupsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeOptionGroups

func (*RDS) DescribeOptionGroupsWithContext

func (c *RDS) DescribeOptionGroupsWithContext(ctx aws.Context, input *DescribeOptionGroupsInput, opts ...request.Option) (*DescribeOptionGroupsOutput, error)

DescribeOptionGroupsWithContext is the same as DescribeOptionGroups with the addition of the ability to pass a context and additional request options.

See DescribeOptionGroups for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeOrderableDBInstanceOptions

func (c *RDS) DescribeOrderableDBInstanceOptions(input *DescribeOrderableDBInstanceOptionsInput) (*DescribeOrderableDBInstanceOptionsOutput, error)

DescribeOrderableDBInstanceOptions API operation for Amazon Relational Database Service.

Describes the orderable DB instance options for a specified DB engine.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeOrderableDBInstanceOptions for usage and error information. See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeOrderableDBInstanceOptions

Example (Shared00)

To describe orderable DB instance options The following example retrieves details about the orderable options for a DB instances running the MySQL DB engine.

Code:

svc := rds.New(session.New())
input := &rds.DescribeOrderableDBInstanceOptionsInput{
    Engine: aws.String("mysql"),
}

result, err := svc.DescribeOrderableDBInstanceOptions(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeOrderableDBInstanceOptionsPages

func (c *RDS) DescribeOrderableDBInstanceOptionsPages(input *DescribeOrderableDBInstanceOptionsInput, fn func(*DescribeOrderableDBInstanceOptionsOutput, bool) bool) error

DescribeOrderableDBInstanceOptionsPages iterates over the pages of a DescribeOrderableDBInstanceOptions operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeOrderableDBInstanceOptions method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeOrderableDBInstanceOptions operation.
pageNum := 0
err := client.DescribeOrderableDBInstanceOptionsPages(params,
    func(page *rds.DescribeOrderableDBInstanceOptionsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeOrderableDBInstanceOptionsPagesWithContext

func (c *RDS) DescribeOrderableDBInstanceOptionsPagesWithContext(ctx aws.Context, input *DescribeOrderableDBInstanceOptionsInput, fn func(*DescribeOrderableDBInstanceOptionsOutput, bool) bool, opts ...request.Option) error

DescribeOrderableDBInstanceOptionsPagesWithContext same as DescribeOrderableDBInstanceOptionsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeOrderableDBInstanceOptionsRequest

func (c *RDS) DescribeOrderableDBInstanceOptionsRequest(input *DescribeOrderableDBInstanceOptionsInput) (req *request.Request, output *DescribeOrderableDBInstanceOptionsOutput)

DescribeOrderableDBInstanceOptionsRequest generates a "aws/request.Request" representing the client's request for the DescribeOrderableDBInstanceOptions operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeOrderableDBInstanceOptions for more information on using the DescribeOrderableDBInstanceOptions API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeOrderableDBInstanceOptionsRequest method.
req, resp := client.DescribeOrderableDBInstanceOptionsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeOrderableDBInstanceOptions

func (*RDS) DescribeOrderableDBInstanceOptionsWithContext

func (c *RDS) DescribeOrderableDBInstanceOptionsWithContext(ctx aws.Context, input *DescribeOrderableDBInstanceOptionsInput, opts ...request.Option) (*DescribeOrderableDBInstanceOptionsOutput, error)

DescribeOrderableDBInstanceOptionsWithContext is the same as DescribeOrderableDBInstanceOptions with the addition of the ability to pass a context and additional request options.

See DescribeOrderableDBInstanceOptions for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribePendingMaintenanceActions

func (c *RDS) DescribePendingMaintenanceActions(input *DescribePendingMaintenanceActionsInput) (*DescribePendingMaintenanceActionsOutput, error)

DescribePendingMaintenanceActions API operation for Amazon Relational Database Service.

Returns a list of resources (for example, DB instances) that have at least one pending maintenance action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribePendingMaintenanceActions for usage and error information.

Returned Error Codes:

  • ErrCodeResourceNotFoundFault "ResourceNotFoundFault" The specified resource ID was not found.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribePendingMaintenanceActions

Example (Shared00)

To list resources with at least one pending maintenance action The following example lists the pending maintenace action for a DB instance.

Code:

svc := rds.New(session.New())
input := &rds.DescribePendingMaintenanceActionsInput{}

result, err := svc.DescribePendingMaintenanceActions(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeResourceNotFoundFault:
            fmt.Println(rds.ErrCodeResourceNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribePendingMaintenanceActionsPages

func (c *RDS) DescribePendingMaintenanceActionsPages(input *DescribePendingMaintenanceActionsInput, fn func(*DescribePendingMaintenanceActionsOutput, bool) bool) error

DescribePendingMaintenanceActionsPages iterates over the pages of a DescribePendingMaintenanceActions operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribePendingMaintenanceActions method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribePendingMaintenanceActions operation.
pageNum := 0
err := client.DescribePendingMaintenanceActionsPages(params,
    func(page *rds.DescribePendingMaintenanceActionsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribePendingMaintenanceActionsPagesWithContext

func (c *RDS) DescribePendingMaintenanceActionsPagesWithContext(ctx aws.Context, input *DescribePendingMaintenanceActionsInput, fn func(*DescribePendingMaintenanceActionsOutput, bool) bool, opts ...request.Option) error

DescribePendingMaintenanceActionsPagesWithContext same as DescribePendingMaintenanceActionsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribePendingMaintenanceActionsRequest

func (c *RDS) DescribePendingMaintenanceActionsRequest(input *DescribePendingMaintenanceActionsInput) (req *request.Request, output *DescribePendingMaintenanceActionsOutput)

DescribePendingMaintenanceActionsRequest generates a "aws/request.Request" representing the client's request for the DescribePendingMaintenanceActions operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribePendingMaintenanceActions for more information on using the DescribePendingMaintenanceActions API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribePendingMaintenanceActionsRequest method.
req, resp := client.DescribePendingMaintenanceActionsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribePendingMaintenanceActions

func (*RDS) DescribePendingMaintenanceActionsWithContext

func (c *RDS) DescribePendingMaintenanceActionsWithContext(ctx aws.Context, input *DescribePendingMaintenanceActionsInput, opts ...request.Option) (*DescribePendingMaintenanceActionsOutput, error)

DescribePendingMaintenanceActionsWithContext is the same as DescribePendingMaintenanceActions with the addition of the ability to pass a context and additional request options.

See DescribePendingMaintenanceActions for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeReservedDBInstances

func (c *RDS) DescribeReservedDBInstances(input *DescribeReservedDBInstancesInput) (*DescribeReservedDBInstancesOutput, error)

DescribeReservedDBInstances API operation for Amazon Relational Database Service.

Returns information about reserved DB instances for this account, or about a specified reserved DB instance.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeReservedDBInstances for usage and error information.

Returned Error Codes:

  • ErrCodeReservedDBInstanceNotFoundFault "ReservedDBInstanceNotFound" The specified reserved DB Instance not found.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeReservedDBInstances

Example (Shared00)

To describe reserved DB instances The following example retrieves details about any reserved DB instances in the current AWS account.

Code:

svc := rds.New(session.New())
input := &rds.DescribeReservedDBInstancesInput{}

result, err := svc.DescribeReservedDBInstances(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeReservedDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeReservedDBInstanceNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeReservedDBInstancesOfferings

func (c *RDS) DescribeReservedDBInstancesOfferings(input *DescribeReservedDBInstancesOfferingsInput) (*DescribeReservedDBInstancesOfferingsOutput, error)

DescribeReservedDBInstancesOfferings API operation for Amazon Relational Database Service.

Lists available reserved DB instance offerings.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeReservedDBInstancesOfferings for usage and error information.

Returned Error Codes:

  • ErrCodeReservedDBInstancesOfferingNotFoundFault "ReservedDBInstancesOfferingNotFound" Specified offering does not exist.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeReservedDBInstancesOfferings

Example (Shared00)

To describe reserved DB instance offerings The following example retrieves details about reserved DB instance options for RDS for Oracle.

Code:

svc := rds.New(session.New())
input := &rds.DescribeReservedDBInstancesOfferingsInput{
    ProductDescription: aws.String("oracle"),
}

result, err := svc.DescribeReservedDBInstancesOfferings(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeReservedDBInstancesOfferingNotFoundFault:
            fmt.Println(rds.ErrCodeReservedDBInstancesOfferingNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeReservedDBInstancesOfferingsPages

func (c *RDS) DescribeReservedDBInstancesOfferingsPages(input *DescribeReservedDBInstancesOfferingsInput, fn func(*DescribeReservedDBInstancesOfferingsOutput, bool) bool) error

DescribeReservedDBInstancesOfferingsPages iterates over the pages of a DescribeReservedDBInstancesOfferings operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeReservedDBInstancesOfferings method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeReservedDBInstancesOfferings operation.
pageNum := 0
err := client.DescribeReservedDBInstancesOfferingsPages(params,
    func(page *rds.DescribeReservedDBInstancesOfferingsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeReservedDBInstancesOfferingsPagesWithContext

func (c *RDS) DescribeReservedDBInstancesOfferingsPagesWithContext(ctx aws.Context, input *DescribeReservedDBInstancesOfferingsInput, fn func(*DescribeReservedDBInstancesOfferingsOutput, bool) bool, opts ...request.Option) error

DescribeReservedDBInstancesOfferingsPagesWithContext same as DescribeReservedDBInstancesOfferingsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeReservedDBInstancesOfferingsRequest

func (c *RDS) DescribeReservedDBInstancesOfferingsRequest(input *DescribeReservedDBInstancesOfferingsInput) (req *request.Request, output *DescribeReservedDBInstancesOfferingsOutput)

DescribeReservedDBInstancesOfferingsRequest generates a "aws/request.Request" representing the client's request for the DescribeReservedDBInstancesOfferings operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeReservedDBInstancesOfferings for more information on using the DescribeReservedDBInstancesOfferings API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeReservedDBInstancesOfferingsRequest method.
req, resp := client.DescribeReservedDBInstancesOfferingsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeReservedDBInstancesOfferings

func (*RDS) DescribeReservedDBInstancesOfferingsWithContext

func (c *RDS) DescribeReservedDBInstancesOfferingsWithContext(ctx aws.Context, input *DescribeReservedDBInstancesOfferingsInput, opts ...request.Option) (*DescribeReservedDBInstancesOfferingsOutput, error)

DescribeReservedDBInstancesOfferingsWithContext is the same as DescribeReservedDBInstancesOfferings with the addition of the ability to pass a context and additional request options.

See DescribeReservedDBInstancesOfferings for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeReservedDBInstancesPages

func (c *RDS) DescribeReservedDBInstancesPages(input *DescribeReservedDBInstancesInput, fn func(*DescribeReservedDBInstancesOutput, bool) bool) error

DescribeReservedDBInstancesPages iterates over the pages of a DescribeReservedDBInstances operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeReservedDBInstances method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeReservedDBInstances operation.
pageNum := 0
err := client.DescribeReservedDBInstancesPages(params,
    func(page *rds.DescribeReservedDBInstancesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeReservedDBInstancesPagesWithContext

func (c *RDS) DescribeReservedDBInstancesPagesWithContext(ctx aws.Context, input *DescribeReservedDBInstancesInput, fn func(*DescribeReservedDBInstancesOutput, bool) bool, opts ...request.Option) error

DescribeReservedDBInstancesPagesWithContext same as DescribeReservedDBInstancesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeReservedDBInstancesRequest

func (c *RDS) DescribeReservedDBInstancesRequest(input *DescribeReservedDBInstancesInput) (req *request.Request, output *DescribeReservedDBInstancesOutput)

DescribeReservedDBInstancesRequest generates a "aws/request.Request" representing the client's request for the DescribeReservedDBInstances operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeReservedDBInstances for more information on using the DescribeReservedDBInstances API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeReservedDBInstancesRequest method.
req, resp := client.DescribeReservedDBInstancesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeReservedDBInstances

func (*RDS) DescribeReservedDBInstancesWithContext

func (c *RDS) DescribeReservedDBInstancesWithContext(ctx aws.Context, input *DescribeReservedDBInstancesInput, opts ...request.Option) (*DescribeReservedDBInstancesOutput, error)

DescribeReservedDBInstancesWithContext is the same as DescribeReservedDBInstances with the addition of the ability to pass a context and additional request options.

See DescribeReservedDBInstances for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeSourceRegions

func (c *RDS) DescribeSourceRegions(input *DescribeSourceRegionsInput) (*DescribeSourceRegionsOutput, error)

DescribeSourceRegions API operation for Amazon Relational Database Service.

Returns a list of the source Amazon Web Services Regions where the current Amazon Web Services Region can create a read replica, copy a DB snapshot from, or replicate automated backups from.

Use this operation to determine whether cross-Region features are supported between other Regions and your current Region. This operation supports pagination.

To return information about the Regions that are enabled for your account, or all Regions, use the EC2 operation DescribeRegions. For more information, see DescribeRegions (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeRegions.html) in the Amazon EC2 API Reference.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeSourceRegions for usage and error information. See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeSourceRegions

Example (Shared00)

To describe source Regions The following example retrieves details about all source AWS Regions where the current AWS Region can create a read replica, copy a DB snapshot from, or replicate automated backups from. It also shows that automated backups can be replicated only from US West (Oregon) to the destination AWS Region, US East (N. Virginia).

Code:

svc := rds.New(session.New())
input := &rds.DescribeSourceRegionsInput{
    RegionName: aws.String("us-east-1"),
}

result, err := svc.DescribeSourceRegions(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeSourceRegionsPages

func (c *RDS) DescribeSourceRegionsPages(input *DescribeSourceRegionsInput, fn func(*DescribeSourceRegionsOutput, bool) bool) error

DescribeSourceRegionsPages iterates over the pages of a DescribeSourceRegions operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeSourceRegions method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeSourceRegions operation.
pageNum := 0
err := client.DescribeSourceRegionsPages(params,
    func(page *rds.DescribeSourceRegionsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeSourceRegionsPagesWithContext

func (c *RDS) DescribeSourceRegionsPagesWithContext(ctx aws.Context, input *DescribeSourceRegionsInput, fn func(*DescribeSourceRegionsOutput, bool) bool, opts ...request.Option) error

DescribeSourceRegionsPagesWithContext same as DescribeSourceRegionsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeSourceRegionsRequest

func (c *RDS) DescribeSourceRegionsRequest(input *DescribeSourceRegionsInput) (req *request.Request, output *DescribeSourceRegionsOutput)

DescribeSourceRegionsRequest generates a "aws/request.Request" representing the client's request for the DescribeSourceRegions operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeSourceRegions for more information on using the DescribeSourceRegions API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeSourceRegionsRequest method.
req, resp := client.DescribeSourceRegionsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeSourceRegions

func (*RDS) DescribeSourceRegionsWithContext

func (c *RDS) DescribeSourceRegionsWithContext(ctx aws.Context, input *DescribeSourceRegionsInput, opts ...request.Option) (*DescribeSourceRegionsOutput, error)

DescribeSourceRegionsWithContext is the same as DescribeSourceRegions with the addition of the ability to pass a context and additional request options.

See DescribeSourceRegions for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeTenantDatabases

func (c *RDS) DescribeTenantDatabases(input *DescribeTenantDatabasesInput) (*DescribeTenantDatabasesOutput, error)

DescribeTenantDatabases API operation for Amazon Relational Database Service.

Describes the tenant databases in a DB instance that uses the multi-tenant configuration. Only RDS for Oracle CDB instances are supported.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeTenantDatabases for usage and error information.

Returned Error Codes:

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeTenantDatabases

func (*RDS) DescribeTenantDatabasesPages

func (c *RDS) DescribeTenantDatabasesPages(input *DescribeTenantDatabasesInput, fn func(*DescribeTenantDatabasesOutput, bool) bool) error

DescribeTenantDatabasesPages iterates over the pages of a DescribeTenantDatabases operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeTenantDatabases method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeTenantDatabases operation.
pageNum := 0
err := client.DescribeTenantDatabasesPages(params,
    func(page *rds.DescribeTenantDatabasesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DescribeTenantDatabasesPagesWithContext

func (c *RDS) DescribeTenantDatabasesPagesWithContext(ctx aws.Context, input *DescribeTenantDatabasesInput, fn func(*DescribeTenantDatabasesOutput, bool) bool, opts ...request.Option) error

DescribeTenantDatabasesPagesWithContext same as DescribeTenantDatabasesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeTenantDatabasesRequest

func (c *RDS) DescribeTenantDatabasesRequest(input *DescribeTenantDatabasesInput) (req *request.Request, output *DescribeTenantDatabasesOutput)

DescribeTenantDatabasesRequest generates a "aws/request.Request" representing the client's request for the DescribeTenantDatabases operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeTenantDatabases for more information on using the DescribeTenantDatabases API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeTenantDatabasesRequest method.
req, resp := client.DescribeTenantDatabasesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeTenantDatabases

func (*RDS) DescribeTenantDatabasesWithContext

func (c *RDS) DescribeTenantDatabasesWithContext(ctx aws.Context, input *DescribeTenantDatabasesInput, opts ...request.Option) (*DescribeTenantDatabasesOutput, error)

DescribeTenantDatabasesWithContext is the same as DescribeTenantDatabases with the addition of the ability to pass a context and additional request options.

See DescribeTenantDatabases for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DescribeValidDBInstanceModifications

func (c *RDS) DescribeValidDBInstanceModifications(input *DescribeValidDBInstanceModificationsInput) (*DescribeValidDBInstanceModificationsOutput, error)

DescribeValidDBInstanceModifications API operation for Amazon Relational Database Service.

You can call DescribeValidDBInstanceModifications to learn what modifications you can make to your DB instance. You can use this information when you call ModifyDBInstance.

This command doesn't apply to RDS Custom.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DescribeValidDBInstanceModifications for usage and error information.

Returned Error Codes:

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeValidDBInstanceModifications

Example (Shared00)

To describe valid modifications for a DB instance The following example retrieves details about the valid modifications for the specified DB instance.

Code:

svc := rds.New(session.New())
input := &rds.DescribeValidDBInstanceModificationsInput{
    DBInstanceIdentifier: aws.String("database-test1"),
}

result, err := svc.DescribeValidDBInstanceModifications(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBInstanceStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceStateFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DescribeValidDBInstanceModificationsRequest

func (c *RDS) DescribeValidDBInstanceModificationsRequest(input *DescribeValidDBInstanceModificationsInput) (req *request.Request, output *DescribeValidDBInstanceModificationsOutput)

DescribeValidDBInstanceModificationsRequest generates a "aws/request.Request" representing the client's request for the DescribeValidDBInstanceModifications operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeValidDBInstanceModifications for more information on using the DescribeValidDBInstanceModifications API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeValidDBInstanceModificationsRequest method.
req, resp := client.DescribeValidDBInstanceModificationsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeValidDBInstanceModifications

func (*RDS) DescribeValidDBInstanceModificationsWithContext

func (c *RDS) DescribeValidDBInstanceModificationsWithContext(ctx aws.Context, input *DescribeValidDBInstanceModificationsInput, opts ...request.Option) (*DescribeValidDBInstanceModificationsOutput, error)

DescribeValidDBInstanceModificationsWithContext is the same as DescribeValidDBInstanceModifications with the addition of the ability to pass a context and additional request options.

See DescribeValidDBInstanceModifications for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DisableHttpEndpoint

func (c *RDS) DisableHttpEndpoint(input *DisableHttpEndpointInput) (*DisableHttpEndpointOutput, error)

DisableHttpEndpoint API operation for Amazon Relational Database Service.

Disables the HTTP endpoint for the specified DB cluster. Disabling this endpoint disables RDS Data API.

For more information, see Using RDS Data API (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html) in the Amazon Aurora User Guide.

This operation applies only to Aurora PostgreSQL Serverless v2 and provisioned DB clusters. To disable the HTTP endpoint for Aurora Serverless v1 DB clusters, use the EnableHttpEndpoint parameter of the ModifyDBCluster operation.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DisableHttpEndpoint for usage and error information.

Returned Error Codes:

  • ErrCodeResourceNotFoundFault "ResourceNotFoundFault" The specified resource ID was not found.

  • ErrCodeInvalidResourceStateFault "InvalidResourceStateFault" The operation can't be performed because another operation is in progress.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DisableHttpEndpoint

func (*RDS) DisableHttpEndpointRequest

func (c *RDS) DisableHttpEndpointRequest(input *DisableHttpEndpointInput) (req *request.Request, output *DisableHttpEndpointOutput)

DisableHttpEndpointRequest generates a "aws/request.Request" representing the client's request for the DisableHttpEndpoint operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DisableHttpEndpoint for more information on using the DisableHttpEndpoint API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DisableHttpEndpointRequest method.
req, resp := client.DisableHttpEndpointRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DisableHttpEndpoint

func (*RDS) DisableHttpEndpointWithContext

func (c *RDS) DisableHttpEndpointWithContext(ctx aws.Context, input *DisableHttpEndpointInput, opts ...request.Option) (*DisableHttpEndpointOutput, error)

DisableHttpEndpointWithContext is the same as DisableHttpEndpoint with the addition of the ability to pass a context and additional request options.

See DisableHttpEndpoint for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DownloadDBLogFilePortion

func (c *RDS) DownloadDBLogFilePortion(input *DownloadDBLogFilePortionInput) (*DownloadDBLogFilePortionOutput, error)

DownloadDBLogFilePortion API operation for Amazon Relational Database Service.

Downloads all or a portion of the specified log file, up to 1 MB in size.

This command doesn't apply to RDS Custom.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation DownloadDBLogFilePortion for usage and error information.

Returned Error Codes:

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

  • ErrCodeDBLogFileNotFoundFault "DBLogFileNotFoundFault" LogFileName doesn't refer to an existing DB log file.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DownloadDBLogFilePortion

Example (Shared00)

To download a DB log file The following example downloads only the latest part of your log file.

Code:

svc := rds.New(session.New())
input := &rds.DownloadDBLogFilePortionInput{
    DBInstanceIdentifier: aws.String("test-instance"),
    LogFileName:          aws.String("log.txt"),
}

result, err := svc.DownloadDBLogFilePortion(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceNotFoundFault, aerr.Error())
        case rds.ErrCodeDBLogFileNotFoundFault:
            fmt.Println(rds.ErrCodeDBLogFileNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) DownloadDBLogFilePortionPages

func (c *RDS) DownloadDBLogFilePortionPages(input *DownloadDBLogFilePortionInput, fn func(*DownloadDBLogFilePortionOutput, bool) bool) error

DownloadDBLogFilePortionPages iterates over the pages of a DownloadDBLogFilePortion operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DownloadDBLogFilePortion method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DownloadDBLogFilePortion operation.
pageNum := 0
err := client.DownloadDBLogFilePortionPages(params,
    func(page *rds.DownloadDBLogFilePortionOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*RDS) DownloadDBLogFilePortionPagesWithContext

func (c *RDS) DownloadDBLogFilePortionPagesWithContext(ctx aws.Context, input *DownloadDBLogFilePortionInput, fn func(*DownloadDBLogFilePortionOutput, bool) bool, opts ...request.Option) error

DownloadDBLogFilePortionPagesWithContext same as DownloadDBLogFilePortionPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) DownloadDBLogFilePortionRequest

func (c *RDS) DownloadDBLogFilePortionRequest(input *DownloadDBLogFilePortionInput) (req *request.Request, output *DownloadDBLogFilePortionOutput)

DownloadDBLogFilePortionRequest generates a "aws/request.Request" representing the client's request for the DownloadDBLogFilePortion operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DownloadDBLogFilePortion for more information on using the DownloadDBLogFilePortion API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DownloadDBLogFilePortionRequest method.
req, resp := client.DownloadDBLogFilePortionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DownloadDBLogFilePortion

func (*RDS) DownloadDBLogFilePortionWithContext

func (c *RDS) DownloadDBLogFilePortionWithContext(ctx aws.Context, input *DownloadDBLogFilePortionInput, opts ...request.Option) (*DownloadDBLogFilePortionOutput, error)

DownloadDBLogFilePortionWithContext is the same as DownloadDBLogFilePortion with the addition of the ability to pass a context and additional request options.

See DownloadDBLogFilePortion for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) EnableHttpEndpoint

func (c *RDS) EnableHttpEndpoint(input *EnableHttpEndpointInput) (*EnableHttpEndpointOutput, error)

EnableHttpEndpoint API operation for Amazon Relational Database Service.

Enables the HTTP endpoint for the DB cluster. By default, the HTTP endpoint isn't enabled.

When enabled, this endpoint provides a connectionless web service API (RDS Data API) for running SQL queries on the Aurora DB cluster. You can also query your database from inside the RDS console with the RDS query editor.

For more information, see Using RDS Data API (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html) in the Amazon Aurora User Guide.

This operation applies only to Aurora PostgreSQL Serverless v2 and provisioned DB clusters. To enable the HTTP endpoint for Aurora Serverless v1 DB clusters, use the EnableHttpEndpoint parameter of the ModifyDBCluster operation.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation EnableHttpEndpoint for usage and error information.

Returned Error Codes:

  • ErrCodeResourceNotFoundFault "ResourceNotFoundFault" The specified resource ID was not found.

  • ErrCodeInvalidResourceStateFault "InvalidResourceStateFault" The operation can't be performed because another operation is in progress.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/EnableHttpEndpoint

func (*RDS) EnableHttpEndpointRequest

func (c *RDS) EnableHttpEndpointRequest(input *EnableHttpEndpointInput) (req *request.Request, output *EnableHttpEndpointOutput)

EnableHttpEndpointRequest generates a "aws/request.Request" representing the client's request for the EnableHttpEndpoint operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See EnableHttpEndpoint for more information on using the EnableHttpEndpoint API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the EnableHttpEndpointRequest method.
req, resp := client.EnableHttpEndpointRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/EnableHttpEndpoint

func (*RDS) EnableHttpEndpointWithContext

func (c *RDS) EnableHttpEndpointWithContext(ctx aws.Context, input *EnableHttpEndpointInput, opts ...request.Option) (*EnableHttpEndpointOutput, error)

EnableHttpEndpointWithContext is the same as EnableHttpEndpoint with the addition of the ability to pass a context and additional request options.

See EnableHttpEndpoint for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) FailoverDBCluster

func (c *RDS) FailoverDBCluster(input *FailoverDBClusterInput) (*FailoverDBClusterOutput, error)

FailoverDBCluster API operation for Amazon Relational Database Service.

Forces a failover for a DB cluster.

For an Aurora DB cluster, failover for a DB cluster promotes one of the Aurora Replicas (read-only instances) in the DB cluster to be the primary DB instance (the cluster writer).

For a Multi-AZ DB cluster, after RDS terminates the primary DB instance, the internal monitoring system detects that the primary DB instance is unhealthy and promotes a readable standby (read-only instances) in the DB cluster to be the primary DB instance (the cluster writer). Failover times are typically less than 35 seconds.

An Amazon Aurora DB cluster automatically fails over to an Aurora Replica, if one exists, when the primary DB instance fails. A Multi-AZ DB cluster automatically fails over to a readable standby DB instance when the primary DB instance fails.

To simulate a failure of a primary instance for testing, you can force a failover. Because each instance in a DB cluster has its own endpoint address, make sure to clean up and re-establish any existing connections that use those endpoint addresses when the failover is complete.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html) in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation FailoverDBCluster for usage and error information.

Returned Error Codes:

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster

Example (Shared00)

To perform a failover for a DB cluster This example performs a failover for the specified DB cluster to the specified DB instance.

Code:

svc := rds.New(session.New())
input := &rds.FailoverDBClusterInput{
    DBClusterIdentifier:        aws.String("myaurorainstance-cluster"),
    TargetDBInstanceIdentifier: aws.String("myaurorareplica"),
}

result, err := svc.FailoverDBCluster(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        case rds.ErrCodeInvalidDBInstanceStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceStateFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) FailoverDBClusterRequest

func (c *RDS) FailoverDBClusterRequest(input *FailoverDBClusterInput) (req *request.Request, output *FailoverDBClusterOutput)

FailoverDBClusterRequest generates a "aws/request.Request" representing the client's request for the FailoverDBCluster operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See FailoverDBCluster for more information on using the FailoverDBCluster API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the FailoverDBClusterRequest method.
req, resp := client.FailoverDBClusterRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster

func (*RDS) FailoverDBClusterWithContext

func (c *RDS) FailoverDBClusterWithContext(ctx aws.Context, input *FailoverDBClusterInput, opts ...request.Option) (*FailoverDBClusterOutput, error)

FailoverDBClusterWithContext is the same as FailoverDBCluster with the addition of the ability to pass a context and additional request options.

See FailoverDBCluster for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) FailoverGlobalCluster

func (c *RDS) FailoverGlobalCluster(input *FailoverGlobalClusterInput) (*FailoverGlobalClusterOutput, error)

FailoverGlobalCluster API operation for Amazon Relational Database Service.

Promotes the specified secondary DB cluster to be the primary DB cluster in the global database cluster to fail over or switch over a global database. Switchover operations were previously called "managed planned failovers."

Although this operation can be used either to fail over or to switch over a global database cluster, its intended use is for global database failover. To switch over a global database cluster, we recommend that you use the SwitchoverGlobalCluster operation instead.

How you use this operation depends on whether you are failing over or switching over your global database cluster:

  • Failing over - Specify the AllowDataLoss parameter and don't specify the Switchover parameter.

  • Switching over - Specify the Switchover parameter or omit it, but don't specify the AllowDataLoss parameter.

About failing over and switching over

While failing over and switching over a global database cluster both change the primary DB cluster, you use these operations for different reasons:

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation FailoverGlobalCluster for usage and error information.

Returned Error Codes:

  • ErrCodeGlobalClusterNotFoundFault "GlobalClusterNotFoundFault" The GlobalClusterIdentifier doesn't refer to an existing global database cluster.

  • ErrCodeInvalidGlobalClusterStateFault "InvalidGlobalClusterStateFault" The global cluster is in an invalid state and can't perform the requested operation.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverGlobalCluster

func (*RDS) FailoverGlobalClusterRequest

func (c *RDS) FailoverGlobalClusterRequest(input *FailoverGlobalClusterInput) (req *request.Request, output *FailoverGlobalClusterOutput)

FailoverGlobalClusterRequest generates a "aws/request.Request" representing the client's request for the FailoverGlobalCluster operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See FailoverGlobalCluster for more information on using the FailoverGlobalCluster API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the FailoverGlobalClusterRequest method.
req, resp := client.FailoverGlobalClusterRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverGlobalCluster

func (*RDS) FailoverGlobalClusterWithContext

func (c *RDS) FailoverGlobalClusterWithContext(ctx aws.Context, input *FailoverGlobalClusterInput, opts ...request.Option) (*FailoverGlobalClusterOutput, error)

FailoverGlobalClusterWithContext is the same as FailoverGlobalCluster with the addition of the ability to pass a context and additional request options.

See FailoverGlobalCluster for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) ListTagsForResource

func (c *RDS) ListTagsForResource(input *ListTagsForResourceInput) (*ListTagsForResourceOutput, error)

ListTagsForResource API operation for Amazon Relational Database Service.

Lists all tags on an Amazon RDS resource.

For an overview on tagging an Amazon RDS resource, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.Tagging.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation ListTagsForResource for usage and error information.

Returned Error Codes:

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

  • ErrCodeDBSnapshotNotFoundFault "DBSnapshotNotFound" DBSnapshotIdentifier doesn't refer to an existing DB snapshot.

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeDBProxyNotFoundFault "DBProxyNotFoundFault" The specified proxy name doesn't correspond to a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

  • ErrCodeDBProxyTargetGroupNotFoundFault "DBProxyTargetGroupNotFoundFault" The specified target group isn't available for a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

  • ErrCodeBlueGreenDeploymentNotFoundFault "BlueGreenDeploymentNotFoundFault" BlueGreenDeploymentIdentifier doesn't refer to an existing blue/green deployment.

  • ErrCodeIntegrationNotFoundFault "IntegrationNotFoundFault" The specified integration could not be found.

  • ErrCodeTenantDatabaseNotFoundFault "TenantDatabaseNotFound" The specified tenant database wasn't found in the DB instance.

  • ErrCodeDBSnapshotTenantDatabaseNotFoundFault "DBSnapshotTenantDatabaseNotFoundFault" The specified snapshot tenant database wasn't found.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ListTagsForResource

Example (Shared00)

To list tags on an Amazon RDS resource The following example lists all tags on a DB instance.

Code:

svc := rds.New(session.New())
input := &rds.ListTagsForResourceInput{
    ResourceName: aws.String("arn:aws:rds:us-east-1:123456789012:db:orcl1"),
}

result, err := svc.ListTagsForResource(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceNotFoundFault, aerr.Error())
        case rds.ErrCodeDBSnapshotNotFoundFault:
            fmt.Println(rds.ErrCodeDBSnapshotNotFoundFault, aerr.Error())
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeDBProxyNotFoundFault:
            fmt.Println(rds.ErrCodeDBProxyNotFoundFault, aerr.Error())
        case rds.ErrCodeDBProxyTargetGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBProxyTargetGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeBlueGreenDeploymentNotFoundFault:
            fmt.Println(rds.ErrCodeBlueGreenDeploymentNotFoundFault, aerr.Error())
        case rds.ErrCodeIntegrationNotFoundFault:
            fmt.Println(rds.ErrCodeIntegrationNotFoundFault, aerr.Error())
        case rds.ErrCodeTenantDatabaseNotFoundFault:
            fmt.Println(rds.ErrCodeTenantDatabaseNotFoundFault, aerr.Error())
        case rds.ErrCodeDBSnapshotTenantDatabaseNotFoundFault:
            fmt.Println(rds.ErrCodeDBSnapshotTenantDatabaseNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) ListTagsForResourceRequest

func (c *RDS) ListTagsForResourceRequest(input *ListTagsForResourceInput) (req *request.Request, output *ListTagsForResourceOutput)

ListTagsForResourceRequest generates a "aws/request.Request" representing the client's request for the ListTagsForResource operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ListTagsForResource for more information on using the ListTagsForResource API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ListTagsForResourceRequest method.
req, resp := client.ListTagsForResourceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ListTagsForResource

func (*RDS) ListTagsForResourceWithContext

func (c *RDS) ListTagsForResourceWithContext(ctx aws.Context, input *ListTagsForResourceInput, opts ...request.Option) (*ListTagsForResourceOutput, error)

ListTagsForResourceWithContext is the same as ListTagsForResource with the addition of the ability to pass a context and additional request options.

See ListTagsForResource for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) ModifyActivityStream

func (c *RDS) ModifyActivityStream(input *ModifyActivityStreamInput) (*ModifyActivityStreamOutput, error)

ModifyActivityStream API operation for Amazon Relational Database Service.

Changes the audit policy state of a database activity stream to either locked (default) or unlocked. A locked policy is read-only, whereas an unlocked policy is read/write. If your activity stream is started and locked, you can unlock it, customize your audit policy, and then lock your activity stream. Restarting the activity stream isn't required. For more information, see Modifying a database activity stream (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/DBActivityStreams.Modifying.html) in the Amazon RDS User Guide.

This operation is supported for RDS for Oracle and Microsoft SQL Server.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation ModifyActivityStream for usage and error information.

Returned Error Codes:

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

  • ErrCodeResourceNotFoundFault "ResourceNotFoundFault" The specified resource ID was not found.

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyActivityStream

func (*RDS) ModifyActivityStreamRequest

func (c *RDS) ModifyActivityStreamRequest(input *ModifyActivityStreamInput) (req *request.Request, output *ModifyActivityStreamOutput)

ModifyActivityStreamRequest generates a "aws/request.Request" representing the client's request for the ModifyActivityStream operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ModifyActivityStream for more information on using the ModifyActivityStream API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ModifyActivityStreamRequest method.
req, resp := client.ModifyActivityStreamRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyActivityStream

func (*RDS) ModifyActivityStreamWithContext

func (c *RDS) ModifyActivityStreamWithContext(ctx aws.Context, input *ModifyActivityStreamInput, opts ...request.Option) (*ModifyActivityStreamOutput, error)

ModifyActivityStreamWithContext is the same as ModifyActivityStream with the addition of the ability to pass a context and additional request options.

See ModifyActivityStream for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) ModifyCertificates

func (c *RDS) ModifyCertificates(input *ModifyCertificatesInput) (*ModifyCertificatesOutput, error)

ModifyCertificates API operation for Amazon Relational Database Service.

Override the system-default Secure Sockets Layer/Transport Layer Security (SSL/TLS) certificate for Amazon RDS for new DB instances, or remove the override.

By using this operation, you can specify an RDS-approved SSL/TLS certificate for new DB instances that is different from the default certificate provided by RDS. You can also use this operation to remove the override, so that new DB instances use the default certificate provided by RDS.

You might need to override the default certificate in the following situations:

  • You already migrated your applications to support the latest certificate authority (CA) certificate, but the new CA certificate is not yet the RDS default CA certificate for the specified Amazon Web Services Region.

  • RDS has already moved to a new default CA certificate for the specified Amazon Web Services Region, but you are still in the process of supporting the new CA certificate. In this case, you temporarily need additional time to finish your application changes.

For more information about rotating your SSL/TLS certificate for RDS DB engines, see Rotating Your SSL/TLS Certificate (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL-certificate-rotation.html) in the Amazon RDS User Guide.

For more information about rotating your SSL/TLS certificate for Aurora DB engines, see Rotating Your SSL/TLS Certificate (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL-certificate-rotation.html) in the Amazon Aurora User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation ModifyCertificates for usage and error information.

Returned Error Codes:

  • ErrCodeCertificateNotFoundFault "CertificateNotFound" CertificateIdentifier doesn't refer to an existing certificate.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCertificates

Example (Shared00)

To temporarily override the system-default SSL/TLS certificate for new DB instances The following example temporarily overrides the system-default SSL/TLS certificate for new DB instances.

Code:

svc := rds.New(session.New())
input := &rds.ModifyCertificatesInput{
    CertificateIdentifier: aws.String("rds-ca-2019"),
}

result, err := svc.ModifyCertificates(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeCertificateNotFoundFault:
            fmt.Println(rds.ErrCodeCertificateNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) ModifyCertificatesRequest

func (c *RDS) ModifyCertificatesRequest(input *ModifyCertificatesInput) (req *request.Request, output *ModifyCertificatesOutput)

ModifyCertificatesRequest generates a "aws/request.Request" representing the client's request for the ModifyCertificates operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ModifyCertificates for more information on using the ModifyCertificates API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ModifyCertificatesRequest method.
req, resp := client.ModifyCertificatesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCertificates

func (*RDS) ModifyCertificatesWithContext

func (c *RDS) ModifyCertificatesWithContext(ctx aws.Context, input *ModifyCertificatesInput, opts ...request.Option) (*ModifyCertificatesOutput, error)

ModifyCertificatesWithContext is the same as ModifyCertificates with the addition of the ability to pass a context and additional request options.

See ModifyCertificates for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) ModifyCurrentDBClusterCapacity

func (c *RDS) ModifyCurrentDBClusterCapacity(input *ModifyCurrentDBClusterCapacityInput) (*ModifyCurrentDBClusterCapacityOutput, error)

ModifyCurrentDBClusterCapacity API operation for Amazon Relational Database Service.

Set the capacity of an Aurora Serverless v1 DB cluster to a specific value.

Aurora Serverless v1 scales seamlessly based on the workload on the DB cluster. In some cases, the capacity might not scale fast enough to meet a sudden change in workload, such as a large number of new transactions. Call ModifyCurrentDBClusterCapacity to set the capacity explicitly.

After this call sets the DB cluster capacity, Aurora Serverless v1 can automatically scale the DB cluster based on the cooldown period for scaling up and the cooldown period for scaling down.

For more information about Aurora Serverless v1, see Using Amazon Aurora Serverless v1 (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html) in the Amazon Aurora User Guide.

If you call ModifyCurrentDBClusterCapacity with the default TimeoutAction, connections that prevent Aurora Serverless v1 from finding a scaling point might be dropped. For more information about scaling points, see Autoscaling for Aurora Serverless v1 (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.how-it-works.html#aurora-serverless.how-it-works.auto-scaling) in the Amazon Aurora User Guide.

This operation only applies to Aurora Serverless v1 DB clusters.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation ModifyCurrentDBClusterCapacity for usage and error information.

Returned Error Codes:

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeInvalidDBClusterCapacityFault "InvalidDBClusterCapacityFault" Capacity isn't a valid Aurora Serverless DB cluster capacity. Valid capacity values are 2, 4, 8, 16, 32, 64, 128, and 256.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCurrentDBClusterCapacity

Example (Shared00)

To scale the capacity of an Aurora Serverless DB cluster The following example scales the capacity of an Aurora Serverless DB cluster to 8.

Code:

svc := rds.New(session.New())
input := &rds.ModifyCurrentDBClusterCapacityInput{
    Capacity:            aws.Int64(8),
    DBClusterIdentifier: aws.String("mydbcluster"),
}

result, err := svc.ModifyCurrentDBClusterCapacity(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterCapacityFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterCapacityFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) ModifyCurrentDBClusterCapacityRequest

func (c *RDS) ModifyCurrentDBClusterCapacityRequest(input *ModifyCurrentDBClusterCapacityInput) (req *request.Request, output *ModifyCurrentDBClusterCapacityOutput)

ModifyCurrentDBClusterCapacityRequest generates a "aws/request.Request" representing the client's request for the ModifyCurrentDBClusterCapacity operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ModifyCurrentDBClusterCapacity for more information on using the ModifyCurrentDBClusterCapacity API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ModifyCurrentDBClusterCapacityRequest method.
req, resp := client.ModifyCurrentDBClusterCapacityRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCurrentDBClusterCapacity

func (*RDS) ModifyCurrentDBClusterCapacityWithContext

func (c *RDS) ModifyCurrentDBClusterCapacityWithContext(ctx aws.Context, input *ModifyCurrentDBClusterCapacityInput, opts ...request.Option) (*ModifyCurrentDBClusterCapacityOutput, error)

ModifyCurrentDBClusterCapacityWithContext is the same as ModifyCurrentDBClusterCapacity with the addition of the ability to pass a context and additional request options.

See ModifyCurrentDBClusterCapacity for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) ModifyCustomDBEngineVersion

func (c *RDS) ModifyCustomDBEngineVersion(input *ModifyCustomDBEngineVersionInput) (*ModifyCustomDBEngineVersionOutput, error)

ModifyCustomDBEngineVersion API operation for Amazon Relational Database Service.

Modifies the status of a custom engine version (CEV). You can find CEVs to modify by calling DescribeDBEngineVersions.

The MediaImport service that imports files from Amazon S3 to create CEVs isn't integrated with Amazon Web Services CloudTrail. If you turn on data logging for Amazon RDS in CloudTrail, calls to the ModifyCustomDbEngineVersion event aren't logged. However, you might see calls from the API gateway that accesses your Amazon S3 bucket. These calls originate from the MediaImport service for the ModifyCustomDbEngineVersion event.

For more information, see Modifying CEV status (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.modify) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation ModifyCustomDBEngineVersion for usage and error information.

Returned Error Codes:

  • ErrCodeCustomDBEngineVersionNotFoundFault "CustomDBEngineVersionNotFoundFault" The specified CEV was not found.

  • ErrCodeInvalidCustomDBEngineVersionStateFault "InvalidCustomDBEngineVersionStateFault" You can't delete the CEV.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCustomDBEngineVersion

func (*RDS) ModifyCustomDBEngineVersionRequest

func (c *RDS) ModifyCustomDBEngineVersionRequest(input *ModifyCustomDBEngineVersionInput) (req *request.Request, output *ModifyCustomDBEngineVersionOutput)

ModifyCustomDBEngineVersionRequest generates a "aws/request.Request" representing the client's request for the ModifyCustomDBEngineVersion operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ModifyCustomDBEngineVersion for more information on using the ModifyCustomDBEngineVersion API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ModifyCustomDBEngineVersionRequest method.
req, resp := client.ModifyCustomDBEngineVersionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCustomDBEngineVersion

func (*RDS) ModifyCustomDBEngineVersionWithContext

func (c *RDS) ModifyCustomDBEngineVersionWithContext(ctx aws.Context, input *ModifyCustomDBEngineVersionInput, opts ...request.Option) (*ModifyCustomDBEngineVersionOutput, error)

ModifyCustomDBEngineVersionWithContext is the same as ModifyCustomDBEngineVersion with the addition of the ability to pass a context and additional request options.

See ModifyCustomDBEngineVersion for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) ModifyDBCluster

func (c *RDS) ModifyDBCluster(input *ModifyDBClusterInput) (*ModifyDBClusterOutput, error)

ModifyDBCluster API operation for Amazon Relational Database Service.

Modifies the settings of an Amazon Aurora DB cluster or a Multi-AZ DB cluster. You can change one or more settings by specifying these parameters and the new values in the request.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html) in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation ModifyDBCluster for usage and error information.

Returned Error Codes:

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeStorageQuotaExceededFault "StorageQuotaExceeded" The request would result in the user exceeding the allowed amount of storage available across all DB instances.

  • ErrCodeDBSubnetGroupNotFoundFault "DBSubnetGroupNotFoundFault" DBSubnetGroupName doesn't refer to an existing DB subnet group.

  • ErrCodeInvalidVPCNetworkStateFault "InvalidVPCNetworkStateFault" The DB subnet group doesn't cover all Availability Zones after it's created because of users' change.

  • ErrCodeInvalidDBSubnetGroupStateFault "InvalidDBSubnetGroupStateFault" The DB subnet group cannot be deleted because it's in use.

  • ErrCodeInvalidSubnet "InvalidSubnet" The requested subnet is invalid, or multiple subnets were requested that are not all in a common VPC.

  • ErrCodeDBClusterParameterGroupNotFoundFault "DBClusterParameterGroupNotFound" DBClusterParameterGroupName doesn't refer to an existing DB cluster parameter group.

  • ErrCodeInvalidDBSecurityGroupStateFault "InvalidDBSecurityGroupState" The state of the DB security group doesn't allow deletion.

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

  • ErrCodeDBClusterAlreadyExistsFault "DBClusterAlreadyExistsFault" The user already has a DB cluster with the given identifier.

  • ErrCodeDBInstanceAlreadyExistsFault "DBInstanceAlreadyExists" The user already has a DB instance with the given identifier.

  • ErrCodeDomainNotFoundFault "DomainNotFoundFault" Domain doesn't refer to an existing Active Directory domain.

  • ErrCodeStorageTypeNotAvailableFault "StorageTypeNotAvailableFault" The aurora-iopt1 storage type isn't available, because you modified the DB cluster to use this storage type less than one month ago.

  • ErrCodeOptionGroupNotFoundFault "OptionGroupNotFoundFault" The specified option group could not be found.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster

Example (Shared00)

To modify a DB cluster The following example changes the master user password for the DB cluster named cluster-2 and sets the backup retention period to 14 days. The ApplyImmediately parameter causes the changes to be made immediately, instead of waiting until the next maintenance window.

Code:

svc := rds.New(session.New())
input := &rds.ModifyDBClusterInput{
    ApplyImmediately:      aws.Bool(true),
    BackupRetentionPeriod: aws.Int64(14),
    DBClusterIdentifier:   aws.String("cluster-2"),
    MasterUserPassword:    aws.String("newpassword99"),
}

result, err := svc.ModifyDBCluster(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        case rds.ErrCodeStorageQuotaExceededFault:
            fmt.Println(rds.ErrCodeStorageQuotaExceededFault, aerr.Error())
        case rds.ErrCodeDBSubnetGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBSubnetGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidVPCNetworkStateFault:
            fmt.Println(rds.ErrCodeInvalidVPCNetworkStateFault, aerr.Error())
        case rds.ErrCodeInvalidDBSubnetGroupStateFault:
            fmt.Println(rds.ErrCodeInvalidDBSubnetGroupStateFault, aerr.Error())
        case rds.ErrCodeInvalidSubnet:
            fmt.Println(rds.ErrCodeInvalidSubnet, aerr.Error())
        case rds.ErrCodeDBClusterParameterGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterParameterGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBSecurityGroupStateFault:
            fmt.Println(rds.ErrCodeInvalidDBSecurityGroupStateFault, aerr.Error())
        case rds.ErrCodeInvalidDBInstanceStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceStateFault, aerr.Error())
        case rds.ErrCodeDBClusterAlreadyExistsFault:
            fmt.Println(rds.ErrCodeDBClusterAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeDBInstanceAlreadyExistsFault:
            fmt.Println(rds.ErrCodeDBInstanceAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeDomainNotFoundFault:
            fmt.Println(rds.ErrCodeDomainNotFoundFault, aerr.Error())
        case rds.ErrCodeStorageTypeNotAvailableFault:
            fmt.Println(rds.ErrCodeStorageTypeNotAvailableFault, aerr.Error())
        case rds.ErrCodeOptionGroupNotFoundFault:
            fmt.Println(rds.ErrCodeOptionGroupNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) ModifyDBClusterEndpoint

func (c *RDS) ModifyDBClusterEndpoint(input *ModifyDBClusterEndpointInput) (*ModifyDBClusterEndpointOutput, error)

ModifyDBClusterEndpoint API operation for Amazon Relational Database Service.

Modifies the properties of an endpoint in an Amazon Aurora DB cluster.

This operation only applies to Aurora DB clusters.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation ModifyDBClusterEndpoint for usage and error information.

Returned Error Codes:

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeInvalidDBClusterEndpointStateFault "InvalidDBClusterEndpointStateFault" The requested operation can't be performed on the endpoint while the endpoint is in this state.

  • ErrCodeDBClusterEndpointNotFoundFault "DBClusterEndpointNotFoundFault" The specified custom endpoint doesn't exist.

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterEndpoint

Example (Shared00)

To modify a custom DB cluster endpoint The following example modifies the specified custom DB cluster endpoint.

Code:

svc := rds.New(session.New())
input := &rds.ModifyDBClusterEndpointInput{
    DBClusterEndpointIdentifier: aws.String("mycustomendpoint"),
    StaticMembers: []*string{
        aws.String("dbinstance1"),
        aws.String("dbinstance2"),
        aws.String("dbinstance3"),
    },
}

result, err := svc.ModifyDBClusterEndpoint(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterEndpointStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterEndpointStateFault, aerr.Error())
        case rds.ErrCodeDBClusterEndpointNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterEndpointNotFoundFault, aerr.Error())
        case rds.ErrCodeDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBInstanceStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceStateFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) ModifyDBClusterEndpointRequest

func (c *RDS) ModifyDBClusterEndpointRequest(input *ModifyDBClusterEndpointInput) (req *request.Request, output *ModifyDBClusterEndpointOutput)

ModifyDBClusterEndpointRequest generates a "aws/request.Request" representing the client's request for the ModifyDBClusterEndpoint operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ModifyDBClusterEndpoint for more information on using the ModifyDBClusterEndpoint API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ModifyDBClusterEndpointRequest method.
req, resp := client.ModifyDBClusterEndpointRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterEndpoint

func (*RDS) ModifyDBClusterEndpointWithContext

func (c *RDS) ModifyDBClusterEndpointWithContext(ctx aws.Context, input *ModifyDBClusterEndpointInput, opts ...request.Option) (*ModifyDBClusterEndpointOutput, error)

ModifyDBClusterEndpointWithContext is the same as ModifyDBClusterEndpoint with the addition of the ability to pass a context and additional request options.

See ModifyDBClusterEndpoint for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) ModifyDBClusterParameterGroup

func (c *RDS) ModifyDBClusterParameterGroup(input *ModifyDBClusterParameterGroupInput) (*DBClusterParameterGroupNameMessage, error)

ModifyDBClusterParameterGroup API operation for Amazon Relational Database Service.

Modifies the parameters of a DB cluster parameter group. To modify more than one parameter, submit a list of the following: ParameterName, ParameterValue, and ApplyMethod. A maximum of 20 parameters can be modified in a single request.

After you create a DB cluster parameter group, you should wait at least 5 minutes before creating your first DB cluster that uses that DB cluster parameter group as the default parameter group. This allows Amazon RDS to fully complete the create operation before the parameter group is used as the default for a new DB cluster. This is especially important for parameters that are critical when creating the default database for a DB cluster, such as the character set for the default database defined by the character_set_database parameter. You can use the Parameter Groups option of the Amazon RDS console (https://console.aws.amazon.com/rds/) or the DescribeDBClusterParameters operation to verify that your DB cluster parameter group has been created or modified.

If the modified DB cluster parameter group is used by an Aurora Serverless v1 cluster, Aurora applies the update immediately. The cluster restart might interrupt your workload. In that case, your application must reopen any connections and retry any transactions that were active when the parameter changes took effect.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html) in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation ModifyDBClusterParameterGroup for usage and error information.

Returned Error Codes:

  • ErrCodeDBParameterGroupNotFoundFault "DBParameterGroupNotFound" DBParameterGroupName doesn't refer to an existing DB parameter group.

  • ErrCodeInvalidDBParameterGroupStateFault "InvalidDBParameterGroupState" The DB parameter group is in use or is in an invalid state. If you are attempting to delete the parameter group, you can't delete it when the parameter group is in this state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterParameterGroup

Example (Shared00)

To modify parameters in a DB cluster parameter group The following example modifies the values of parameters in a DB cluster parameter group.

Code:

svc := rds.New(session.New())
input := &rds.ModifyDBClusterParameterGroupInput{
    DBClusterParameterGroupName: aws.String("mydbclusterpg"),
    Parameters: []*rds.Parameter{
        {
            ApplyMethod:    aws.String("immediate"),
            ParameterName:  aws.String("server_audit_logging"),
            ParameterValue: aws.String("1"),
        },
        {
            ApplyMethod:    aws.String("immediate"),
            ParameterName:  aws.String("server_audit_logs_upload"),
            ParameterValue: aws.String("1"),
        },
    },
}

result, err := svc.ModifyDBClusterParameterGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBParameterGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBParameterGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBParameterGroupStateFault:
            fmt.Println(rds.ErrCodeInvalidDBParameterGroupStateFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) ModifyDBClusterParameterGroupRequest

func (c *RDS) ModifyDBClusterParameterGroupRequest(input *ModifyDBClusterParameterGroupInput) (req *request.Request, output *DBClusterParameterGroupNameMessage)

ModifyDBClusterParameterGroupRequest generates a "aws/request.Request" representing the client's request for the ModifyDBClusterParameterGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ModifyDBClusterParameterGroup for more information on using the ModifyDBClusterParameterGroup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ModifyDBClusterParameterGroupRequest method.
req, resp := client.ModifyDBClusterParameterGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterParameterGroup

func (*RDS) ModifyDBClusterParameterGroupWithContext

func (c *RDS) ModifyDBClusterParameterGroupWithContext(ctx aws.Context, input *ModifyDBClusterParameterGroupInput, opts ...request.Option) (*DBClusterParameterGroupNameMessage, error)

ModifyDBClusterParameterGroupWithContext is the same as ModifyDBClusterParameterGroup with the addition of the ability to pass a context and additional request options.

See ModifyDBClusterParameterGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) ModifyDBClusterRequest

func (c *RDS) ModifyDBClusterRequest(input *ModifyDBClusterInput) (req *request.Request, output *ModifyDBClusterOutput)

ModifyDBClusterRequest generates a "aws/request.Request" representing the client's request for the ModifyDBCluster operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ModifyDBCluster for more information on using the ModifyDBCluster API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ModifyDBClusterRequest method.
req, resp := client.ModifyDBClusterRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster

func (*RDS) ModifyDBClusterSnapshotAttribute

func (c *RDS) ModifyDBClusterSnapshotAttribute(input *ModifyDBClusterSnapshotAttributeInput) (*ModifyDBClusterSnapshotAttributeOutput, error)

ModifyDBClusterSnapshotAttribute API operation for Amazon Relational Database Service.

Adds an attribute and values to, or removes an attribute and values from, a manual DB cluster snapshot.

To share a manual DB cluster snapshot with other Amazon Web Services accounts, specify restore as the AttributeName and use the ValuesToAdd parameter to add a list of IDs of the Amazon Web Services accounts that are authorized to restore the manual DB cluster snapshot. Use the value all to make the manual DB cluster snapshot public, which means that it can be copied or restored by all Amazon Web Services accounts.

Don't add the all value for any manual DB cluster snapshots that contain private information that you don't want available to all Amazon Web Services accounts.

If a manual DB cluster snapshot is encrypted, it can be shared, but only by specifying a list of authorized Amazon Web Services account IDs for the ValuesToAdd parameter. You can't use all as a value for that parameter in this case.

To view which Amazon Web Services accounts have access to copy or restore a manual DB cluster snapshot, or whether a manual DB cluster snapshot is public or private, use the DescribeDBClusterSnapshotAttributes API operation. The accounts are returned as values for the restore attribute.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation ModifyDBClusterSnapshotAttribute for usage and error information.

Returned Error Codes:

  • ErrCodeDBClusterSnapshotNotFoundFault "DBClusterSnapshotNotFoundFault" DBClusterSnapshotIdentifier doesn't refer to an existing DB cluster snapshot.

  • ErrCodeInvalidDBClusterSnapshotStateFault "InvalidDBClusterSnapshotStateFault" The supplied value isn't a valid DB cluster snapshot state.

  • ErrCodeSharedSnapshotQuotaExceededFault "SharedSnapshotQuotaExceeded" You have exceeded the maximum number of accounts that you can share a manual DB snapshot with.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterSnapshotAttribute

Example (Shared00)

To modify a DB cluster snapshot attribute The following example makes changes to the specified DB cluster snapshot attribute.

Code:

svc := rds.New(session.New())
input := &rds.ModifyDBClusterSnapshotAttributeInput{
    AttributeName:               aws.String("restore"),
    DBClusterSnapshotIdentifier: aws.String("myclustersnapshot"),
    ValuesToAdd: []*string{
        aws.String("123456789012"),
    },
}

result, err := svc.ModifyDBClusterSnapshotAttribute(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBClusterSnapshotNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterSnapshotNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterSnapshotStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterSnapshotStateFault, aerr.Error())
        case rds.ErrCodeSharedSnapshotQuotaExceededFault:
            fmt.Println(rds.ErrCodeSharedSnapshotQuotaExceededFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) ModifyDBClusterSnapshotAttributeRequest

func (c *RDS) ModifyDBClusterSnapshotAttributeRequest(input *ModifyDBClusterSnapshotAttributeInput) (req *request.Request, output *ModifyDBClusterSnapshotAttributeOutput)

ModifyDBClusterSnapshotAttributeRequest generates a "aws/request.Request" representing the client's request for the ModifyDBClusterSnapshotAttribute operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ModifyDBClusterSnapshotAttribute for more information on using the ModifyDBClusterSnapshotAttribute API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ModifyDBClusterSnapshotAttributeRequest method.
req, resp := client.ModifyDBClusterSnapshotAttributeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterSnapshotAttribute

func (*RDS) ModifyDBClusterSnapshotAttributeWithContext

func (c *RDS) ModifyDBClusterSnapshotAttributeWithContext(ctx aws.Context, input *ModifyDBClusterSnapshotAttributeInput, opts ...request.Option) (*ModifyDBClusterSnapshotAttributeOutput, error)

ModifyDBClusterSnapshotAttributeWithContext is the same as ModifyDBClusterSnapshotAttribute with the addition of the ability to pass a context and additional request options.

See ModifyDBClusterSnapshotAttribute for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) ModifyDBClusterWithContext

func (c *RDS) ModifyDBClusterWithContext(ctx aws.Context, input *ModifyDBClusterInput, opts ...request.Option) (*ModifyDBClusterOutput, error)

ModifyDBClusterWithContext is the same as ModifyDBCluster with the addition of the ability to pass a context and additional request options.

See ModifyDBCluster for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) ModifyDBInstance

func (c *RDS) ModifyDBInstance(input *ModifyDBInstanceInput) (*ModifyDBInstanceOutput, error)

ModifyDBInstance API operation for Amazon Relational Database Service.

Modifies settings for a DB instance. You can change one or more database configuration parameters by specifying these parameters and the new values in the request. To learn what modifications you can make to your DB instance, call DescribeValidDBInstanceModifications before you call ModifyDBInstance.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation ModifyDBInstance for usage and error information.

Returned Error Codes:

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

  • ErrCodeInvalidDBSecurityGroupStateFault "InvalidDBSecurityGroupState" The state of the DB security group doesn't allow deletion.

  • ErrCodeDBInstanceAlreadyExistsFault "DBInstanceAlreadyExists" The user already has a DB instance with the given identifier.

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

  • ErrCodeDBSecurityGroupNotFoundFault "DBSecurityGroupNotFound" DBSecurityGroupName doesn't refer to an existing DB security group.

  • ErrCodeDBParameterGroupNotFoundFault "DBParameterGroupNotFound" DBParameterGroupName doesn't refer to an existing DB parameter group.

  • ErrCodeInsufficientDBInstanceCapacityFault "InsufficientDBInstanceCapacity" The specified DB instance class isn't available in the specified Availability Zone.

  • ErrCodeStorageQuotaExceededFault "StorageQuotaExceeded" The request would result in the user exceeding the allowed amount of storage available across all DB instances.

  • ErrCodeInvalidVPCNetworkStateFault "InvalidVPCNetworkStateFault" The DB subnet group doesn't cover all Availability Zones after it's created because of users' change.

  • ErrCodeProvisionedIopsNotAvailableInAZFault "ProvisionedIopsNotAvailableInAZFault" Provisioned IOPS not available in the specified Availability Zone.

  • ErrCodeOptionGroupNotFoundFault "OptionGroupNotFoundFault" The specified option group could not be found.

  • ErrCodeDBUpgradeDependencyFailureFault "DBUpgradeDependencyFailure" The DB upgrade failed because a resource the DB depends on can't be modified.

  • ErrCodeStorageTypeNotSupportedFault "StorageTypeNotSupported" The specified StorageType can't be associated with the DB instance.

  • ErrCodeAuthorizationNotFoundFault "AuthorizationNotFound" The specified CIDR IP range or Amazon EC2 security group might not be authorized for the specified DB security group.

    Or, RDS might not be authorized to perform necessary actions using IAM on your behalf.

  • ErrCodeCertificateNotFoundFault "CertificateNotFound" CertificateIdentifier doesn't refer to an existing certificate.

  • ErrCodeDomainNotFoundFault "DomainNotFoundFault" Domain doesn't refer to an existing Active Directory domain.

  • ErrCodeBackupPolicyNotFoundFault "BackupPolicyNotFoundFault"

  • ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" An error occurred accessing an Amazon Web Services KMS key.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeNetworkTypeNotSupported "NetworkTypeNotSupported" The network type is invalid for the DB instance. Valid nework type values are IPV4 and DUAL.

  • ErrCodeTenantDatabaseQuotaExceededFault "TenantDatabaseQuotaExceeded" You attempted to create more tenant databases than are permitted in your Amazon Web Services account.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance

Example (Shared00)

To modify a DB instance The following example associates an option group and a parameter group with a compatible Microsoft SQL Server DB instance. The ApplyImmediately parameter causes the option and parameter groups to be associated immediately, instead of waiting until the next maintenance window.

Code:

svc := rds.New(session.New())
input := &rds.ModifyDBInstanceInput{
    ApplyImmediately:     aws.Bool(true),
    DBInstanceIdentifier: aws.String("database-2"),
    DBParameterGroupName: aws.String("test-sqlserver-se-2017"),
    OptionGroupName:      aws.String("test-se-2017"),
}

result, err := svc.ModifyDBInstance(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeInvalidDBInstanceStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceStateFault, aerr.Error())
        case rds.ErrCodeInvalidDBSecurityGroupStateFault:
            fmt.Println(rds.ErrCodeInvalidDBSecurityGroupStateFault, aerr.Error())
        case rds.ErrCodeDBInstanceAlreadyExistsFault:
            fmt.Println(rds.ErrCodeDBInstanceAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceNotFoundFault, aerr.Error())
        case rds.ErrCodeDBSecurityGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBSecurityGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeDBParameterGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBParameterGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeInsufficientDBInstanceCapacityFault:
            fmt.Println(rds.ErrCodeInsufficientDBInstanceCapacityFault, aerr.Error())
        case rds.ErrCodeStorageQuotaExceededFault:
            fmt.Println(rds.ErrCodeStorageQuotaExceededFault, aerr.Error())
        case rds.ErrCodeInvalidVPCNetworkStateFault:
            fmt.Println(rds.ErrCodeInvalidVPCNetworkStateFault, aerr.Error())
        case rds.ErrCodeProvisionedIopsNotAvailableInAZFault:
            fmt.Println(rds.ErrCodeProvisionedIopsNotAvailableInAZFault, aerr.Error())
        case rds.ErrCodeOptionGroupNotFoundFault:
            fmt.Println(rds.ErrCodeOptionGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeDBUpgradeDependencyFailureFault:
            fmt.Println(rds.ErrCodeDBUpgradeDependencyFailureFault, aerr.Error())
        case rds.ErrCodeStorageTypeNotSupportedFault:
            fmt.Println(rds.ErrCodeStorageTypeNotSupportedFault, aerr.Error())
        case rds.ErrCodeAuthorizationNotFoundFault:
            fmt.Println(rds.ErrCodeAuthorizationNotFoundFault, aerr.Error())
        case rds.ErrCodeCertificateNotFoundFault:
            fmt.Println(rds.ErrCodeCertificateNotFoundFault, aerr.Error())
        case rds.ErrCodeDomainNotFoundFault:
            fmt.Println(rds.ErrCodeDomainNotFoundFault, aerr.Error())
        case rds.ErrCodeBackupPolicyNotFoundFault:
            fmt.Println(rds.ErrCodeBackupPolicyNotFoundFault, aerr.Error())
        case rds.ErrCodeKMSKeyNotAccessibleFault:
            fmt.Println(rds.ErrCodeKMSKeyNotAccessibleFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        case rds.ErrCodeNetworkTypeNotSupported:
            fmt.Println(rds.ErrCodeNetworkTypeNotSupported, aerr.Error())
        case rds.ErrCodeTenantDatabaseQuotaExceededFault:
            fmt.Println(rds.ErrCodeTenantDatabaseQuotaExceededFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) ModifyDBInstanceRequest

func (c *RDS) ModifyDBInstanceRequest(input *ModifyDBInstanceInput) (req *request.Request, output *ModifyDBInstanceOutput)

ModifyDBInstanceRequest generates a "aws/request.Request" representing the client's request for the ModifyDBInstance operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ModifyDBInstance for more information on using the ModifyDBInstance API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ModifyDBInstanceRequest method.
req, resp := client.ModifyDBInstanceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance

func (*RDS) ModifyDBInstanceWithContext

func (c *RDS) ModifyDBInstanceWithContext(ctx aws.Context, input *ModifyDBInstanceInput, opts ...request.Option) (*ModifyDBInstanceOutput, error)

ModifyDBInstanceWithContext is the same as ModifyDBInstance with the addition of the ability to pass a context and additional request options.

See ModifyDBInstance for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) ModifyDBParameterGroup

func (c *RDS) ModifyDBParameterGroup(input *ModifyDBParameterGroupInput) (*DBParameterGroupNameMessage, error)

ModifyDBParameterGroup API operation for Amazon Relational Database Service.

Modifies the parameters of a DB parameter group. To modify more than one parameter, submit a list of the following: ParameterName, ParameterValue, and ApplyMethod. A maximum of 20 parameters can be modified in a single request.

After you modify a DB parameter group, you should wait at least 5 minutes before creating your first DB instance that uses that DB parameter group as the default parameter group. This allows Amazon RDS to fully complete the modify operation before the parameter group is used as the default for a new DB instance. This is especially important for parameters that are critical when creating the default database for a DB instance, such as the character set for the default database defined by the character_set_database parameter. You can use the Parameter Groups option of the Amazon RDS console (https://console.aws.amazon.com/rds/) or the DescribeDBParameters command to verify that your DB parameter group has been created or modified.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation ModifyDBParameterGroup for usage and error information.

Returned Error Codes:

  • ErrCodeDBParameterGroupNotFoundFault "DBParameterGroupNotFound" DBParameterGroupName doesn't refer to an existing DB parameter group.

  • ErrCodeInvalidDBParameterGroupStateFault "InvalidDBParameterGroupState" The DB parameter group is in use or is in an invalid state. If you are attempting to delete the parameter group, you can't delete it when the parameter group is in this state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBParameterGroup

Example (Shared00)

To modify a DB parameter group The following example changes the value of the clr enabled parameter in a DB parameter group. The value of the ApplyMethod parameter causes the DB parameter group to be modified immediately, instead of waiting until the next maintenance window.

Code:

svc := rds.New(session.New())
input := &rds.ModifyDBParameterGroupInput{
    DBParameterGroupName: aws.String("test-sqlserver-se-2017"),
    Parameters: []*rds.Parameter{
        {
            ApplyMethod:    aws.String("immediate"),
            ParameterName:  aws.String("clr enabled"),
            ParameterValue: aws.String("1"),
        },
    },
}

result, err := svc.ModifyDBParameterGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBParameterGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBParameterGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBParameterGroupStateFault:
            fmt.Println(rds.ErrCodeInvalidDBParameterGroupStateFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) ModifyDBParameterGroupRequest

func (c *RDS) ModifyDBParameterGroupRequest(input *ModifyDBParameterGroupInput) (req *request.Request, output *DBParameterGroupNameMessage)

ModifyDBParameterGroupRequest generates a "aws/request.Request" representing the client's request for the ModifyDBParameterGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ModifyDBParameterGroup for more information on using the ModifyDBParameterGroup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ModifyDBParameterGroupRequest method.
req, resp := client.ModifyDBParameterGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBParameterGroup

func (*RDS) ModifyDBParameterGroupWithContext

func (c *RDS) ModifyDBParameterGroupWithContext(ctx aws.Context, input *ModifyDBParameterGroupInput, opts ...request.Option) (*DBParameterGroupNameMessage, error)

ModifyDBParameterGroupWithContext is the same as ModifyDBParameterGroup with the addition of the ability to pass a context and additional request options.

See ModifyDBParameterGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) ModifyDBProxy

func (c *RDS) ModifyDBProxy(input *ModifyDBProxyInput) (*ModifyDBProxyOutput, error)

ModifyDBProxy API operation for Amazon Relational Database Service.

Changes the settings for an existing DB proxy.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation ModifyDBProxy for usage and error information.

Returned Error Codes:

  • ErrCodeDBProxyNotFoundFault "DBProxyNotFoundFault" The specified proxy name doesn't correspond to a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

  • ErrCodeDBProxyAlreadyExistsFault "DBProxyAlreadyExistsFault" The specified proxy name must be unique for all proxies owned by your Amazon Web Services account in the specified Amazon Web Services Region.

  • ErrCodeInvalidDBProxyStateFault "InvalidDBProxyStateFault" The requested operation can't be performed while the proxy is in this state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBProxy

func (*RDS) ModifyDBProxyEndpoint

func (c *RDS) ModifyDBProxyEndpoint(input *ModifyDBProxyEndpointInput) (*ModifyDBProxyEndpointOutput, error)

ModifyDBProxyEndpoint API operation for Amazon Relational Database Service.

Changes the settings for an existing DB proxy endpoint.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation ModifyDBProxyEndpoint for usage and error information.

Returned Error Codes:

  • ErrCodeDBProxyEndpointNotFoundFault "DBProxyEndpointNotFoundFault" The DB proxy endpoint doesn't exist.

  • ErrCodeDBProxyEndpointAlreadyExistsFault "DBProxyEndpointAlreadyExistsFault" The specified DB proxy endpoint name must be unique for all DB proxy endpoints owned by your Amazon Web Services account in the specified Amazon Web Services Region.

  • ErrCodeInvalidDBProxyEndpointStateFault "InvalidDBProxyEndpointStateFault" You can't perform this operation while the DB proxy endpoint is in a particular state.

  • ErrCodeInvalidDBProxyStateFault "InvalidDBProxyStateFault" The requested operation can't be performed while the proxy is in this state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBProxyEndpoint

func (*RDS) ModifyDBProxyEndpointRequest

func (c *RDS) ModifyDBProxyEndpointRequest(input *ModifyDBProxyEndpointInput) (req *request.Request, output *ModifyDBProxyEndpointOutput)

ModifyDBProxyEndpointRequest generates a "aws/request.Request" representing the client's request for the ModifyDBProxyEndpoint operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ModifyDBProxyEndpoint for more information on using the ModifyDBProxyEndpoint API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ModifyDBProxyEndpointRequest method.
req, resp := client.ModifyDBProxyEndpointRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBProxyEndpoint

func (*RDS) ModifyDBProxyEndpointWithContext

func (c *RDS) ModifyDBProxyEndpointWithContext(ctx aws.Context, input *ModifyDBProxyEndpointInput, opts ...request.Option) (*ModifyDBProxyEndpointOutput, error)

ModifyDBProxyEndpointWithContext is the same as ModifyDBProxyEndpoint with the addition of the ability to pass a context and additional request options.

See ModifyDBProxyEndpoint for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) ModifyDBProxyRequest

func (c *RDS) ModifyDBProxyRequest(input *ModifyDBProxyInput) (req *request.Request, output *ModifyDBProxyOutput)

ModifyDBProxyRequest generates a "aws/request.Request" representing the client's request for the ModifyDBProxy operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ModifyDBProxy for more information on using the ModifyDBProxy API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ModifyDBProxyRequest method.
req, resp := client.ModifyDBProxyRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBProxy

func (*RDS) ModifyDBProxyTargetGroup

func (c *RDS) ModifyDBProxyTargetGroup(input *ModifyDBProxyTargetGroupInput) (*ModifyDBProxyTargetGroupOutput, error)

ModifyDBProxyTargetGroup API operation for Amazon Relational Database Service.

Modifies the properties of a DBProxyTargetGroup.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation ModifyDBProxyTargetGroup for usage and error information.

Returned Error Codes:

  • ErrCodeDBProxyNotFoundFault "DBProxyNotFoundFault" The specified proxy name doesn't correspond to a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

  • ErrCodeDBProxyTargetGroupNotFoundFault "DBProxyTargetGroupNotFoundFault" The specified target group isn't available for a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

  • ErrCodeInvalidDBProxyStateFault "InvalidDBProxyStateFault" The requested operation can't be performed while the proxy is in this state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBProxyTargetGroup

func (*RDS) ModifyDBProxyTargetGroupRequest

func (c *RDS) ModifyDBProxyTargetGroupRequest(input *ModifyDBProxyTargetGroupInput) (req *request.Request, output *ModifyDBProxyTargetGroupOutput)

ModifyDBProxyTargetGroupRequest generates a "aws/request.Request" representing the client's request for the ModifyDBProxyTargetGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ModifyDBProxyTargetGroup for more information on using the ModifyDBProxyTargetGroup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ModifyDBProxyTargetGroupRequest method.
req, resp := client.ModifyDBProxyTargetGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBProxyTargetGroup

func (*RDS) ModifyDBProxyTargetGroupWithContext

func (c *RDS) ModifyDBProxyTargetGroupWithContext(ctx aws.Context, input *ModifyDBProxyTargetGroupInput, opts ...request.Option) (*ModifyDBProxyTargetGroupOutput, error)

ModifyDBProxyTargetGroupWithContext is the same as ModifyDBProxyTargetGroup with the addition of the ability to pass a context and additional request options.

See ModifyDBProxyTargetGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) ModifyDBProxyWithContext

func (c *RDS) ModifyDBProxyWithContext(ctx aws.Context, input *ModifyDBProxyInput, opts ...request.Option) (*ModifyDBProxyOutput, error)

ModifyDBProxyWithContext is the same as ModifyDBProxy with the addition of the ability to pass a context and additional request options.

See ModifyDBProxy for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) ModifyDBRecommendation

func (c *RDS) ModifyDBRecommendation(input *ModifyDBRecommendationInput) (*ModifyDBRecommendationOutput, error)

ModifyDBRecommendation API operation for Amazon Relational Database Service.

Updates the recommendation status and recommended action status for the specified recommendation.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation ModifyDBRecommendation for usage and error information. See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBRecommendation

func (*RDS) ModifyDBRecommendationRequest

func (c *RDS) ModifyDBRecommendationRequest(input *ModifyDBRecommendationInput) (req *request.Request, output *ModifyDBRecommendationOutput)

ModifyDBRecommendationRequest generates a "aws/request.Request" representing the client's request for the ModifyDBRecommendation operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ModifyDBRecommendation for more information on using the ModifyDBRecommendation API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ModifyDBRecommendationRequest method.
req, resp := client.ModifyDBRecommendationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBRecommendation

func (*RDS) ModifyDBRecommendationWithContext

func (c *RDS) ModifyDBRecommendationWithContext(ctx aws.Context, input *ModifyDBRecommendationInput, opts ...request.Option) (*ModifyDBRecommendationOutput, error)

ModifyDBRecommendationWithContext is the same as ModifyDBRecommendation with the addition of the ability to pass a context and additional request options.

See ModifyDBRecommendation for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) ModifyDBShardGroup

func (c *RDS) ModifyDBShardGroup(input *ModifyDBShardGroupInput) (*ModifyDBShardGroupOutput, error)

ModifyDBShardGroup API operation for Amazon Relational Database Service.

Modifies the settings of an Aurora Limitless Database DB shard group. You can change one or more settings by specifying these parameters and the new values in the request.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation ModifyDBShardGroup for usage and error information.

Returned Error Codes:

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeDBShardGroupAlreadyExistsFault "DBShardGroupAlreadyExists" The specified DB shard group name must be unique in your Amazon Web Services account in the specified Amazon Web Services Region.

  • ErrCodeDBShardGroupNotFoundFault "DBShardGroupNotFound" The specified DB shard group name wasn't found.

  • ErrCodeInvalidMaxAcuFault "InvalidMaxAcu" The maximum capacity of the DB shard group must be 48-7168 Aurora capacity units (ACUs).

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBShardGroup

func (*RDS) ModifyDBShardGroupRequest

func (c *RDS) ModifyDBShardGroupRequest(input *ModifyDBShardGroupInput) (req *request.Request, output *ModifyDBShardGroupOutput)

ModifyDBShardGroupRequest generates a "aws/request.Request" representing the client's request for the ModifyDBShardGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ModifyDBShardGroup for more information on using the ModifyDBShardGroup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ModifyDBShardGroupRequest method.
req, resp := client.ModifyDBShardGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBShardGroup

func (*RDS) ModifyDBShardGroupWithContext

func (c *RDS) ModifyDBShardGroupWithContext(ctx aws.Context, input *ModifyDBShardGroupInput, opts ...request.Option) (*ModifyDBShardGroupOutput, error)

ModifyDBShardGroupWithContext is the same as ModifyDBShardGroup with the addition of the ability to pass a context and additional request options.

See ModifyDBShardGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) ModifyDBSnapshot

func (c *RDS) ModifyDBSnapshot(input *ModifyDBSnapshotInput) (*ModifyDBSnapshotOutput, error)

ModifyDBSnapshot API operation for Amazon Relational Database Service.

Updates a manual DB snapshot with a new engine version. The snapshot can be encrypted or unencrypted, but not shared or public.

Amazon RDS supports upgrading DB snapshots for MySQL, PostgreSQL, and Oracle. This operation doesn't apply to RDS Custom or RDS for Db2.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation ModifyDBSnapshot for usage and error information.

Returned Error Codes:

  • ErrCodeDBSnapshotNotFoundFault "DBSnapshotNotFound" DBSnapshotIdentifier doesn't refer to an existing DB snapshot.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshot

Example (Shared00)

To modify a DB snapshot The following example upgrades a PostgeSQL 10.6 snapshot named db5-snapshot-upg-test to PostgreSQL 11.7. The new DB engine version is shown after the snapshot has finished upgrading and its status is available.

Code:

svc := rds.New(session.New())
input := &rds.ModifyDBSnapshotInput{
    DBSnapshotIdentifier: aws.String("db5-snapshot-upg-test"),
    EngineVersion:        aws.String("11.7"),
}

result, err := svc.ModifyDBSnapshot(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBSnapshotNotFoundFault:
            fmt.Println(rds.ErrCodeDBSnapshotNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) ModifyDBSnapshotAttribute

func (c *RDS) ModifyDBSnapshotAttribute(input *ModifyDBSnapshotAttributeInput) (*ModifyDBSnapshotAttributeOutput, error)

ModifyDBSnapshotAttribute API operation for Amazon Relational Database Service.

Adds an attribute and values to, or removes an attribute and values from, a manual DB snapshot.

To share a manual DB snapshot with other Amazon Web Services accounts, specify restore as the AttributeName and use the ValuesToAdd parameter to add a list of IDs of the Amazon Web Services accounts that are authorized to restore the manual DB snapshot. Uses the value all to make the manual DB snapshot public, which means it can be copied or restored by all Amazon Web Services accounts.

Don't add the all value for any manual DB snapshots that contain private information that you don't want available to all Amazon Web Services accounts.

If the manual DB snapshot is encrypted, it can be shared, but only by specifying a list of authorized Amazon Web Services account IDs for the ValuesToAdd parameter. You can't use all as a value for that parameter in this case.

To view which Amazon Web Services accounts have access to copy or restore a manual DB snapshot, or whether a manual DB snapshot public or private, use the DescribeDBSnapshotAttributes API operation. The accounts are returned as values for the restore attribute.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation ModifyDBSnapshotAttribute for usage and error information.

Returned Error Codes:

  • ErrCodeDBSnapshotNotFoundFault "DBSnapshotNotFound" DBSnapshotIdentifier doesn't refer to an existing DB snapshot.

  • ErrCodeInvalidDBSnapshotStateFault "InvalidDBSnapshotState" The state of the DB snapshot doesn't allow deletion.

  • ErrCodeSharedSnapshotQuotaExceededFault "SharedSnapshotQuotaExceeded" You have exceeded the maximum number of accounts that you can share a manual DB snapshot with.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshotAttribute

Example (Shared00)

To allow two AWS accounts to restore a DB snapshot The following example grants permission to two AWS accounts, with the identifiers 111122223333 and 444455556666, to restore the DB snapshot named mydbsnapshot.

Code:

svc := rds.New(session.New())
input := &rds.ModifyDBSnapshotAttributeInput{
    AttributeName:        aws.String("restore"),
    DBSnapshotIdentifier: aws.String("mydbsnapshot"),
    ValuesToAdd: []*string{
        aws.String("111122223333"),
        aws.String("444455556666"),
    },
}

result, err := svc.ModifyDBSnapshotAttribute(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBSnapshotNotFoundFault:
            fmt.Println(rds.ErrCodeDBSnapshotNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBSnapshotStateFault:
            fmt.Println(rds.ErrCodeInvalidDBSnapshotStateFault, aerr.Error())
        case rds.ErrCodeSharedSnapshotQuotaExceededFault:
            fmt.Println(rds.ErrCodeSharedSnapshotQuotaExceededFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To prevent an AWS account from restoring a DB snapshot The following example removes permission from the AWS account with the identifier 444455556666 to restore the DB snapshot named mydbsnapshot.

Code:

svc := rds.New(session.New())
input := &rds.ModifyDBSnapshotAttributeInput{
    AttributeName:        aws.String("restore"),
    DBSnapshotIdentifier: aws.String("mydbsnapshot"),
    ValuesToRemove: []*string{
        aws.String("444455556666"),
    },
}

result, err := svc.ModifyDBSnapshotAttribute(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBSnapshotNotFoundFault:
            fmt.Println(rds.ErrCodeDBSnapshotNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBSnapshotStateFault:
            fmt.Println(rds.ErrCodeInvalidDBSnapshotStateFault, aerr.Error())
        case rds.ErrCodeSharedSnapshotQuotaExceededFault:
            fmt.Println(rds.ErrCodeSharedSnapshotQuotaExceededFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) ModifyDBSnapshotAttributeRequest

func (c *RDS) ModifyDBSnapshotAttributeRequest(input *ModifyDBSnapshotAttributeInput) (req *request.Request, output *ModifyDBSnapshotAttributeOutput)

ModifyDBSnapshotAttributeRequest generates a "aws/request.Request" representing the client's request for the ModifyDBSnapshotAttribute operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ModifyDBSnapshotAttribute for more information on using the ModifyDBSnapshotAttribute API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ModifyDBSnapshotAttributeRequest method.
req, resp := client.ModifyDBSnapshotAttributeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshotAttribute

func (*RDS) ModifyDBSnapshotAttributeWithContext

func (c *RDS) ModifyDBSnapshotAttributeWithContext(ctx aws.Context, input *ModifyDBSnapshotAttributeInput, opts ...request.Option) (*ModifyDBSnapshotAttributeOutput, error)

ModifyDBSnapshotAttributeWithContext is the same as ModifyDBSnapshotAttribute with the addition of the ability to pass a context and additional request options.

See ModifyDBSnapshotAttribute for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) ModifyDBSnapshotRequest

func (c *RDS) ModifyDBSnapshotRequest(input *ModifyDBSnapshotInput) (req *request.Request, output *ModifyDBSnapshotOutput)

ModifyDBSnapshotRequest generates a "aws/request.Request" representing the client's request for the ModifyDBSnapshot operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ModifyDBSnapshot for more information on using the ModifyDBSnapshot API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ModifyDBSnapshotRequest method.
req, resp := client.ModifyDBSnapshotRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshot

func (*RDS) ModifyDBSnapshotWithContext

func (c *RDS) ModifyDBSnapshotWithContext(ctx aws.Context, input *ModifyDBSnapshotInput, opts ...request.Option) (*ModifyDBSnapshotOutput, error)

ModifyDBSnapshotWithContext is the same as ModifyDBSnapshot with the addition of the ability to pass a context and additional request options.

See ModifyDBSnapshot for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) ModifyDBSubnetGroup

func (c *RDS) ModifyDBSubnetGroup(input *ModifyDBSubnetGroupInput) (*ModifyDBSubnetGroupOutput, error)

ModifyDBSubnetGroup API operation for Amazon Relational Database Service.

Modifies an existing DB subnet group. DB subnet groups must contain at least one subnet in at least two AZs in the Amazon Web Services Region.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation ModifyDBSubnetGroup for usage and error information.

Returned Error Codes:

  • ErrCodeDBSubnetGroupNotFoundFault "DBSubnetGroupNotFoundFault" DBSubnetGroupName doesn't refer to an existing DB subnet group.

  • ErrCodeDBSubnetQuotaExceededFault "DBSubnetQuotaExceededFault" The request would result in the user exceeding the allowed number of subnets in a DB subnet groups.

  • ErrCodeSubnetAlreadyInUse "SubnetAlreadyInUse" The DB subnet is already in use in the Availability Zone.

  • ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs "DBSubnetGroupDoesNotCoverEnoughAZs" Subnets in the DB subnet group should cover at least two Availability Zones unless there is only one Availability Zone.

  • ErrCodeInvalidSubnet "InvalidSubnet" The requested subnet is invalid, or multiple subnets were requested that are not all in a common VPC.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSubnetGroup

Example (Shared00)

To modify a DB subnet group The following example adds a subnet with the ID subnet-08e41f9e230222222 to the DB subnet group named mysubnetgroup. To keep the existing subnets in the subnet group, include their IDs as values in the --subnet-ids option. Make sure to have subnets with at least two different Availability Zones in the DB subnet group.

Code:

svc := rds.New(session.New())
input := &rds.ModifyDBSubnetGroupInput{
    DBSubnetGroupDescription: aws.String(""),
    DBSubnetGroupName:        aws.String("mysubnetgroup"),
    SubnetIds: []*string{
        aws.String("subnet-0a1dc4e1a6f123456"),
        aws.String("subnet-070dd7ecb3aaaaaaa"),
        aws.String("subnet-00f5b198bc0abcdef"),
        aws.String("subnet-08e41f9e230222222"),
    },
}

result, err := svc.ModifyDBSubnetGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBSubnetGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBSubnetGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeDBSubnetQuotaExceededFault:
            fmt.Println(rds.ErrCodeDBSubnetQuotaExceededFault, aerr.Error())
        case rds.ErrCodeSubnetAlreadyInUse:
            fmt.Println(rds.ErrCodeSubnetAlreadyInUse, aerr.Error())
        case rds.ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs:
            fmt.Println(rds.ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs, aerr.Error())
        case rds.ErrCodeInvalidSubnet:
            fmt.Println(rds.ErrCodeInvalidSubnet, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) ModifyDBSubnetGroupRequest

func (c *RDS) ModifyDBSubnetGroupRequest(input *ModifyDBSubnetGroupInput) (req *request.Request, output *ModifyDBSubnetGroupOutput)

ModifyDBSubnetGroupRequest generates a "aws/request.Request" representing the client's request for the ModifyDBSubnetGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ModifyDBSubnetGroup for more information on using the ModifyDBSubnetGroup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ModifyDBSubnetGroupRequest method.
req, resp := client.ModifyDBSubnetGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSubnetGroup

func (*RDS) ModifyDBSubnetGroupWithContext

func (c *RDS) ModifyDBSubnetGroupWithContext(ctx aws.Context, input *ModifyDBSubnetGroupInput, opts ...request.Option) (*ModifyDBSubnetGroupOutput, error)

ModifyDBSubnetGroupWithContext is the same as ModifyDBSubnetGroup with the addition of the ability to pass a context and additional request options.

See ModifyDBSubnetGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) ModifyEventSubscription

func (c *RDS) ModifyEventSubscription(input *ModifyEventSubscriptionInput) (*ModifyEventSubscriptionOutput, error)

ModifyEventSubscription API operation for Amazon Relational Database Service.

Modifies an existing RDS event notification subscription. You can't modify the source identifiers using this call. To change source identifiers for a subscription, use the AddSourceIdentifierToSubscription and RemoveSourceIdentifierFromSubscription calls.

You can see a list of the event categories for a given source type (SourceType) in Events (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html) in the Amazon RDS User Guide or by using the DescribeEventCategories operation.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation ModifyEventSubscription for usage and error information.

Returned Error Codes:

  • ErrCodeEventSubscriptionQuotaExceededFault "EventSubscriptionQuotaExceeded" You have reached the maximum number of event subscriptions.

  • ErrCodeSubscriptionNotFoundFault "SubscriptionNotFound" The subscription name does not exist.

  • ErrCodeSNSInvalidTopicFault "SNSInvalidTopic" SNS has responded that there is a problem with the SNS topic specified.

  • ErrCodeSNSNoAuthorizationFault "SNSNoAuthorization" You do not have permission to publish to the SNS topic ARN.

  • ErrCodeSNSTopicArnNotFoundFault "SNSTopicArnNotFound" The SNS topic ARN does not exist.

  • ErrCodeSubscriptionCategoryNotFoundFault "SubscriptionCategoryNotFound" The supplied category does not exist.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyEventSubscription

Example (Shared00)

To modify an event subscription The following example turns off the specified event subscription, so that it no longer publishes notifications to the specified Amazon Simple Notification Service topic.

Code:

svc := rds.New(session.New())
input := &rds.ModifyEventSubscriptionInput{
    Enabled:          aws.Bool(false),
    SubscriptionName: aws.String("my-instance-events"),
}

result, err := svc.ModifyEventSubscription(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeEventSubscriptionQuotaExceededFault:
            fmt.Println(rds.ErrCodeEventSubscriptionQuotaExceededFault, aerr.Error())
        case rds.ErrCodeSubscriptionNotFoundFault:
            fmt.Println(rds.ErrCodeSubscriptionNotFoundFault, aerr.Error())
        case rds.ErrCodeSNSInvalidTopicFault:
            fmt.Println(rds.ErrCodeSNSInvalidTopicFault, aerr.Error())
        case rds.ErrCodeSNSNoAuthorizationFault:
            fmt.Println(rds.ErrCodeSNSNoAuthorizationFault, aerr.Error())
        case rds.ErrCodeSNSTopicArnNotFoundFault:
            fmt.Println(rds.ErrCodeSNSTopicArnNotFoundFault, aerr.Error())
        case rds.ErrCodeSubscriptionCategoryNotFoundFault:
            fmt.Println(rds.ErrCodeSubscriptionCategoryNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) ModifyEventSubscriptionRequest

func (c *RDS) ModifyEventSubscriptionRequest(input *ModifyEventSubscriptionInput) (req *request.Request, output *ModifyEventSubscriptionOutput)

ModifyEventSubscriptionRequest generates a "aws/request.Request" representing the client's request for the ModifyEventSubscription operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ModifyEventSubscription for more information on using the ModifyEventSubscription API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ModifyEventSubscriptionRequest method.
req, resp := client.ModifyEventSubscriptionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyEventSubscription

func (*RDS) ModifyEventSubscriptionWithContext

func (c *RDS) ModifyEventSubscriptionWithContext(ctx aws.Context, input *ModifyEventSubscriptionInput, opts ...request.Option) (*ModifyEventSubscriptionOutput, error)

ModifyEventSubscriptionWithContext is the same as ModifyEventSubscription with the addition of the ability to pass a context and additional request options.

See ModifyEventSubscription for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) ModifyGlobalCluster

func (c *RDS) ModifyGlobalCluster(input *ModifyGlobalClusterInput) (*ModifyGlobalClusterOutput, error)

ModifyGlobalCluster API operation for Amazon Relational Database Service.

Modifies a setting for an Amazon Aurora global database cluster. You can change one or more database configuration parameters by specifying these parameters and the new values in the request. For more information on Amazon Aurora, see What is Amazon Aurora? (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html) in the Amazon Aurora User Guide.

This operation only applies to Aurora global database clusters.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation ModifyGlobalCluster for usage and error information.

Returned Error Codes:

  • ErrCodeGlobalClusterNotFoundFault "GlobalClusterNotFoundFault" The GlobalClusterIdentifier doesn't refer to an existing global database cluster.

  • ErrCodeInvalidGlobalClusterStateFault "InvalidGlobalClusterStateFault" The global cluster is in an invalid state and can't perform the requested operation.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyGlobalCluster

Example (Shared00)

To modify a global database cluster The following example enables deletion protection for an Aurora MySQL-based global database cluster.

Code:

svc := rds.New(session.New())
input := &rds.ModifyGlobalClusterInput{
    DeletionProtection:      aws.Bool(true),
    GlobalClusterIdentifier: aws.String("myglobalcluster"),
}

result, err := svc.ModifyGlobalCluster(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeGlobalClusterNotFoundFault:
            fmt.Println(rds.ErrCodeGlobalClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidGlobalClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidGlobalClusterStateFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        case rds.ErrCodeInvalidDBInstanceStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceStateFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) ModifyGlobalClusterRequest

func (c *RDS) ModifyGlobalClusterRequest(input *ModifyGlobalClusterInput) (req *request.Request, output *ModifyGlobalClusterOutput)

ModifyGlobalClusterRequest generates a "aws/request.Request" representing the client's request for the ModifyGlobalCluster operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ModifyGlobalCluster for more information on using the ModifyGlobalCluster API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ModifyGlobalClusterRequest method.
req, resp := client.ModifyGlobalClusterRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyGlobalCluster

func (*RDS) ModifyGlobalClusterWithContext

func (c *RDS) ModifyGlobalClusterWithContext(ctx aws.Context, input *ModifyGlobalClusterInput, opts ...request.Option) (*ModifyGlobalClusterOutput, error)

ModifyGlobalClusterWithContext is the same as ModifyGlobalCluster with the addition of the ability to pass a context and additional request options.

See ModifyGlobalCluster for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) ModifyIntegration

func (c *RDS) ModifyIntegration(input *ModifyIntegrationInput) (*ModifyIntegrationOutput, error)

ModifyIntegration API operation for Amazon Relational Database Service.

Modifies a zero-ETL integration with Amazon Redshift.

Currently, you can only modify integrations that have Aurora MySQL source DB clusters. Integrations with Aurora PostgreSQL and RDS sources currently don't support modifying the integration.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation ModifyIntegration for usage and error information.

Returned Error Codes:

  • ErrCodeIntegrationNotFoundFault "IntegrationNotFoundFault" The specified integration could not be found.

  • ErrCodeInvalidIntegrationStateFault "InvalidIntegrationStateFault" The integration is in an invalid state and can't perform the requested operation.

  • ErrCodeIntegrationConflictOperationFault "IntegrationConflictOperationFault" A conflicting conditional operation is currently in progress against this resource. Typically occurs when there are multiple requests being made to the same resource at the same time, and these requests conflict with each other.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyIntegration

Example (Shared00)

To modify a zero-ETL integration The following example modifies the name of an existing zero-ETL integration.

Code:

svc := rds.New(session.New())
input := &rds.ModifyIntegrationInput{
    IntegrationIdentifier: aws.String("a1b2c3d4-5678-90ab-cdef-EXAMPLE11111"),
    IntegrationName:       aws.String("my-renamed-integration"),
}

result, err := svc.ModifyIntegration(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeIntegrationNotFoundFault:
            fmt.Println(rds.ErrCodeIntegrationNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidIntegrationStateFault:
            fmt.Println(rds.ErrCodeInvalidIntegrationStateFault, aerr.Error())
        case rds.ErrCodeIntegrationConflictOperationFault:
            fmt.Println(rds.ErrCodeIntegrationConflictOperationFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) ModifyIntegrationRequest

func (c *RDS) ModifyIntegrationRequest(input *ModifyIntegrationInput) (req *request.Request, output *ModifyIntegrationOutput)

ModifyIntegrationRequest generates a "aws/request.Request" representing the client's request for the ModifyIntegration operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ModifyIntegration for more information on using the ModifyIntegration API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ModifyIntegrationRequest method.
req, resp := client.ModifyIntegrationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyIntegration

func (*RDS) ModifyIntegrationWithContext

func (c *RDS) ModifyIntegrationWithContext(ctx aws.Context, input *ModifyIntegrationInput, opts ...request.Option) (*ModifyIntegrationOutput, error)

ModifyIntegrationWithContext is the same as ModifyIntegration with the addition of the ability to pass a context and additional request options.

See ModifyIntegration for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) ModifyOptionGroup

func (c *RDS) ModifyOptionGroup(input *ModifyOptionGroupInput) (*ModifyOptionGroupOutput, error)

ModifyOptionGroup API operation for Amazon Relational Database Service.

Modifies an existing option group.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation ModifyOptionGroup for usage and error information.

Returned Error Codes:

  • ErrCodeInvalidOptionGroupStateFault "InvalidOptionGroupStateFault" The option group isn't in the available state.

  • ErrCodeOptionGroupNotFoundFault "OptionGroupNotFoundFault" The specified option group could not be found.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyOptionGroup

Example (Shared00)

To modify an option group The following example adds an option to an option group.

Code:

svc := rds.New(session.New())
input := &rds.ModifyOptionGroupInput{
    ApplyImmediately: aws.Bool(true),
    OptionGroupName:  aws.String("myawsuser-og02"),
    OptionsToInclude: []*rds.OptionConfiguration{
        {
            DBSecurityGroupMemberships: []*string{
                aws.String("default"),
            },
            OptionName: aws.String("MEMCACHED"),
        },
    },
}

result, err := svc.ModifyOptionGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeInvalidOptionGroupStateFault:
            fmt.Println(rds.ErrCodeInvalidOptionGroupStateFault, aerr.Error())
        case rds.ErrCodeOptionGroupNotFoundFault:
            fmt.Println(rds.ErrCodeOptionGroupNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) ModifyOptionGroupRequest

func (c *RDS) ModifyOptionGroupRequest(input *ModifyOptionGroupInput) (req *request.Request, output *ModifyOptionGroupOutput)

ModifyOptionGroupRequest generates a "aws/request.Request" representing the client's request for the ModifyOptionGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ModifyOptionGroup for more information on using the ModifyOptionGroup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ModifyOptionGroupRequest method.
req, resp := client.ModifyOptionGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyOptionGroup

func (*RDS) ModifyOptionGroupWithContext

func (c *RDS) ModifyOptionGroupWithContext(ctx aws.Context, input *ModifyOptionGroupInput, opts ...request.Option) (*ModifyOptionGroupOutput, error)

ModifyOptionGroupWithContext is the same as ModifyOptionGroup with the addition of the ability to pass a context and additional request options.

See ModifyOptionGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) ModifyTenantDatabase

func (c *RDS) ModifyTenantDatabase(input *ModifyTenantDatabaseInput) (*ModifyTenantDatabaseOutput, error)

ModifyTenantDatabase API operation for Amazon Relational Database Service.

Modifies an existing tenant database in a DB instance. You can change the tenant database name or the master user password. This operation is supported only for RDS for Oracle CDB instances using the multi-tenant configuration.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation ModifyTenantDatabase for usage and error information.

Returned Error Codes:

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

  • ErrCodeTenantDatabaseNotFoundFault "TenantDatabaseNotFound" The specified tenant database wasn't found in the DB instance.

  • ErrCodeTenantDatabaseAlreadyExistsFault "TenantDatabaseAlreadyExists" You attempted to either create a tenant database that already exists or modify a tenant database to use the name of an existing tenant database.

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyTenantDatabase

func (*RDS) ModifyTenantDatabaseRequest

func (c *RDS) ModifyTenantDatabaseRequest(input *ModifyTenantDatabaseInput) (req *request.Request, output *ModifyTenantDatabaseOutput)

ModifyTenantDatabaseRequest generates a "aws/request.Request" representing the client's request for the ModifyTenantDatabase operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ModifyTenantDatabase for more information on using the ModifyTenantDatabase API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ModifyTenantDatabaseRequest method.
req, resp := client.ModifyTenantDatabaseRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyTenantDatabase

func (*RDS) ModifyTenantDatabaseWithContext

func (c *RDS) ModifyTenantDatabaseWithContext(ctx aws.Context, input *ModifyTenantDatabaseInput, opts ...request.Option) (*ModifyTenantDatabaseOutput, error)

ModifyTenantDatabaseWithContext is the same as ModifyTenantDatabase with the addition of the ability to pass a context and additional request options.

See ModifyTenantDatabase for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) PromoteReadReplica

func (c *RDS) PromoteReadReplica(input *PromoteReadReplicaInput) (*PromoteReadReplicaOutput, error)

PromoteReadReplica API operation for Amazon Relational Database Service.

Promotes a read replica DB instance to a standalone DB instance.

  • Backup duration is a function of the amount of changes to the database since the previous backup. If you plan to promote a read replica to a standalone instance, we recommend that you enable backups and complete at least one backup prior to promotion. In addition, a read replica cannot be promoted to a standalone instance when it is in the backing-up status. If you have enabled backups on your read replica, configure the automated backup window so that daily backups do not interfere with read replica promotion.

  • This command doesn't apply to Aurora MySQL, Aurora PostgreSQL, or RDS Custom.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation PromoteReadReplica for usage and error information.

Returned Error Codes:

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica

Example (Shared00)

To promote a read replica The following example promotes the specified read replica to become a standalone DB instance.

Code:

svc := rds.New(session.New())
input := &rds.PromoteReadReplicaInput{
    DBInstanceIdentifier: aws.String("test-instance-repl"),
}

result, err := svc.PromoteReadReplica(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeInvalidDBInstanceStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceStateFault, aerr.Error())
        case rds.ErrCodeDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) PromoteReadReplicaDBCluster

func (c *RDS) PromoteReadReplicaDBCluster(input *PromoteReadReplicaDBClusterInput) (*PromoteReadReplicaDBClusterOutput, error)

PromoteReadReplicaDBCluster API operation for Amazon Relational Database Service.

Promotes a read replica DB cluster to a standalone DB cluster.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation PromoteReadReplicaDBCluster for usage and error information.

Returned Error Codes:

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster

func (*RDS) PromoteReadReplicaDBClusterRequest

func (c *RDS) PromoteReadReplicaDBClusterRequest(input *PromoteReadReplicaDBClusterInput) (req *request.Request, output *PromoteReadReplicaDBClusterOutput)

PromoteReadReplicaDBClusterRequest generates a "aws/request.Request" representing the client's request for the PromoteReadReplicaDBCluster operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See PromoteReadReplicaDBCluster for more information on using the PromoteReadReplicaDBCluster API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the PromoteReadReplicaDBClusterRequest method.
req, resp := client.PromoteReadReplicaDBClusterRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster

func (*RDS) PromoteReadReplicaDBClusterWithContext

func (c *RDS) PromoteReadReplicaDBClusterWithContext(ctx aws.Context, input *PromoteReadReplicaDBClusterInput, opts ...request.Option) (*PromoteReadReplicaDBClusterOutput, error)

PromoteReadReplicaDBClusterWithContext is the same as PromoteReadReplicaDBCluster with the addition of the ability to pass a context and additional request options.

See PromoteReadReplicaDBCluster for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) PromoteReadReplicaRequest

func (c *RDS) PromoteReadReplicaRequest(input *PromoteReadReplicaInput) (req *request.Request, output *PromoteReadReplicaOutput)

PromoteReadReplicaRequest generates a "aws/request.Request" representing the client's request for the PromoteReadReplica operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See PromoteReadReplica for more information on using the PromoteReadReplica API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the PromoteReadReplicaRequest method.
req, resp := client.PromoteReadReplicaRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica

func (*RDS) PromoteReadReplicaWithContext

func (c *RDS) PromoteReadReplicaWithContext(ctx aws.Context, input *PromoteReadReplicaInput, opts ...request.Option) (*PromoteReadReplicaOutput, error)

PromoteReadReplicaWithContext is the same as PromoteReadReplica with the addition of the ability to pass a context and additional request options.

See PromoteReadReplica for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) PurchaseReservedDBInstancesOffering

func (c *RDS) PurchaseReservedDBInstancesOffering(input *PurchaseReservedDBInstancesOfferingInput) (*PurchaseReservedDBInstancesOfferingOutput, error)

PurchaseReservedDBInstancesOffering API operation for Amazon Relational Database Service.

Purchases a reserved DB instance offering.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation PurchaseReservedDBInstancesOffering for usage and error information.

Returned Error Codes:

  • ErrCodeReservedDBInstancesOfferingNotFoundFault "ReservedDBInstancesOfferingNotFound" Specified offering does not exist.

  • ErrCodeReservedDBInstanceAlreadyExistsFault "ReservedDBInstanceAlreadyExists" User already has a reservation with the given identifier.

  • ErrCodeReservedDBInstanceQuotaExceededFault "ReservedDBInstanceQuotaExceeded" Request would exceed the user's DB Instance quota.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PurchaseReservedDBInstancesOffering

Example (Shared00)

To purchase a reserved DB instance The following example shows how to buy the reserved DB instance offering from the previous example.

Code:

svc := rds.New(session.New())
input := &rds.PurchaseReservedDBInstancesOfferingInput{
    ReservedDBInstanceId:          aws.String("8ba30be1-b9ec-447f-8f23-6114e3f4c7b4"),
    ReservedDBInstancesOfferingId: aws.String(""),
}

result, err := svc.PurchaseReservedDBInstancesOffering(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeReservedDBInstancesOfferingNotFoundFault:
            fmt.Println(rds.ErrCodeReservedDBInstancesOfferingNotFoundFault, aerr.Error())
        case rds.ErrCodeReservedDBInstanceAlreadyExistsFault:
            fmt.Println(rds.ErrCodeReservedDBInstanceAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeReservedDBInstanceQuotaExceededFault:
            fmt.Println(rds.ErrCodeReservedDBInstanceQuotaExceededFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) PurchaseReservedDBInstancesOfferingRequest

func (c *RDS) PurchaseReservedDBInstancesOfferingRequest(input *PurchaseReservedDBInstancesOfferingInput) (req *request.Request, output *PurchaseReservedDBInstancesOfferingOutput)

PurchaseReservedDBInstancesOfferingRequest generates a "aws/request.Request" representing the client's request for the PurchaseReservedDBInstancesOffering operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See PurchaseReservedDBInstancesOffering for more information on using the PurchaseReservedDBInstancesOffering API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the PurchaseReservedDBInstancesOfferingRequest method.
req, resp := client.PurchaseReservedDBInstancesOfferingRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PurchaseReservedDBInstancesOffering

func (*RDS) PurchaseReservedDBInstancesOfferingWithContext

func (c *RDS) PurchaseReservedDBInstancesOfferingWithContext(ctx aws.Context, input *PurchaseReservedDBInstancesOfferingInput, opts ...request.Option) (*PurchaseReservedDBInstancesOfferingOutput, error)

PurchaseReservedDBInstancesOfferingWithContext is the same as PurchaseReservedDBInstancesOffering with the addition of the ability to pass a context and additional request options.

See PurchaseReservedDBInstancesOffering for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) RebootDBCluster

func (c *RDS) RebootDBCluster(input *RebootDBClusterInput) (*RebootDBClusterOutput, error)

RebootDBCluster API operation for Amazon Relational Database Service.

You might need to reboot your DB cluster, usually for maintenance reasons. For example, if you make certain modifications, or if you change the DB cluster parameter group associated with the DB cluster, reboot the DB cluster for the changes to take effect.

Rebooting a DB cluster restarts the database engine service. Rebooting a DB cluster results in a momentary outage, during which the DB cluster status is set to rebooting.

Use this operation only for a non-Aurora Multi-AZ DB cluster.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation RebootDBCluster for usage and error information.

Returned Error Codes:

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBCluster

func (*RDS) RebootDBClusterRequest

func (c *RDS) RebootDBClusterRequest(input *RebootDBClusterInput) (req *request.Request, output *RebootDBClusterOutput)

RebootDBClusterRequest generates a "aws/request.Request" representing the client's request for the RebootDBCluster operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See RebootDBCluster for more information on using the RebootDBCluster API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the RebootDBClusterRequest method.
req, resp := client.RebootDBClusterRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBCluster

func (*RDS) RebootDBClusterWithContext

func (c *RDS) RebootDBClusterWithContext(ctx aws.Context, input *RebootDBClusterInput, opts ...request.Option) (*RebootDBClusterOutput, error)

RebootDBClusterWithContext is the same as RebootDBCluster with the addition of the ability to pass a context and additional request options.

See RebootDBCluster for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) RebootDBInstance

func (c *RDS) RebootDBInstance(input *RebootDBInstanceInput) (*RebootDBInstanceOutput, error)

RebootDBInstance API operation for Amazon Relational Database Service.

You might need to reboot your DB instance, usually for maintenance reasons. For example, if you make certain modifications, or if you change the DB parameter group associated with the DB instance, you must reboot the instance for the changes to take effect.

Rebooting a DB instance restarts the database engine service. Rebooting a DB instance results in a momentary outage, during which the DB instance status is set to rebooting.

For more information about rebooting, see Rebooting a DB Instance (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_RebootInstance.html) in the Amazon RDS User Guide.

This command doesn't apply to RDS Custom.

If your DB instance is part of a Multi-AZ DB cluster, you can reboot the DB cluster with the RebootDBCluster operation.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation RebootDBInstance for usage and error information.

Returned Error Codes:

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance

Example (Shared00)

To reboot a DB instance The following example starts a reboot of the specified DB instance.

Code:

svc := rds.New(session.New())
input := &rds.RebootDBInstanceInput{
    DBInstanceIdentifier: aws.String("test-mysql-instance"),
}

result, err := svc.RebootDBInstance(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeInvalidDBInstanceStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceStateFault, aerr.Error())
        case rds.ErrCodeDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) RebootDBInstanceRequest

func (c *RDS) RebootDBInstanceRequest(input *RebootDBInstanceInput) (req *request.Request, output *RebootDBInstanceOutput)

RebootDBInstanceRequest generates a "aws/request.Request" representing the client's request for the RebootDBInstance operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See RebootDBInstance for more information on using the RebootDBInstance API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the RebootDBInstanceRequest method.
req, resp := client.RebootDBInstanceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance

func (*RDS) RebootDBInstanceWithContext

func (c *RDS) RebootDBInstanceWithContext(ctx aws.Context, input *RebootDBInstanceInput, opts ...request.Option) (*RebootDBInstanceOutput, error)

RebootDBInstanceWithContext is the same as RebootDBInstance with the addition of the ability to pass a context and additional request options.

See RebootDBInstance for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) RebootDBShardGroup

func (c *RDS) RebootDBShardGroup(input *RebootDBShardGroupInput) (*RebootDBShardGroupOutput, error)

RebootDBShardGroup API operation for Amazon Relational Database Service.

You might need to reboot your DB shard group, usually for maintenance reasons. For example, if you make certain modifications, reboot the DB shard group for the changes to take effect.

This operation applies only to Aurora Limitless Database DBb shard groups.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation RebootDBShardGroup for usage and error information.

Returned Error Codes:

  • ErrCodeDBShardGroupNotFoundFault "DBShardGroupNotFound" The specified DB shard group name wasn't found.

  • ErrCodeInvalidDBShardGroupStateFault "InvalidDBShardGroupState" The DB shard group must be in the available state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBShardGroup

func (*RDS) RebootDBShardGroupRequest

func (c *RDS) RebootDBShardGroupRequest(input *RebootDBShardGroupInput) (req *request.Request, output *RebootDBShardGroupOutput)

RebootDBShardGroupRequest generates a "aws/request.Request" representing the client's request for the RebootDBShardGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See RebootDBShardGroup for more information on using the RebootDBShardGroup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the RebootDBShardGroupRequest method.
req, resp := client.RebootDBShardGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBShardGroup

func (*RDS) RebootDBShardGroupWithContext

func (c *RDS) RebootDBShardGroupWithContext(ctx aws.Context, input *RebootDBShardGroupInput, opts ...request.Option) (*RebootDBShardGroupOutput, error)

RebootDBShardGroupWithContext is the same as RebootDBShardGroup with the addition of the ability to pass a context and additional request options.

See RebootDBShardGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) RegisterDBProxyTargets

func (c *RDS) RegisterDBProxyTargets(input *RegisterDBProxyTargetsInput) (*RegisterDBProxyTargetsOutput, error)

RegisterDBProxyTargets API operation for Amazon Relational Database Service.

Associate one or more DBProxyTarget data structures with a DBProxyTargetGroup.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation RegisterDBProxyTargets for usage and error information.

Returned Error Codes:

  • ErrCodeDBProxyNotFoundFault "DBProxyNotFoundFault" The specified proxy name doesn't correspond to a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

  • ErrCodeDBProxyTargetGroupNotFoundFault "DBProxyTargetGroupNotFoundFault" The specified target group isn't available for a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

  • ErrCodeDBProxyTargetAlreadyRegisteredFault "DBProxyTargetAlreadyRegisteredFault" The proxy is already associated with the specified RDS DB instance or Aurora DB cluster.

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeInvalidDBProxyStateFault "InvalidDBProxyStateFault" The requested operation can't be performed while the proxy is in this state.

  • ErrCodeInsufficientAvailableIPsInSubnetFault "InsufficientAvailableIPsInSubnetFault" The requested operation can't be performed because there aren't enough available IP addresses in the proxy's subnets. Add more CIDR blocks to the VPC or remove IP address that aren't required from the subnets.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RegisterDBProxyTargets

func (*RDS) RegisterDBProxyTargetsRequest

func (c *RDS) RegisterDBProxyTargetsRequest(input *RegisterDBProxyTargetsInput) (req *request.Request, output *RegisterDBProxyTargetsOutput)

RegisterDBProxyTargetsRequest generates a "aws/request.Request" representing the client's request for the RegisterDBProxyTargets operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See RegisterDBProxyTargets for more information on using the RegisterDBProxyTargets API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the RegisterDBProxyTargetsRequest method.
req, resp := client.RegisterDBProxyTargetsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RegisterDBProxyTargets

func (*RDS) RegisterDBProxyTargetsWithContext

func (c *RDS) RegisterDBProxyTargetsWithContext(ctx aws.Context, input *RegisterDBProxyTargetsInput, opts ...request.Option) (*RegisterDBProxyTargetsOutput, error)

RegisterDBProxyTargetsWithContext is the same as RegisterDBProxyTargets with the addition of the ability to pass a context and additional request options.

See RegisterDBProxyTargets for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) RemoveFromGlobalCluster

func (c *RDS) RemoveFromGlobalCluster(input *RemoveFromGlobalClusterInput) (*RemoveFromGlobalClusterOutput, error)

RemoveFromGlobalCluster API operation for Amazon Relational Database Service.

Detaches an Aurora secondary cluster from an Aurora global database cluster. The cluster becomes a standalone cluster with read-write capability instead of being read-only and receiving data from a primary cluster in a different Region.

This operation only applies to Aurora DB clusters.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation RemoveFromGlobalCluster for usage and error information.

Returned Error Codes:

  • ErrCodeGlobalClusterNotFoundFault "GlobalClusterNotFoundFault" The GlobalClusterIdentifier doesn't refer to an existing global database cluster.

  • ErrCodeInvalidGlobalClusterStateFault "InvalidGlobalClusterStateFault" The global cluster is in an invalid state and can't perform the requested operation.

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RemoveFromGlobalCluster

Example (Shared00)

To detach an Aurora secondary cluster from an Aurora global database cluster The following example detaches an Aurora secondary cluster from an Aurora global database cluster. The cluster changes from being read-only to a standalone cluster with read-write capability.

Code:

svc := rds.New(session.New())
input := &rds.RemoveFromGlobalClusterInput{
    DbClusterIdentifier:     aws.String("arn:aws:rds:us-west-2:123456789012:cluster:DB-1"),
    GlobalClusterIdentifier: aws.String("myglobalcluster"),
}

result, err := svc.RemoveFromGlobalCluster(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeGlobalClusterNotFoundFault:
            fmt.Println(rds.ErrCodeGlobalClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidGlobalClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidGlobalClusterStateFault, aerr.Error())
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) RemoveFromGlobalClusterRequest

func (c *RDS) RemoveFromGlobalClusterRequest(input *RemoveFromGlobalClusterInput) (req *request.Request, output *RemoveFromGlobalClusterOutput)

RemoveFromGlobalClusterRequest generates a "aws/request.Request" representing the client's request for the RemoveFromGlobalCluster operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See RemoveFromGlobalCluster for more information on using the RemoveFromGlobalCluster API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the RemoveFromGlobalClusterRequest method.
req, resp := client.RemoveFromGlobalClusterRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RemoveFromGlobalCluster

func (*RDS) RemoveFromGlobalClusterWithContext

func (c *RDS) RemoveFromGlobalClusterWithContext(ctx aws.Context, input *RemoveFromGlobalClusterInput, opts ...request.Option) (*RemoveFromGlobalClusterOutput, error)

RemoveFromGlobalClusterWithContext is the same as RemoveFromGlobalCluster with the addition of the ability to pass a context and additional request options.

See RemoveFromGlobalCluster for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) RemoveRoleFromDBCluster

func (c *RDS) RemoveRoleFromDBCluster(input *RemoveRoleFromDBClusterInput) (*RemoveRoleFromDBClusterOutput, error)

RemoveRoleFromDBCluster API operation for Amazon Relational Database Service.

Removes the asssociation of an Amazon Web Services Identity and Access Management (IAM) role from a DB cluster.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html) in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation RemoveRoleFromDBCluster for usage and error information.

Returned Error Codes:

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeDBClusterRoleNotFoundFault "DBClusterRoleNotFound" The specified IAM role Amazon Resource Name (ARN) isn't associated with the specified DB cluster.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RemoveRoleFromDBCluster

Example (Shared00)

To disassociate an Identity and Access Management (IAM) role from a DB cluster The following example removes a role from a DB cluster.

Code:

svc := rds.New(session.New())
input := &rds.RemoveRoleFromDBClusterInput{
    DBClusterIdentifier: aws.String("mydbcluster"),
    RoleArn:             aws.String("arn:aws:iam::123456789012:role/RDSLoadFromS3"),
}

result, err := svc.RemoveRoleFromDBCluster(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeDBClusterRoleNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterRoleNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) RemoveRoleFromDBClusterRequest

func (c *RDS) RemoveRoleFromDBClusterRequest(input *RemoveRoleFromDBClusterInput) (req *request.Request, output *RemoveRoleFromDBClusterOutput)

RemoveRoleFromDBClusterRequest generates a "aws/request.Request" representing the client's request for the RemoveRoleFromDBCluster operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See RemoveRoleFromDBCluster for more information on using the RemoveRoleFromDBCluster API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the RemoveRoleFromDBClusterRequest method.
req, resp := client.RemoveRoleFromDBClusterRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RemoveRoleFromDBCluster

func (*RDS) RemoveRoleFromDBClusterWithContext

func (c *RDS) RemoveRoleFromDBClusterWithContext(ctx aws.Context, input *RemoveRoleFromDBClusterInput, opts ...request.Option) (*RemoveRoleFromDBClusterOutput, error)

RemoveRoleFromDBClusterWithContext is the same as RemoveRoleFromDBCluster with the addition of the ability to pass a context and additional request options.

See RemoveRoleFromDBCluster for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) RemoveRoleFromDBInstance

func (c *RDS) RemoveRoleFromDBInstance(input *RemoveRoleFromDBInstanceInput) (*RemoveRoleFromDBInstanceOutput, error)

RemoveRoleFromDBInstance API operation for Amazon Relational Database Service.

Disassociates an Amazon Web Services Identity and Access Management (IAM) role from a DB instance.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation RemoveRoleFromDBInstance for usage and error information.

Returned Error Codes:

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

  • ErrCodeDBInstanceRoleNotFoundFault "DBInstanceRoleNotFound" The specified RoleArn value doesn't match the specified feature for the DB instance.

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RemoveRoleFromDBInstance

func (*RDS) RemoveRoleFromDBInstanceRequest

func (c *RDS) RemoveRoleFromDBInstanceRequest(input *RemoveRoleFromDBInstanceInput) (req *request.Request, output *RemoveRoleFromDBInstanceOutput)

RemoveRoleFromDBInstanceRequest generates a "aws/request.Request" representing the client's request for the RemoveRoleFromDBInstance operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See RemoveRoleFromDBInstance for more information on using the RemoveRoleFromDBInstance API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the RemoveRoleFromDBInstanceRequest method.
req, resp := client.RemoveRoleFromDBInstanceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RemoveRoleFromDBInstance

func (*RDS) RemoveRoleFromDBInstanceWithContext

func (c *RDS) RemoveRoleFromDBInstanceWithContext(ctx aws.Context, input *RemoveRoleFromDBInstanceInput, opts ...request.Option) (*RemoveRoleFromDBInstanceOutput, error)

RemoveRoleFromDBInstanceWithContext is the same as RemoveRoleFromDBInstance with the addition of the ability to pass a context and additional request options.

See RemoveRoleFromDBInstance for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) RemoveSourceIdentifierFromSubscription

func (c *RDS) RemoveSourceIdentifierFromSubscription(input *RemoveSourceIdentifierFromSubscriptionInput) (*RemoveSourceIdentifierFromSubscriptionOutput, error)

RemoveSourceIdentifierFromSubscription API operation for Amazon Relational Database Service.

Removes a source identifier from an existing RDS event notification subscription.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation RemoveSourceIdentifierFromSubscription for usage and error information.

Returned Error Codes:

  • ErrCodeSubscriptionNotFoundFault "SubscriptionNotFound" The subscription name does not exist.

  • ErrCodeSourceNotFoundFault "SourceNotFound" The requested source could not be found.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RemoveSourceIdentifierFromSubscription

Example (Shared00)

To remove a source identifier from a subscription The following example removes the specified source identifier from an existing subscription.

Code:

svc := rds.New(session.New())
input := &rds.RemoveSourceIdentifierFromSubscriptionInput{
    SourceIdentifier: aws.String("test-instance-repl"),
    SubscriptionName: aws.String("my-instance-events"),
}

result, err := svc.RemoveSourceIdentifierFromSubscription(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeSubscriptionNotFoundFault:
            fmt.Println(rds.ErrCodeSubscriptionNotFoundFault, aerr.Error())
        case rds.ErrCodeSourceNotFoundFault:
            fmt.Println(rds.ErrCodeSourceNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) RemoveSourceIdentifierFromSubscriptionRequest

func (c *RDS) RemoveSourceIdentifierFromSubscriptionRequest(input *RemoveSourceIdentifierFromSubscriptionInput) (req *request.Request, output *RemoveSourceIdentifierFromSubscriptionOutput)

RemoveSourceIdentifierFromSubscriptionRequest generates a "aws/request.Request" representing the client's request for the RemoveSourceIdentifierFromSubscription operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See RemoveSourceIdentifierFromSubscription for more information on using the RemoveSourceIdentifierFromSubscription API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the RemoveSourceIdentifierFromSubscriptionRequest method.
req, resp := client.RemoveSourceIdentifierFromSubscriptionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RemoveSourceIdentifierFromSubscription

func (*RDS) RemoveSourceIdentifierFromSubscriptionWithContext

func (c *RDS) RemoveSourceIdentifierFromSubscriptionWithContext(ctx aws.Context, input *RemoveSourceIdentifierFromSubscriptionInput, opts ...request.Option) (*RemoveSourceIdentifierFromSubscriptionOutput, error)

RemoveSourceIdentifierFromSubscriptionWithContext is the same as RemoveSourceIdentifierFromSubscription with the addition of the ability to pass a context and additional request options.

See RemoveSourceIdentifierFromSubscription for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) RemoveTagsFromResource

func (c *RDS) RemoveTagsFromResource(input *RemoveTagsFromResourceInput) (*RemoveTagsFromResourceOutput, error)

RemoveTagsFromResource API operation for Amazon Relational Database Service.

Removes metadata tags from an Amazon RDS resource.

For an overview on tagging an Amazon RDS resource, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.Tagging.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation RemoveTagsFromResource for usage and error information.

Returned Error Codes:

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

  • ErrCodeDBSnapshotNotFoundFault "DBSnapshotNotFound" DBSnapshotIdentifier doesn't refer to an existing DB snapshot.

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeDBProxyNotFoundFault "DBProxyNotFoundFault" The specified proxy name doesn't correspond to a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

  • ErrCodeDBProxyTargetGroupNotFoundFault "DBProxyTargetGroupNotFoundFault" The specified target group isn't available for a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

  • ErrCodeBlueGreenDeploymentNotFoundFault "BlueGreenDeploymentNotFoundFault" BlueGreenDeploymentIdentifier doesn't refer to an existing blue/green deployment.

  • ErrCodeIntegrationNotFoundFault "IntegrationNotFoundFault" The specified integration could not be found.

  • ErrCodeTenantDatabaseNotFoundFault "TenantDatabaseNotFound" The specified tenant database wasn't found in the DB instance.

  • ErrCodeDBSnapshotTenantDatabaseNotFoundFault "DBSnapshotTenantDatabaseNotFoundFault" The specified snapshot tenant database wasn't found.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RemoveTagsFromResource

Example (Shared00)

To remove tags from a resource The following example removes tags from a resource.

Code:

svc := rds.New(session.New())
input := &rds.RemoveTagsFromResourceInput{
    ResourceName: aws.String("arn:aws:rds:us-east-1:123456789012:db:mydbinstance"),
    TagKeys: []*string{
        aws.String("Name"),
        aws.String("Environment"),
    },
}

result, err := svc.RemoveTagsFromResource(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceNotFoundFault, aerr.Error())
        case rds.ErrCodeDBSnapshotNotFoundFault:
            fmt.Println(rds.ErrCodeDBSnapshotNotFoundFault, aerr.Error())
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeDBProxyNotFoundFault:
            fmt.Println(rds.ErrCodeDBProxyNotFoundFault, aerr.Error())
        case rds.ErrCodeDBProxyTargetGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBProxyTargetGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeBlueGreenDeploymentNotFoundFault:
            fmt.Println(rds.ErrCodeBlueGreenDeploymentNotFoundFault, aerr.Error())
        case rds.ErrCodeIntegrationNotFoundFault:
            fmt.Println(rds.ErrCodeIntegrationNotFoundFault, aerr.Error())
        case rds.ErrCodeTenantDatabaseNotFoundFault:
            fmt.Println(rds.ErrCodeTenantDatabaseNotFoundFault, aerr.Error())
        case rds.ErrCodeDBSnapshotTenantDatabaseNotFoundFault:
            fmt.Println(rds.ErrCodeDBSnapshotTenantDatabaseNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) RemoveTagsFromResourceRequest

func (c *RDS) RemoveTagsFromResourceRequest(input *RemoveTagsFromResourceInput) (req *request.Request, output *RemoveTagsFromResourceOutput)

RemoveTagsFromResourceRequest generates a "aws/request.Request" representing the client's request for the RemoveTagsFromResource operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See RemoveTagsFromResource for more information on using the RemoveTagsFromResource API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the RemoveTagsFromResourceRequest method.
req, resp := client.RemoveTagsFromResourceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RemoveTagsFromResource

func (*RDS) RemoveTagsFromResourceWithContext

func (c *RDS) RemoveTagsFromResourceWithContext(ctx aws.Context, input *RemoveTagsFromResourceInput, opts ...request.Option) (*RemoveTagsFromResourceOutput, error)

RemoveTagsFromResourceWithContext is the same as RemoveTagsFromResource with the addition of the ability to pass a context and additional request options.

See RemoveTagsFromResource for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) ResetDBClusterParameterGroup

func (c *RDS) ResetDBClusterParameterGroup(input *ResetDBClusterParameterGroupInput) (*DBClusterParameterGroupNameMessage, error)

ResetDBClusterParameterGroup API operation for Amazon Relational Database Service.

Modifies the parameters of a DB cluster parameter group to the default value. To reset specific parameters submit a list of the following: ParameterName and ApplyMethod. To reset the entire DB cluster parameter group, specify the DBClusterParameterGroupName and ResetAllParameters parameters.

When resetting the entire group, dynamic parameters are updated immediately and static parameters are set to pending-reboot to take effect on the next DB instance restart or RebootDBInstance request. You must call RebootDBInstance for every DB instance in your DB cluster that you want the updated static parameter to apply to.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html) in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation ResetDBClusterParameterGroup for usage and error information.

Returned Error Codes:

  • ErrCodeInvalidDBParameterGroupStateFault "InvalidDBParameterGroupState" The DB parameter group is in use or is in an invalid state. If you are attempting to delete the parameter group, you can't delete it when the parameter group is in this state.

  • ErrCodeDBParameterGroupNotFoundFault "DBParameterGroupNotFound" DBParameterGroupName doesn't refer to an existing DB parameter group.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ResetDBClusterParameterGroup

Example (Shared00)

To reset all parameters to their default values The following example resets all parameter values in a customer-created DB cluster parameter group to their default values.

Code:

svc := rds.New(session.New())
input := &rds.ResetDBClusterParameterGroupInput{
    DBClusterParameterGroupName: aws.String("mydbclpg"),
    ResetAllParameters:          aws.Bool(true),
}

result, err := svc.ResetDBClusterParameterGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeInvalidDBParameterGroupStateFault:
            fmt.Println(rds.ErrCodeInvalidDBParameterGroupStateFault, aerr.Error())
        case rds.ErrCodeDBParameterGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBParameterGroupNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) ResetDBClusterParameterGroupRequest

func (c *RDS) ResetDBClusterParameterGroupRequest(input *ResetDBClusterParameterGroupInput) (req *request.Request, output *DBClusterParameterGroupNameMessage)

ResetDBClusterParameterGroupRequest generates a "aws/request.Request" representing the client's request for the ResetDBClusterParameterGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ResetDBClusterParameterGroup for more information on using the ResetDBClusterParameterGroup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ResetDBClusterParameterGroupRequest method.
req, resp := client.ResetDBClusterParameterGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ResetDBClusterParameterGroup

func (*RDS) ResetDBClusterParameterGroupWithContext

func (c *RDS) ResetDBClusterParameterGroupWithContext(ctx aws.Context, input *ResetDBClusterParameterGroupInput, opts ...request.Option) (*DBClusterParameterGroupNameMessage, error)

ResetDBClusterParameterGroupWithContext is the same as ResetDBClusterParameterGroup with the addition of the ability to pass a context and additional request options.

See ResetDBClusterParameterGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) ResetDBParameterGroup

func (c *RDS) ResetDBParameterGroup(input *ResetDBParameterGroupInput) (*DBParameterGroupNameMessage, error)

ResetDBParameterGroup API operation for Amazon Relational Database Service.

Modifies the parameters of a DB parameter group to the engine/system default value. To reset specific parameters, provide a list of the following: ParameterName and ApplyMethod. To reset the entire DB parameter group, specify the DBParameterGroup name and ResetAllParameters parameters. When resetting the entire group, dynamic parameters are updated immediately and static parameters are set to pending-reboot to take effect on the next DB instance restart or RebootDBInstance request.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation ResetDBParameterGroup for usage and error information.

Returned Error Codes:

  • ErrCodeInvalidDBParameterGroupStateFault "InvalidDBParameterGroupState" The DB parameter group is in use or is in an invalid state. If you are attempting to delete the parameter group, you can't delete it when the parameter group is in this state.

  • ErrCodeDBParameterGroupNotFoundFault "DBParameterGroupNotFound" DBParameterGroupName doesn't refer to an existing DB parameter group.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ResetDBParameterGroup

Example (Shared00)

To reset all parameters to their default values The following example resets all parameter values in a customer-created DB parameter group to their default values.

Code:

svc := rds.New(session.New())
input := &rds.ResetDBParameterGroupInput{
    DBParameterGroupName: aws.String("mypg"),
    ResetAllParameters:   aws.Bool(true),
}

result, err := svc.ResetDBParameterGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeInvalidDBParameterGroupStateFault:
            fmt.Println(rds.ErrCodeInvalidDBParameterGroupStateFault, aerr.Error())
        case rds.ErrCodeDBParameterGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBParameterGroupNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) ResetDBParameterGroupRequest

func (c *RDS) ResetDBParameterGroupRequest(input *ResetDBParameterGroupInput) (req *request.Request, output *DBParameterGroupNameMessage)

ResetDBParameterGroupRequest generates a "aws/request.Request" representing the client's request for the ResetDBParameterGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ResetDBParameterGroup for more information on using the ResetDBParameterGroup API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ResetDBParameterGroupRequest method.
req, resp := client.ResetDBParameterGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ResetDBParameterGroup

func (*RDS) ResetDBParameterGroupWithContext

func (c *RDS) ResetDBParameterGroupWithContext(ctx aws.Context, input *ResetDBParameterGroupInput, opts ...request.Option) (*DBParameterGroupNameMessage, error)

ResetDBParameterGroupWithContext is the same as ResetDBParameterGroup with the addition of the ability to pass a context and additional request options.

See ResetDBParameterGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) RestoreDBClusterFromS3

func (c *RDS) RestoreDBClusterFromS3(input *RestoreDBClusterFromS3Input) (*RestoreDBClusterFromS3Output, error)

RestoreDBClusterFromS3 API operation for Amazon Relational Database Service.

Creates an Amazon Aurora DB cluster from MySQL data stored in an Amazon S3 bucket. Amazon RDS must be authorized to access the Amazon S3 bucket and the data must be created using the Percona XtraBackup utility as described in Migrating Data from MySQL by Using an Amazon S3 Bucket (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Migrating.ExtMySQL.html#AuroraMySQL.Migrating.ExtMySQL.S3) in the Amazon Aurora User Guide.

This operation only restores the DB cluster, not the DB instances for that DB cluster. You must invoke the CreateDBInstance operation to create DB instances for the restored DB cluster, specifying the identifier of the restored DB cluster in DBClusterIdentifier. You can create DB instances only after the RestoreDBClusterFromS3 operation has completed and the DB cluster is available.

For more information on Amazon Aurora, see What is Amazon Aurora? (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html) in the Amazon Aurora User Guide.

This operation only applies to Aurora DB clusters. The source DB engine must be MySQL.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation RestoreDBClusterFromS3 for usage and error information.

Returned Error Codes:

  • ErrCodeDBClusterAlreadyExistsFault "DBClusterAlreadyExistsFault" The user already has a DB cluster with the given identifier.

  • ErrCodeDBClusterQuotaExceededFault "DBClusterQuotaExceededFault" The user attempted to create a new DB cluster and the user has already reached the maximum allowed DB cluster quota.

  • ErrCodeStorageQuotaExceededFault "StorageQuotaExceeded" The request would result in the user exceeding the allowed amount of storage available across all DB instances.

  • ErrCodeDBSubnetGroupNotFoundFault "DBSubnetGroupNotFoundFault" DBSubnetGroupName doesn't refer to an existing DB subnet group.

  • ErrCodeInvalidVPCNetworkStateFault "InvalidVPCNetworkStateFault" The DB subnet group doesn't cover all Availability Zones after it's created because of users' change.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeInvalidDBSubnetGroupStateFault "InvalidDBSubnetGroupStateFault" The DB subnet group cannot be deleted because it's in use.

  • ErrCodeInvalidSubnet "InvalidSubnet" The requested subnet is invalid, or multiple subnets were requested that are not all in a common VPC.

  • ErrCodeInvalidS3BucketFault "InvalidS3BucketFault" The specified Amazon S3 bucket name can't be found or Amazon RDS isn't authorized to access the specified Amazon S3 bucket. Verify the SourceS3BucketName and S3IngestionRoleArn values and try again.

  • ErrCodeDBClusterParameterGroupNotFoundFault "DBClusterParameterGroupNotFound" DBClusterParameterGroupName doesn't refer to an existing DB cluster parameter group.

  • ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" An error occurred accessing an Amazon Web Services KMS key.

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeDomainNotFoundFault "DomainNotFoundFault" Domain doesn't refer to an existing Active Directory domain.

  • ErrCodeInsufficientStorageClusterCapacityFault "InsufficientStorageClusterCapacity" There is insufficient storage available for the current action. You might be able to resolve this error by updating your subnet group to use different Availability Zones that have more storage available.

  • ErrCodeStorageTypeNotSupportedFault "StorageTypeNotSupported" The specified StorageType can't be associated with the DB instance.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3

Example (Shared00)

To restore an Amazon Aurora DB cluster from Amazon S3 The following example restores an Amazon Aurora MySQL version 5.7-compatible DB cluster from a MySQL 5.7 DB backup file in Amazon S3.

Code:

svc := rds.New(session.New())
input := &rds.RestoreDBClusterFromS3Input{
    DBClusterIdentifier: aws.String("cluster-s3-restore"),
    Engine:              aws.String("aurora-mysql"),
    MasterUserPassword:  aws.String("mypassword"),
    MasterUsername:      aws.String("admin"),
    S3BucketName:        aws.String("mybucket"),
    S3IngestionRoleArn:  aws.String("arn:aws:iam::123456789012:role/service-role/TestBackup"),
    S3Prefix:            aws.String("test-backup"),
    SourceEngine:        aws.String("mysql"),
    SourceEngineVersion: aws.String("5.7.28"),
}

result, err := svc.RestoreDBClusterFromS3(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBClusterAlreadyExistsFault:
            fmt.Println(rds.ErrCodeDBClusterAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeDBClusterQuotaExceededFault:
            fmt.Println(rds.ErrCodeDBClusterQuotaExceededFault, aerr.Error())
        case rds.ErrCodeStorageQuotaExceededFault:
            fmt.Println(rds.ErrCodeStorageQuotaExceededFault, aerr.Error())
        case rds.ErrCodeDBSubnetGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBSubnetGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidVPCNetworkStateFault:
            fmt.Println(rds.ErrCodeInvalidVPCNetworkStateFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        case rds.ErrCodeInvalidDBSubnetGroupStateFault:
            fmt.Println(rds.ErrCodeInvalidDBSubnetGroupStateFault, aerr.Error())
        case rds.ErrCodeInvalidSubnet:
            fmt.Println(rds.ErrCodeInvalidSubnet, aerr.Error())
        case rds.ErrCodeInvalidS3BucketFault:
            fmt.Println(rds.ErrCodeInvalidS3BucketFault, aerr.Error())
        case rds.ErrCodeDBClusterParameterGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterParameterGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeKMSKeyNotAccessibleFault:
            fmt.Println(rds.ErrCodeKMSKeyNotAccessibleFault, aerr.Error())
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeDomainNotFoundFault:
            fmt.Println(rds.ErrCodeDomainNotFoundFault, aerr.Error())
        case rds.ErrCodeInsufficientStorageClusterCapacityFault:
            fmt.Println(rds.ErrCodeInsufficientStorageClusterCapacityFault, aerr.Error())
        case rds.ErrCodeStorageTypeNotSupportedFault:
            fmt.Println(rds.ErrCodeStorageTypeNotSupportedFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) RestoreDBClusterFromS3Request

func (c *RDS) RestoreDBClusterFromS3Request(input *RestoreDBClusterFromS3Input) (req *request.Request, output *RestoreDBClusterFromS3Output)

RestoreDBClusterFromS3Request generates a "aws/request.Request" representing the client's request for the RestoreDBClusterFromS3 operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See RestoreDBClusterFromS3 for more information on using the RestoreDBClusterFromS3 API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the RestoreDBClusterFromS3Request method.
req, resp := client.RestoreDBClusterFromS3Request(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3

func (*RDS) RestoreDBClusterFromS3WithContext

func (c *RDS) RestoreDBClusterFromS3WithContext(ctx aws.Context, input *RestoreDBClusterFromS3Input, opts ...request.Option) (*RestoreDBClusterFromS3Output, error)

RestoreDBClusterFromS3WithContext is the same as RestoreDBClusterFromS3 with the addition of the ability to pass a context and additional request options.

See RestoreDBClusterFromS3 for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) RestoreDBClusterFromSnapshot

func (c *RDS) RestoreDBClusterFromSnapshot(input *RestoreDBClusterFromSnapshotInput) (*RestoreDBClusterFromSnapshotOutput, error)

RestoreDBClusterFromSnapshot API operation for Amazon Relational Database Service.

Creates a new DB cluster from a DB snapshot or DB cluster snapshot.

The target DB cluster is created from the source snapshot with a default configuration. If you don't specify a security group, the new DB cluster is associated with the default security group.

This operation only restores the DB cluster, not the DB instances for that DB cluster. You must invoke the CreateDBInstance operation to create DB instances for the restored DB cluster, specifying the identifier of the restored DB cluster in DBClusterIdentifier. You can create DB instances only after the RestoreDBClusterFromSnapshot operation has completed and the DB cluster is available.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html) in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation RestoreDBClusterFromSnapshot for usage and error information.

Returned Error Codes:

  • ErrCodeDBClusterAlreadyExistsFault "DBClusterAlreadyExistsFault" The user already has a DB cluster with the given identifier.

  • ErrCodeDBClusterQuotaExceededFault "DBClusterQuotaExceededFault" The user attempted to create a new DB cluster and the user has already reached the maximum allowed DB cluster quota.

  • ErrCodeStorageQuotaExceededFault "StorageQuotaExceeded" The request would result in the user exceeding the allowed amount of storage available across all DB instances.

  • ErrCodeDBSubnetGroupNotFoundFault "DBSubnetGroupNotFoundFault" DBSubnetGroupName doesn't refer to an existing DB subnet group.

  • ErrCodeDBSnapshotNotFoundFault "DBSnapshotNotFound" DBSnapshotIdentifier doesn't refer to an existing DB snapshot.

  • ErrCodeDBClusterSnapshotNotFoundFault "DBClusterSnapshotNotFoundFault" DBClusterSnapshotIdentifier doesn't refer to an existing DB cluster snapshot.

  • ErrCodeInsufficientDBClusterCapacityFault "InsufficientDBClusterCapacityFault" The DB cluster doesn't have enough capacity for the current operation.

  • ErrCodeInsufficientStorageClusterCapacityFault "InsufficientStorageClusterCapacity" There is insufficient storage available for the current action. You might be able to resolve this error by updating your subnet group to use different Availability Zones that have more storage available.

  • ErrCodeInvalidDBSnapshotStateFault "InvalidDBSnapshotState" The state of the DB snapshot doesn't allow deletion.

  • ErrCodeInvalidDBClusterSnapshotStateFault "InvalidDBClusterSnapshotStateFault" The supplied value isn't a valid DB cluster snapshot state.

  • ErrCodeStorageQuotaExceededFault "StorageQuotaExceeded" The request would result in the user exceeding the allowed amount of storage available across all DB instances.

  • ErrCodeInvalidVPCNetworkStateFault "InvalidVPCNetworkStateFault" The DB subnet group doesn't cover all Availability Zones after it's created because of users' change.

  • ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs "DBSubnetGroupDoesNotCoverEnoughAZs" Subnets in the DB subnet group should cover at least two Availability Zones unless there is only one Availability Zone.

  • ErrCodeInvalidRestoreFault "InvalidRestoreFault" Cannot restore from VPC backup to non-VPC DB instance.

  • ErrCodeDBSubnetGroupNotFoundFault "DBSubnetGroupNotFoundFault" DBSubnetGroupName doesn't refer to an existing DB subnet group.

  • ErrCodeInvalidSubnet "InvalidSubnet" The requested subnet is invalid, or multiple subnets were requested that are not all in a common VPC.

  • ErrCodeOptionGroupNotFoundFault "OptionGroupNotFoundFault" The specified option group could not be found.

  • ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" An error occurred accessing an Amazon Web Services KMS key.

  • ErrCodeDomainNotFoundFault "DomainNotFoundFault" Domain doesn't refer to an existing Active Directory domain.

  • ErrCodeDBClusterParameterGroupNotFoundFault "DBClusterParameterGroupNotFound" DBClusterParameterGroupName doesn't refer to an existing DB cluster parameter group.

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

  • ErrCodeInsufficientDBInstanceCapacityFault "InsufficientDBInstanceCapacity" The specified DB instance class isn't available in the specified Availability Zone.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot

Example (Shared00)

To restore a DB cluster from a snapshot The following example restores an Aurora PostgreSQL DB cluster compatible with PostgreSQL version 10.7 from a DB cluster snapshot named test-instance-snapshot.

Code:

svc := rds.New(session.New())
input := &rds.RestoreDBClusterFromSnapshotInput{
    DBClusterIdentifier: aws.String("newdbcluster"),
    Engine:              aws.String("aurora-postgresql"),
    EngineVersion:       aws.String("10.7"),
    SnapshotIdentifier:  aws.String("test-instance-snapshot"),
}

result, err := svc.RestoreDBClusterFromSnapshot(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBClusterAlreadyExistsFault:
            fmt.Println(rds.ErrCodeDBClusterAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeDBClusterQuotaExceededFault:
            fmt.Println(rds.ErrCodeDBClusterQuotaExceededFault, aerr.Error())
        case rds.ErrCodeStorageQuotaExceededFault:
            fmt.Println(rds.ErrCodeStorageQuotaExceededFault, aerr.Error())
        case rds.ErrCodeDBSubnetGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBSubnetGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeDBSnapshotNotFoundFault:
            fmt.Println(rds.ErrCodeDBSnapshotNotFoundFault, aerr.Error())
        case rds.ErrCodeDBClusterSnapshotNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterSnapshotNotFoundFault, aerr.Error())
        case rds.ErrCodeInsufficientDBClusterCapacityFault:
            fmt.Println(rds.ErrCodeInsufficientDBClusterCapacityFault, aerr.Error())
        case rds.ErrCodeInsufficientStorageClusterCapacityFault:
            fmt.Println(rds.ErrCodeInsufficientStorageClusterCapacityFault, aerr.Error())
        case rds.ErrCodeInvalidDBSnapshotStateFault:
            fmt.Println(rds.ErrCodeInvalidDBSnapshotStateFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterSnapshotStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterSnapshotStateFault, aerr.Error())
        case rds.ErrCodeInvalidVPCNetworkStateFault:
            fmt.Println(rds.ErrCodeInvalidVPCNetworkStateFault, aerr.Error())
        case rds.ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs:
            fmt.Println(rds.ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs, aerr.Error())
        case rds.ErrCodeInvalidRestoreFault:
            fmt.Println(rds.ErrCodeInvalidRestoreFault, aerr.Error())
        case rds.ErrCodeInvalidSubnet:
            fmt.Println(rds.ErrCodeInvalidSubnet, aerr.Error())
        case rds.ErrCodeOptionGroupNotFoundFault:
            fmt.Println(rds.ErrCodeOptionGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeKMSKeyNotAccessibleFault:
            fmt.Println(rds.ErrCodeKMSKeyNotAccessibleFault, aerr.Error())
        case rds.ErrCodeDomainNotFoundFault:
            fmt.Println(rds.ErrCodeDomainNotFoundFault, aerr.Error())
        case rds.ErrCodeDBClusterParameterGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterParameterGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBInstanceStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceStateFault, aerr.Error())
        case rds.ErrCodeInsufficientDBInstanceCapacityFault:
            fmt.Println(rds.ErrCodeInsufficientDBInstanceCapacityFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) RestoreDBClusterFromSnapshotRequest

func (c *RDS) RestoreDBClusterFromSnapshotRequest(input *RestoreDBClusterFromSnapshotInput) (req *request.Request, output *RestoreDBClusterFromSnapshotOutput)

RestoreDBClusterFromSnapshotRequest generates a "aws/request.Request" representing the client's request for the RestoreDBClusterFromSnapshot operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See RestoreDBClusterFromSnapshot for more information on using the RestoreDBClusterFromSnapshot API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the RestoreDBClusterFromSnapshotRequest method.
req, resp := client.RestoreDBClusterFromSnapshotRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot

func (*RDS) RestoreDBClusterFromSnapshotWithContext

func (c *RDS) RestoreDBClusterFromSnapshotWithContext(ctx aws.Context, input *RestoreDBClusterFromSnapshotInput, opts ...request.Option) (*RestoreDBClusterFromSnapshotOutput, error)

RestoreDBClusterFromSnapshotWithContext is the same as RestoreDBClusterFromSnapshot with the addition of the ability to pass a context and additional request options.

See RestoreDBClusterFromSnapshot for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) RestoreDBClusterToPointInTime

func (c *RDS) RestoreDBClusterToPointInTime(input *RestoreDBClusterToPointInTimeInput) (*RestoreDBClusterToPointInTimeOutput, error)

RestoreDBClusterToPointInTime API operation for Amazon Relational Database Service.

Restores a DB cluster to an arbitrary point in time. Users can restore to any point in time before LatestRestorableTime for up to BackupRetentionPeriod days. The target DB cluster is created from the source DB cluster with the same configuration as the original DB cluster, except that the new DB cluster is created with the default DB security group.

For Aurora, this operation only restores the DB cluster, not the DB instances for that DB cluster. You must invoke the CreateDBInstance operation to create DB instances for the restored DB cluster, specifying the identifier of the restored DB cluster in DBClusterIdentifier. You can create DB instances only after the RestoreDBClusterToPointInTime operation has completed and the DB cluster is available.

For more information on Amazon Aurora DB clusters, see What is Amazon Aurora? (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html) in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation RestoreDBClusterToPointInTime for usage and error information.

Returned Error Codes:

  • ErrCodeDBClusterAlreadyExistsFault "DBClusterAlreadyExistsFault" The user already has a DB cluster with the given identifier.

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeDBClusterQuotaExceededFault "DBClusterQuotaExceededFault" The user attempted to create a new DB cluster and the user has already reached the maximum allowed DB cluster quota.

  • ErrCodeDBClusterSnapshotNotFoundFault "DBClusterSnapshotNotFoundFault" DBClusterSnapshotIdentifier doesn't refer to an existing DB cluster snapshot.

  • ErrCodeDBSubnetGroupNotFoundFault "DBSubnetGroupNotFoundFault" DBSubnetGroupName doesn't refer to an existing DB subnet group.

  • ErrCodeInsufficientDBClusterCapacityFault "InsufficientDBClusterCapacityFault" The DB cluster doesn't have enough capacity for the current operation.

  • ErrCodeInsufficientStorageClusterCapacityFault "InsufficientStorageClusterCapacity" There is insufficient storage available for the current action. You might be able to resolve this error by updating your subnet group to use different Availability Zones that have more storage available.

  • ErrCodeInvalidDBClusterSnapshotStateFault "InvalidDBClusterSnapshotStateFault" The supplied value isn't a valid DB cluster snapshot state.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeInvalidDBSnapshotStateFault "InvalidDBSnapshotState" The state of the DB snapshot doesn't allow deletion.

  • ErrCodeInvalidRestoreFault "InvalidRestoreFault" Cannot restore from VPC backup to non-VPC DB instance.

  • ErrCodeInvalidSubnet "InvalidSubnet" The requested subnet is invalid, or multiple subnets were requested that are not all in a common VPC.

  • ErrCodeInvalidVPCNetworkStateFault "InvalidVPCNetworkStateFault" The DB subnet group doesn't cover all Availability Zones after it's created because of users' change.

  • ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" An error occurred accessing an Amazon Web Services KMS key.

  • ErrCodeOptionGroupNotFoundFault "OptionGroupNotFoundFault" The specified option group could not be found.

  • ErrCodeStorageQuotaExceededFault "StorageQuotaExceeded" The request would result in the user exceeding the allowed amount of storage available across all DB instances.

  • ErrCodeDomainNotFoundFault "DomainNotFoundFault" Domain doesn't refer to an existing Active Directory domain.

  • ErrCodeDBClusterParameterGroupNotFoundFault "DBClusterParameterGroupNotFound" DBClusterParameterGroupName doesn't refer to an existing DB cluster parameter group.

  • ErrCodeDBClusterAutomatedBackupNotFoundFault "DBClusterAutomatedBackupNotFoundFault" No automated backup for this DB cluster was found.

  • ErrCodeInsufficientDBInstanceCapacityFault "InsufficientDBInstanceCapacity" The specified DB instance class isn't available in the specified Availability Zone.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime

Example (Shared00)

To restore a DB cluster to a specified time The following example restores the DB cluster named database-4 to the latest possible time. Using copy-on-write as the restore type restores the new DB cluster as a clone of the source DB cluster.

Code:

svc := rds.New(session.New())
input := &rds.RestoreDBClusterToPointInTimeInput{
    DBClusterIdentifier:       aws.String("sample-cluster-clone"),
    RestoreType:               aws.String("copy-on-write"),
    SourceDBClusterIdentifier: aws.String("database-4"),
    UseLatestRestorableTime:   aws.Bool(true),
}

result, err := svc.RestoreDBClusterToPointInTime(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBClusterAlreadyExistsFault:
            fmt.Println(rds.ErrCodeDBClusterAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeDBClusterQuotaExceededFault:
            fmt.Println(rds.ErrCodeDBClusterQuotaExceededFault, aerr.Error())
        case rds.ErrCodeDBClusterSnapshotNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterSnapshotNotFoundFault, aerr.Error())
        case rds.ErrCodeDBSubnetGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBSubnetGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeInsufficientDBClusterCapacityFault:
            fmt.Println(rds.ErrCodeInsufficientDBClusterCapacityFault, aerr.Error())
        case rds.ErrCodeInsufficientStorageClusterCapacityFault:
            fmt.Println(rds.ErrCodeInsufficientStorageClusterCapacityFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterSnapshotStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterSnapshotStateFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        case rds.ErrCodeInvalidDBSnapshotStateFault:
            fmt.Println(rds.ErrCodeInvalidDBSnapshotStateFault, aerr.Error())
        case rds.ErrCodeInvalidRestoreFault:
            fmt.Println(rds.ErrCodeInvalidRestoreFault, aerr.Error())
        case rds.ErrCodeInvalidSubnet:
            fmt.Println(rds.ErrCodeInvalidSubnet, aerr.Error())
        case rds.ErrCodeInvalidVPCNetworkStateFault:
            fmt.Println(rds.ErrCodeInvalidVPCNetworkStateFault, aerr.Error())
        case rds.ErrCodeKMSKeyNotAccessibleFault:
            fmt.Println(rds.ErrCodeKMSKeyNotAccessibleFault, aerr.Error())
        case rds.ErrCodeOptionGroupNotFoundFault:
            fmt.Println(rds.ErrCodeOptionGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeStorageQuotaExceededFault:
            fmt.Println(rds.ErrCodeStorageQuotaExceededFault, aerr.Error())
        case rds.ErrCodeDomainNotFoundFault:
            fmt.Println(rds.ErrCodeDomainNotFoundFault, aerr.Error())
        case rds.ErrCodeDBClusterParameterGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterParameterGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeDBClusterAutomatedBackupNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterAutomatedBackupNotFoundFault, aerr.Error())
        case rds.ErrCodeInsufficientDBInstanceCapacityFault:
            fmt.Println(rds.ErrCodeInsufficientDBInstanceCapacityFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) RestoreDBClusterToPointInTimeRequest

func (c *RDS) RestoreDBClusterToPointInTimeRequest(input *RestoreDBClusterToPointInTimeInput) (req *request.Request, output *RestoreDBClusterToPointInTimeOutput)

RestoreDBClusterToPointInTimeRequest generates a "aws/request.Request" representing the client's request for the RestoreDBClusterToPointInTime operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See RestoreDBClusterToPointInTime for more information on using the RestoreDBClusterToPointInTime API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the RestoreDBClusterToPointInTimeRequest method.
req, resp := client.RestoreDBClusterToPointInTimeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime

func (*RDS) RestoreDBClusterToPointInTimeWithContext

func (c *RDS) RestoreDBClusterToPointInTimeWithContext(ctx aws.Context, input *RestoreDBClusterToPointInTimeInput, opts ...request.Option) (*RestoreDBClusterToPointInTimeOutput, error)

RestoreDBClusterToPointInTimeWithContext is the same as RestoreDBClusterToPointInTime with the addition of the ability to pass a context and additional request options.

See RestoreDBClusterToPointInTime for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) RestoreDBInstanceFromDBSnapshot

func (c *RDS) RestoreDBInstanceFromDBSnapshot(input *RestoreDBInstanceFromDBSnapshotInput) (*RestoreDBInstanceFromDBSnapshotOutput, error)

RestoreDBInstanceFromDBSnapshot API operation for Amazon Relational Database Service.

Creates a new DB instance from a DB snapshot. The target database is created from the source database restore point with most of the source's original configuration, including the default security group and DB parameter group. By default, the new DB instance is created as a Single-AZ deployment, except when the instance is a SQL Server instance that has an option group associated with mirroring. In this case, the instance becomes a Multi-AZ deployment, not a Single-AZ deployment.

If you want to replace your original DB instance with the new, restored DB instance, then rename your original DB instance before you call the RestoreDBInstanceFromDBSnapshot operation. RDS doesn't allow two DB instances with the same name. After you have renamed your original DB instance with a different identifier, then you can pass the original name of the DB instance as the DBInstanceIdentifier in the call to the RestoreDBInstanceFromDBSnapshot operation. The result is that you replace the original DB instance with the DB instance created from the snapshot.

If you are restoring from a shared manual DB snapshot, the DBSnapshotIdentifier must be the ARN of the shared DB snapshot.

This command doesn't apply to Aurora MySQL and Aurora PostgreSQL. For Aurora, use RestoreDBClusterFromSnapshot.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation RestoreDBInstanceFromDBSnapshot for usage and error information.

Returned Error Codes:

  • ErrCodeDBInstanceAlreadyExistsFault "DBInstanceAlreadyExists" The user already has a DB instance with the given identifier.

  • ErrCodeDBSnapshotNotFoundFault "DBSnapshotNotFound" DBSnapshotIdentifier doesn't refer to an existing DB snapshot.

  • ErrCodeInstanceQuotaExceededFault "InstanceQuotaExceeded" The request would result in the user exceeding the allowed number of DB instances.

  • ErrCodeInsufficientDBInstanceCapacityFault "InsufficientDBInstanceCapacity" The specified DB instance class isn't available in the specified Availability Zone.

  • ErrCodeInvalidDBSnapshotStateFault "InvalidDBSnapshotState" The state of the DB snapshot doesn't allow deletion.

  • ErrCodeStorageQuotaExceededFault "StorageQuotaExceeded" The request would result in the user exceeding the allowed amount of storage available across all DB instances.

  • ErrCodeInvalidVPCNetworkStateFault "InvalidVPCNetworkStateFault" The DB subnet group doesn't cover all Availability Zones after it's created because of users' change.

  • ErrCodeInvalidRestoreFault "InvalidRestoreFault" Cannot restore from VPC backup to non-VPC DB instance.

  • ErrCodeDBSubnetGroupNotFoundFault "DBSubnetGroupNotFoundFault" DBSubnetGroupName doesn't refer to an existing DB subnet group.

  • ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs "DBSubnetGroupDoesNotCoverEnoughAZs" Subnets in the DB subnet group should cover at least two Availability Zones unless there is only one Availability Zone.

  • ErrCodeInvalidSubnet "InvalidSubnet" The requested subnet is invalid, or multiple subnets were requested that are not all in a common VPC.

  • ErrCodeProvisionedIopsNotAvailableInAZFault "ProvisionedIopsNotAvailableInAZFault" Provisioned IOPS not available in the specified Availability Zone.

  • ErrCodeOptionGroupNotFoundFault "OptionGroupNotFoundFault" The specified option group could not be found.

  • ErrCodeStorageTypeNotSupportedFault "StorageTypeNotSupported" The specified StorageType can't be associated with the DB instance.

  • ErrCodeAuthorizationNotFoundFault "AuthorizationNotFound" The specified CIDR IP range or Amazon EC2 security group might not be authorized for the specified DB security group.

    Or, RDS might not be authorized to perform necessary actions using IAM on your behalf.

  • ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" An error occurred accessing an Amazon Web Services KMS key.

  • ErrCodeDBSecurityGroupNotFoundFault "DBSecurityGroupNotFound" DBSecurityGroupName doesn't refer to an existing DB security group.

  • ErrCodeDomainNotFoundFault "DomainNotFoundFault" Domain doesn't refer to an existing Active Directory domain.

  • ErrCodeDBParameterGroupNotFoundFault "DBParameterGroupNotFound" DBParameterGroupName doesn't refer to an existing DB parameter group.

  • ErrCodeBackupPolicyNotFoundFault "BackupPolicyNotFoundFault"

  • ErrCodeNetworkTypeNotSupported "NetworkTypeNotSupported" The network type is invalid for the DB instance. Valid nework type values are IPV4 and DUAL.

  • ErrCodeDBClusterSnapshotNotFoundFault "DBClusterSnapshotNotFoundFault" DBClusterSnapshotIdentifier doesn't refer to an existing DB cluster snapshot.

  • ErrCodeTenantDatabaseQuotaExceededFault "TenantDatabaseQuotaExceeded" You attempted to create more tenant databases than are permitted in your Amazon Web Services account.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot

Example (Shared00)

To restore a DB instance from a DB snapshot The following example creates a new DB instance named db7-new-instance with the db.t3.small DB instance class from the specified DB snapshot. The source DB instance from which the snapshot was taken uses a deprecated DB instance class, so you can't upgrade it.

Code:

svc := rds.New(session.New())
input := &rds.RestoreDBInstanceFromDBSnapshotInput{
    DBInstanceClass:      aws.String("db.t3.small"),
    DBInstanceIdentifier: aws.String("db7-new-instance"),
    DBSnapshotIdentifier: aws.String("db7-test-snapshot"),
}

result, err := svc.RestoreDBInstanceFromDBSnapshot(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBInstanceAlreadyExistsFault:
            fmt.Println(rds.ErrCodeDBInstanceAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeDBSnapshotNotFoundFault:
            fmt.Println(rds.ErrCodeDBSnapshotNotFoundFault, aerr.Error())
        case rds.ErrCodeInstanceQuotaExceededFault:
            fmt.Println(rds.ErrCodeInstanceQuotaExceededFault, aerr.Error())
        case rds.ErrCodeInsufficientDBInstanceCapacityFault:
            fmt.Println(rds.ErrCodeInsufficientDBInstanceCapacityFault, aerr.Error())
        case rds.ErrCodeInvalidDBSnapshotStateFault:
            fmt.Println(rds.ErrCodeInvalidDBSnapshotStateFault, aerr.Error())
        case rds.ErrCodeStorageQuotaExceededFault:
            fmt.Println(rds.ErrCodeStorageQuotaExceededFault, aerr.Error())
        case rds.ErrCodeInvalidVPCNetworkStateFault:
            fmt.Println(rds.ErrCodeInvalidVPCNetworkStateFault, aerr.Error())
        case rds.ErrCodeInvalidRestoreFault:
            fmt.Println(rds.ErrCodeInvalidRestoreFault, aerr.Error())
        case rds.ErrCodeDBSubnetGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBSubnetGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs:
            fmt.Println(rds.ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs, aerr.Error())
        case rds.ErrCodeInvalidSubnet:
            fmt.Println(rds.ErrCodeInvalidSubnet, aerr.Error())
        case rds.ErrCodeProvisionedIopsNotAvailableInAZFault:
            fmt.Println(rds.ErrCodeProvisionedIopsNotAvailableInAZFault, aerr.Error())
        case rds.ErrCodeOptionGroupNotFoundFault:
            fmt.Println(rds.ErrCodeOptionGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeStorageTypeNotSupportedFault:
            fmt.Println(rds.ErrCodeStorageTypeNotSupportedFault, aerr.Error())
        case rds.ErrCodeAuthorizationNotFoundFault:
            fmt.Println(rds.ErrCodeAuthorizationNotFoundFault, aerr.Error())
        case rds.ErrCodeKMSKeyNotAccessibleFault:
            fmt.Println(rds.ErrCodeKMSKeyNotAccessibleFault, aerr.Error())
        case rds.ErrCodeDBSecurityGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBSecurityGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeDomainNotFoundFault:
            fmt.Println(rds.ErrCodeDomainNotFoundFault, aerr.Error())
        case rds.ErrCodeDBParameterGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBParameterGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeBackupPolicyNotFoundFault:
            fmt.Println(rds.ErrCodeBackupPolicyNotFoundFault, aerr.Error())
        case rds.ErrCodeNetworkTypeNotSupported:
            fmt.Println(rds.ErrCodeNetworkTypeNotSupported, aerr.Error())
        case rds.ErrCodeDBClusterSnapshotNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterSnapshotNotFoundFault, aerr.Error())
        case rds.ErrCodeTenantDatabaseQuotaExceededFault:
            fmt.Println(rds.ErrCodeTenantDatabaseQuotaExceededFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) RestoreDBInstanceFromDBSnapshotRequest

func (c *RDS) RestoreDBInstanceFromDBSnapshotRequest(input *RestoreDBInstanceFromDBSnapshotInput) (req *request.Request, output *RestoreDBInstanceFromDBSnapshotOutput)

RestoreDBInstanceFromDBSnapshotRequest generates a "aws/request.Request" representing the client's request for the RestoreDBInstanceFromDBSnapshot operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See RestoreDBInstanceFromDBSnapshot for more information on using the RestoreDBInstanceFromDBSnapshot API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the RestoreDBInstanceFromDBSnapshotRequest method.
req, resp := client.RestoreDBInstanceFromDBSnapshotRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot

func (*RDS) RestoreDBInstanceFromDBSnapshotWithContext

func (c *RDS) RestoreDBInstanceFromDBSnapshotWithContext(ctx aws.Context, input *RestoreDBInstanceFromDBSnapshotInput, opts ...request.Option) (*RestoreDBInstanceFromDBSnapshotOutput, error)

RestoreDBInstanceFromDBSnapshotWithContext is the same as RestoreDBInstanceFromDBSnapshot with the addition of the ability to pass a context and additional request options.

See RestoreDBInstanceFromDBSnapshot for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) RestoreDBInstanceFromS3

func (c *RDS) RestoreDBInstanceFromS3(input *RestoreDBInstanceFromS3Input) (*RestoreDBInstanceFromS3Output, error)

RestoreDBInstanceFromS3 API operation for Amazon Relational Database Service.

Amazon Relational Database Service (Amazon RDS) supports importing MySQL databases by using backup files. You can create a backup of your on-premises database, store it on Amazon Simple Storage Service (Amazon S3), and then restore the backup file onto a new Amazon RDS DB instance running MySQL. For more information, see Importing Data into an Amazon RDS MySQL DB Instance (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/MySQL.Procedural.Importing.html) in the Amazon RDS User Guide.

This operation doesn't apply to RDS Custom.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation RestoreDBInstanceFromS3 for usage and error information.

Returned Error Codes:

  • ErrCodeDBInstanceAlreadyExistsFault "DBInstanceAlreadyExists" The user already has a DB instance with the given identifier.

  • ErrCodeInsufficientDBInstanceCapacityFault "InsufficientDBInstanceCapacity" The specified DB instance class isn't available in the specified Availability Zone.

  • ErrCodeDBParameterGroupNotFoundFault "DBParameterGroupNotFound" DBParameterGroupName doesn't refer to an existing DB parameter group.

  • ErrCodeDBSecurityGroupNotFoundFault "DBSecurityGroupNotFound" DBSecurityGroupName doesn't refer to an existing DB security group.

  • ErrCodeInstanceQuotaExceededFault "InstanceQuotaExceeded" The request would result in the user exceeding the allowed number of DB instances.

  • ErrCodeStorageQuotaExceededFault "StorageQuotaExceeded" The request would result in the user exceeding the allowed amount of storage available across all DB instances.

  • ErrCodeDBSubnetGroupNotFoundFault "DBSubnetGroupNotFoundFault" DBSubnetGroupName doesn't refer to an existing DB subnet group.

  • ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs "DBSubnetGroupDoesNotCoverEnoughAZs" Subnets in the DB subnet group should cover at least two Availability Zones unless there is only one Availability Zone.

  • ErrCodeInvalidSubnet "InvalidSubnet" The requested subnet is invalid, or multiple subnets were requested that are not all in a common VPC.

  • ErrCodeInvalidVPCNetworkStateFault "InvalidVPCNetworkStateFault" The DB subnet group doesn't cover all Availability Zones after it's created because of users' change.

  • ErrCodeInvalidS3BucketFault "InvalidS3BucketFault" The specified Amazon S3 bucket name can't be found or Amazon RDS isn't authorized to access the specified Amazon S3 bucket. Verify the SourceS3BucketName and S3IngestionRoleArn values and try again.

  • ErrCodeProvisionedIopsNotAvailableInAZFault "ProvisionedIopsNotAvailableInAZFault" Provisioned IOPS not available in the specified Availability Zone.

  • ErrCodeOptionGroupNotFoundFault "OptionGroupNotFoundFault" The specified option group could not be found.

  • ErrCodeStorageTypeNotSupportedFault "StorageTypeNotSupported" The specified StorageType can't be associated with the DB instance.

  • ErrCodeAuthorizationNotFoundFault "AuthorizationNotFound" The specified CIDR IP range or Amazon EC2 security group might not be authorized for the specified DB security group.

    Or, RDS might not be authorized to perform necessary actions using IAM on your behalf.

  • ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" An error occurred accessing an Amazon Web Services KMS key.

  • ErrCodeBackupPolicyNotFoundFault "BackupPolicyNotFoundFault"

  • ErrCodeNetworkTypeNotSupported "NetworkTypeNotSupported" The network type is invalid for the DB instance. Valid nework type values are IPV4 and DUAL.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3

func (*RDS) RestoreDBInstanceFromS3Request

func (c *RDS) RestoreDBInstanceFromS3Request(input *RestoreDBInstanceFromS3Input) (req *request.Request, output *RestoreDBInstanceFromS3Output)

RestoreDBInstanceFromS3Request generates a "aws/request.Request" representing the client's request for the RestoreDBInstanceFromS3 operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See RestoreDBInstanceFromS3 for more information on using the RestoreDBInstanceFromS3 API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the RestoreDBInstanceFromS3Request method.
req, resp := client.RestoreDBInstanceFromS3Request(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3

func (*RDS) RestoreDBInstanceFromS3WithContext

func (c *RDS) RestoreDBInstanceFromS3WithContext(ctx aws.Context, input *RestoreDBInstanceFromS3Input, opts ...request.Option) (*RestoreDBInstanceFromS3Output, error)

RestoreDBInstanceFromS3WithContext is the same as RestoreDBInstanceFromS3 with the addition of the ability to pass a context and additional request options.

See RestoreDBInstanceFromS3 for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) RestoreDBInstanceToPointInTime

func (c *RDS) RestoreDBInstanceToPointInTime(input *RestoreDBInstanceToPointInTimeInput) (*RestoreDBInstanceToPointInTimeOutput, error)

RestoreDBInstanceToPointInTime API operation for Amazon Relational Database Service.

Restores a DB instance to an arbitrary point in time. You can restore to any point in time before the time identified by the LatestRestorableTime property. You can restore to a point up to the number of days specified by the BackupRetentionPeriod property.

The target database is created with most of the original configuration, but in a system-selected Availability Zone, with the default security group, the default subnet group, and the default DB parameter group. By default, the new DB instance is created as a single-AZ deployment except when the instance is a SQL Server instance that has an option group that is associated with mirroring; in this case, the instance becomes a mirrored deployment and not a single-AZ deployment.

This operation doesn't apply to Aurora MySQL and Aurora PostgreSQL. For Aurora, use RestoreDBClusterToPointInTime.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation RestoreDBInstanceToPointInTime for usage and error information.

Returned Error Codes:

  • ErrCodeDBInstanceAlreadyExistsFault "DBInstanceAlreadyExists" The user already has a DB instance with the given identifier.

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

  • ErrCodeInstanceQuotaExceededFault "InstanceQuotaExceeded" The request would result in the user exceeding the allowed number of DB instances.

  • ErrCodeInsufficientDBInstanceCapacityFault "InsufficientDBInstanceCapacity" The specified DB instance class isn't available in the specified Availability Zone.

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

  • ErrCodePointInTimeRestoreNotEnabledFault "PointInTimeRestoreNotEnabled" SourceDBInstanceIdentifier refers to a DB instance with BackupRetentionPeriod equal to 0.

  • ErrCodeStorageQuotaExceededFault "StorageQuotaExceeded" The request would result in the user exceeding the allowed amount of storage available across all DB instances.

  • ErrCodeInvalidVPCNetworkStateFault "InvalidVPCNetworkStateFault" The DB subnet group doesn't cover all Availability Zones after it's created because of users' change.

  • ErrCodeInvalidRestoreFault "InvalidRestoreFault" Cannot restore from VPC backup to non-VPC DB instance.

  • ErrCodeDBSubnetGroupNotFoundFault "DBSubnetGroupNotFoundFault" DBSubnetGroupName doesn't refer to an existing DB subnet group.

  • ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs "DBSubnetGroupDoesNotCoverEnoughAZs" Subnets in the DB subnet group should cover at least two Availability Zones unless there is only one Availability Zone.

  • ErrCodeInvalidSubnet "InvalidSubnet" The requested subnet is invalid, or multiple subnets were requested that are not all in a common VPC.

  • ErrCodeProvisionedIopsNotAvailableInAZFault "ProvisionedIopsNotAvailableInAZFault" Provisioned IOPS not available in the specified Availability Zone.

  • ErrCodeOptionGroupNotFoundFault "OptionGroupNotFoundFault" The specified option group could not be found.

  • ErrCodeStorageTypeNotSupportedFault "StorageTypeNotSupported" The specified StorageType can't be associated with the DB instance.

  • ErrCodeAuthorizationNotFoundFault "AuthorizationNotFound" The specified CIDR IP range or Amazon EC2 security group might not be authorized for the specified DB security group.

    Or, RDS might not be authorized to perform necessary actions using IAM on your behalf.

  • ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" An error occurred accessing an Amazon Web Services KMS key.

  • ErrCodeDBSecurityGroupNotFoundFault "DBSecurityGroupNotFound" DBSecurityGroupName doesn't refer to an existing DB security group.

  • ErrCodeDomainNotFoundFault "DomainNotFoundFault" Domain doesn't refer to an existing Active Directory domain.

  • ErrCodeBackupPolicyNotFoundFault "BackupPolicyNotFoundFault"

  • ErrCodeDBParameterGroupNotFoundFault "DBParameterGroupNotFound" DBParameterGroupName doesn't refer to an existing DB parameter group.

  • ErrCodeDBInstanceAutomatedBackupNotFoundFault "DBInstanceAutomatedBackupNotFound" No automated backup for this DB instance was found.

  • ErrCodeNetworkTypeNotSupported "NetworkTypeNotSupported" The network type is invalid for the DB instance. Valid nework type values are IPV4 and DUAL.

  • ErrCodeTenantDatabaseQuotaExceededFault "TenantDatabaseQuotaExceeded" You attempted to create more tenant databases than are permitted in your Amazon Web Services account.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime

Example (Shared00)

To restore a DB instance to a point in time The following example restores test-instance to a new DB instance named restored-test-instance, as of the specified time.

Code:

svc := rds.New(session.New())
input := &rds.RestoreDBInstanceToPointInTimeInput{
    RestoreTime:                parseTime("2006-01-02T15:04:05.999999999Z", "2018-07-30T23:45:00.000Z"),
    SourceDBInstanceIdentifier: aws.String("test-instance"),
    TargetDBInstanceIdentifier: aws.String("restored-test-instance"),
}

result, err := svc.RestoreDBInstanceToPointInTime(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBInstanceAlreadyExistsFault:
            fmt.Println(rds.ErrCodeDBInstanceAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceNotFoundFault, aerr.Error())
        case rds.ErrCodeInstanceQuotaExceededFault:
            fmt.Println(rds.ErrCodeInstanceQuotaExceededFault, aerr.Error())
        case rds.ErrCodeInsufficientDBInstanceCapacityFault:
            fmt.Println(rds.ErrCodeInsufficientDBInstanceCapacityFault, aerr.Error())
        case rds.ErrCodeInvalidDBInstanceStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceStateFault, aerr.Error())
        case rds.ErrCodePointInTimeRestoreNotEnabledFault:
            fmt.Println(rds.ErrCodePointInTimeRestoreNotEnabledFault, aerr.Error())
        case rds.ErrCodeStorageQuotaExceededFault:
            fmt.Println(rds.ErrCodeStorageQuotaExceededFault, aerr.Error())
        case rds.ErrCodeInvalidVPCNetworkStateFault:
            fmt.Println(rds.ErrCodeInvalidVPCNetworkStateFault, aerr.Error())
        case rds.ErrCodeInvalidRestoreFault:
            fmt.Println(rds.ErrCodeInvalidRestoreFault, aerr.Error())
        case rds.ErrCodeDBSubnetGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBSubnetGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs:
            fmt.Println(rds.ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs, aerr.Error())
        case rds.ErrCodeInvalidSubnet:
            fmt.Println(rds.ErrCodeInvalidSubnet, aerr.Error())
        case rds.ErrCodeProvisionedIopsNotAvailableInAZFault:
            fmt.Println(rds.ErrCodeProvisionedIopsNotAvailableInAZFault, aerr.Error())
        case rds.ErrCodeOptionGroupNotFoundFault:
            fmt.Println(rds.ErrCodeOptionGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeStorageTypeNotSupportedFault:
            fmt.Println(rds.ErrCodeStorageTypeNotSupportedFault, aerr.Error())
        case rds.ErrCodeAuthorizationNotFoundFault:
            fmt.Println(rds.ErrCodeAuthorizationNotFoundFault, aerr.Error())
        case rds.ErrCodeKMSKeyNotAccessibleFault:
            fmt.Println(rds.ErrCodeKMSKeyNotAccessibleFault, aerr.Error())
        case rds.ErrCodeDBSecurityGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBSecurityGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeDomainNotFoundFault:
            fmt.Println(rds.ErrCodeDomainNotFoundFault, aerr.Error())
        case rds.ErrCodeBackupPolicyNotFoundFault:
            fmt.Println(rds.ErrCodeBackupPolicyNotFoundFault, aerr.Error())
        case rds.ErrCodeDBParameterGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBParameterGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeDBInstanceAutomatedBackupNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceAutomatedBackupNotFoundFault, aerr.Error())
        case rds.ErrCodeNetworkTypeNotSupported:
            fmt.Println(rds.ErrCodeNetworkTypeNotSupported, aerr.Error())
        case rds.ErrCodeTenantDatabaseQuotaExceededFault:
            fmt.Println(rds.ErrCodeTenantDatabaseQuotaExceededFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) RestoreDBInstanceToPointInTimeRequest

func (c *RDS) RestoreDBInstanceToPointInTimeRequest(input *RestoreDBInstanceToPointInTimeInput) (req *request.Request, output *RestoreDBInstanceToPointInTimeOutput)

RestoreDBInstanceToPointInTimeRequest generates a "aws/request.Request" representing the client's request for the RestoreDBInstanceToPointInTime operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See RestoreDBInstanceToPointInTime for more information on using the RestoreDBInstanceToPointInTime API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the RestoreDBInstanceToPointInTimeRequest method.
req, resp := client.RestoreDBInstanceToPointInTimeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime

func (*RDS) RestoreDBInstanceToPointInTimeWithContext

func (c *RDS) RestoreDBInstanceToPointInTimeWithContext(ctx aws.Context, input *RestoreDBInstanceToPointInTimeInput, opts ...request.Option) (*RestoreDBInstanceToPointInTimeOutput, error)

RestoreDBInstanceToPointInTimeWithContext is the same as RestoreDBInstanceToPointInTime with the addition of the ability to pass a context and additional request options.

See RestoreDBInstanceToPointInTime for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) RevokeDBSecurityGroupIngress

func (c *RDS) RevokeDBSecurityGroupIngress(input *RevokeDBSecurityGroupIngressInput) (*RevokeDBSecurityGroupIngressOutput, error)

RevokeDBSecurityGroupIngress API operation for Amazon Relational Database Service.

Revokes ingress from a DBSecurityGroup for previously authorized IP ranges or EC2 or VPC security groups. Required parameters for this API are one of CIDRIP, EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId).

EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that you migrate as soon as possible. For more information, see Migrate from EC2-Classic to a VPC (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html) in the Amazon EC2 User Guide, the blog EC2-Classic Networking is Retiring – Here’s How to Prepare (http://aws.amazon.com/blogs/aws/ec2-classic-is-retiring-heres-how-to-prepare/), and Moving a DB instance not in a VPC into a VPC (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.Non-VPC2VPC.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation RevokeDBSecurityGroupIngress for usage and error information.

Returned Error Codes:

  • ErrCodeDBSecurityGroupNotFoundFault "DBSecurityGroupNotFound" DBSecurityGroupName doesn't refer to an existing DB security group.

  • ErrCodeAuthorizationNotFoundFault "AuthorizationNotFound" The specified CIDR IP range or Amazon EC2 security group might not be authorized for the specified DB security group.

    Or, RDS might not be authorized to perform necessary actions using IAM on your behalf.

  • ErrCodeInvalidDBSecurityGroupStateFault "InvalidDBSecurityGroupState" The state of the DB security group doesn't allow deletion.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RevokeDBSecurityGroupIngress

Example (Shared00)

To revoke ingress for a DB security group This example revokes ingress for the specified CIDR block associated with the specified DB security group.

Code:

svc := rds.New(session.New())
input := &rds.RevokeDBSecurityGroupIngressInput{
    CIDRIP:              aws.String("203.0.113.5/32"),
    DBSecurityGroupName: aws.String("mydbsecuritygroup"),
}

result, err := svc.RevokeDBSecurityGroupIngress(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBSecurityGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBSecurityGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeAuthorizationNotFoundFault:
            fmt.Println(rds.ErrCodeAuthorizationNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBSecurityGroupStateFault:
            fmt.Println(rds.ErrCodeInvalidDBSecurityGroupStateFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) RevokeDBSecurityGroupIngressRequest

func (c *RDS) RevokeDBSecurityGroupIngressRequest(input *RevokeDBSecurityGroupIngressInput) (req *request.Request, output *RevokeDBSecurityGroupIngressOutput)

RevokeDBSecurityGroupIngressRequest generates a "aws/request.Request" representing the client's request for the RevokeDBSecurityGroupIngress operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See RevokeDBSecurityGroupIngress for more information on using the RevokeDBSecurityGroupIngress API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the RevokeDBSecurityGroupIngressRequest method.
req, resp := client.RevokeDBSecurityGroupIngressRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RevokeDBSecurityGroupIngress

func (*RDS) RevokeDBSecurityGroupIngressWithContext

func (c *RDS) RevokeDBSecurityGroupIngressWithContext(ctx aws.Context, input *RevokeDBSecurityGroupIngressInput, opts ...request.Option) (*RevokeDBSecurityGroupIngressOutput, error)

RevokeDBSecurityGroupIngressWithContext is the same as RevokeDBSecurityGroupIngress with the addition of the ability to pass a context and additional request options.

See RevokeDBSecurityGroupIngress for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) StartActivityStream

func (c *RDS) StartActivityStream(input *StartActivityStreamInput) (*StartActivityStreamOutput, error)

StartActivityStream API operation for Amazon Relational Database Service.

Starts a database activity stream to monitor activity on the database. For more information, see Monitoring Amazon Aurora with Database Activity Streams (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/DBActivityStreams.html) in the Amazon Aurora User Guide or Monitoring Amazon RDS with Database Activity Streams (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/DBActivityStreams.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation StartActivityStream for usage and error information.

Returned Error Codes:

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeResourceNotFoundFault "ResourceNotFoundFault" The specified resource ID was not found.

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

  • ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" An error occurred accessing an Amazon Web Services KMS key.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartActivityStream

Example (Shared00)

To start a database activity stream The following example starts an asynchronous activity stream to monitor an Aurora cluster named my-pg-cluster.

Code:

svc := rds.New(session.New())
input := &rds.StartActivityStreamInput{
    ApplyImmediately: aws.Bool(true),
    KmsKeyId:         aws.String("arn:aws:kms:us-east-1:1234567890123:key/a12c345d-6ef7-890g-h123-456i789jk0l1"),
    Mode:             aws.String("async"),
    ResourceArn:      aws.String("arn:aws:rds:us-east-1:1234567890123:cluster:my-pg-cluster"),
}

result, err := svc.StartActivityStream(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeInvalidDBInstanceStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceStateFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        case rds.ErrCodeResourceNotFoundFault:
            fmt.Println(rds.ErrCodeResourceNotFoundFault, aerr.Error())
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceNotFoundFault, aerr.Error())
        case rds.ErrCodeKMSKeyNotAccessibleFault:
            fmt.Println(rds.ErrCodeKMSKeyNotAccessibleFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) StartActivityStreamRequest

func (c *RDS) StartActivityStreamRequest(input *StartActivityStreamInput) (req *request.Request, output *StartActivityStreamOutput)

StartActivityStreamRequest generates a "aws/request.Request" representing the client's request for the StartActivityStream operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See StartActivityStream for more information on using the StartActivityStream API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the StartActivityStreamRequest method.
req, resp := client.StartActivityStreamRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartActivityStream

func (*RDS) StartActivityStreamWithContext

func (c *RDS) StartActivityStreamWithContext(ctx aws.Context, input *StartActivityStreamInput, opts ...request.Option) (*StartActivityStreamOutput, error)

StartActivityStreamWithContext is the same as StartActivityStream with the addition of the ability to pass a context and additional request options.

See StartActivityStream for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) StartDBCluster

func (c *RDS) StartDBCluster(input *StartDBClusterInput) (*StartDBClusterOutput, error)

StartDBCluster API operation for Amazon Relational Database Service.

Starts an Amazon Aurora DB cluster that was stopped using the Amazon Web Services console, the stop-db-cluster CLI command, or the StopDBCluster operation.

For more information, see Stopping and Starting an Aurora Cluster (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-cluster-stop-start.html) in the Amazon Aurora User Guide.

This operation only applies to Aurora DB clusters.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation StartDBCluster for usage and error information.

Returned Error Codes:

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBCluster

Example (Shared00)

To start a DB cluster The following example starts a DB cluster and its DB instances.

Code:

svc := rds.New(session.New())
input := &rds.StartDBClusterInput{
    DBClusterIdentifier: aws.String("mydbcluster"),
}

result, err := svc.StartDBCluster(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        case rds.ErrCodeInvalidDBInstanceStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceStateFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) StartDBClusterRequest

func (c *RDS) StartDBClusterRequest(input *StartDBClusterInput) (req *request.Request, output *StartDBClusterOutput)

StartDBClusterRequest generates a "aws/request.Request" representing the client's request for the StartDBCluster operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See StartDBCluster for more information on using the StartDBCluster API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the StartDBClusterRequest method.
req, resp := client.StartDBClusterRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBCluster

func (*RDS) StartDBClusterWithContext

func (c *RDS) StartDBClusterWithContext(ctx aws.Context, input *StartDBClusterInput, opts ...request.Option) (*StartDBClusterOutput, error)

StartDBClusterWithContext is the same as StartDBCluster with the addition of the ability to pass a context and additional request options.

See StartDBCluster for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) StartDBInstance

func (c *RDS) StartDBInstance(input *StartDBInstanceInput) (*StartDBInstanceOutput, error)

StartDBInstance API operation for Amazon Relational Database Service.

Starts an Amazon RDS DB instance that was stopped using the Amazon Web Services console, the stop-db-instance CLI command, or the StopDBInstance operation.

For more information, see Starting an Amazon RDS DB instance That Was Previously Stopped (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_StartInstance.html) in the Amazon RDS User Guide.

This command doesn't apply to RDS Custom, Aurora MySQL, and Aurora PostgreSQL. For Aurora DB clusters, use StartDBCluster instead.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation StartDBInstance for usage and error information.

Returned Error Codes:

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

  • ErrCodeInsufficientDBInstanceCapacityFault "InsufficientDBInstanceCapacity" The specified DB instance class isn't available in the specified Availability Zone.

  • ErrCodeDBSubnetGroupNotFoundFault "DBSubnetGroupNotFoundFault" DBSubnetGroupName doesn't refer to an existing DB subnet group.

  • ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs "DBSubnetGroupDoesNotCoverEnoughAZs" Subnets in the DB subnet group should cover at least two Availability Zones unless there is only one Availability Zone.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeInvalidSubnet "InvalidSubnet" The requested subnet is invalid, or multiple subnets were requested that are not all in a common VPC.

  • ErrCodeInvalidVPCNetworkStateFault "InvalidVPCNetworkStateFault" The DB subnet group doesn't cover all Availability Zones after it's created because of users' change.

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeAuthorizationNotFoundFault "AuthorizationNotFound" The specified CIDR IP range or Amazon EC2 security group might not be authorized for the specified DB security group.

    Or, RDS might not be authorized to perform necessary actions using IAM on your behalf.

  • ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" An error occurred accessing an Amazon Web Services KMS key.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance

Example (Shared00)

To start a DB instance The following example starts the specified DB instance.

Code:

svc := rds.New(session.New())
input := &rds.StartDBInstanceInput{
    DBInstanceIdentifier: aws.String("test-instance"),
}

result, err := svc.StartDBInstance(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBInstanceStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceStateFault, aerr.Error())
        case rds.ErrCodeInsufficientDBInstanceCapacityFault:
            fmt.Println(rds.ErrCodeInsufficientDBInstanceCapacityFault, aerr.Error())
        case rds.ErrCodeDBSubnetGroupNotFoundFault:
            fmt.Println(rds.ErrCodeDBSubnetGroupNotFoundFault, aerr.Error())
        case rds.ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs:
            fmt.Println(rds.ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        case rds.ErrCodeInvalidSubnet:
            fmt.Println(rds.ErrCodeInvalidSubnet, aerr.Error())
        case rds.ErrCodeInvalidVPCNetworkStateFault:
            fmt.Println(rds.ErrCodeInvalidVPCNetworkStateFault, aerr.Error())
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeAuthorizationNotFoundFault:
            fmt.Println(rds.ErrCodeAuthorizationNotFoundFault, aerr.Error())
        case rds.ErrCodeKMSKeyNotAccessibleFault:
            fmt.Println(rds.ErrCodeKMSKeyNotAccessibleFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) StartDBInstanceAutomatedBackupsReplication

func (c *RDS) StartDBInstanceAutomatedBackupsReplication(input *StartDBInstanceAutomatedBackupsReplicationInput) (*StartDBInstanceAutomatedBackupsReplicationOutput, error)

StartDBInstanceAutomatedBackupsReplication API operation for Amazon Relational Database Service.

Enables replication of automated backups to a different Amazon Web Services Region.

This command doesn't apply to RDS Custom.

For more information, see Replicating Automated Backups to Another Amazon Web Services Region (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReplicateBackups.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation StartDBInstanceAutomatedBackupsReplication for usage and error information.

Returned Error Codes:

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

  • ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" An error occurred accessing an Amazon Web Services KMS key.

  • ErrCodeDBInstanceAutomatedBackupQuotaExceededFault "DBInstanceAutomatedBackupQuotaExceeded" The quota for retained automated backups was exceeded. This prevents you from retaining any additional automated backups. The retained automated backups quota is the same as your DB instance quota.

  • ErrCodeStorageTypeNotSupportedFault "StorageTypeNotSupported" The specified StorageType can't be associated with the DB instance.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstanceAutomatedBackupsReplication

Example (Shared00)

To enable cross-Region automated backups The following example replicates automated backups from a DB instance in the US East (N. Virginia) Region. The backup retention period is 14 days.

Code:

svc := rds.New(session.New())
input := &rds.StartDBInstanceAutomatedBackupsReplicationInput{
    BackupRetentionPeriod: aws.Int64(14),
    SourceDBInstanceArn:   aws.String("arn:aws:rds:us-east-1:123456789012:db:new-orcl-db"),
}

result, err := svc.StartDBInstanceAutomatedBackupsReplication(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBInstanceStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceStateFault, aerr.Error())
        case rds.ErrCodeKMSKeyNotAccessibleFault:
            fmt.Println(rds.ErrCodeKMSKeyNotAccessibleFault, aerr.Error())
        case rds.ErrCodeDBInstanceAutomatedBackupQuotaExceededFault:
            fmt.Println(rds.ErrCodeDBInstanceAutomatedBackupQuotaExceededFault, aerr.Error())
        case rds.ErrCodeStorageTypeNotSupportedFault:
            fmt.Println(rds.ErrCodeStorageTypeNotSupportedFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) StartDBInstanceAutomatedBackupsReplicationRequest

func (c *RDS) StartDBInstanceAutomatedBackupsReplicationRequest(input *StartDBInstanceAutomatedBackupsReplicationInput) (req *request.Request, output *StartDBInstanceAutomatedBackupsReplicationOutput)

StartDBInstanceAutomatedBackupsReplicationRequest generates a "aws/request.Request" representing the client's request for the StartDBInstanceAutomatedBackupsReplication operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See StartDBInstanceAutomatedBackupsReplication for more information on using the StartDBInstanceAutomatedBackupsReplication API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the StartDBInstanceAutomatedBackupsReplicationRequest method.
req, resp := client.StartDBInstanceAutomatedBackupsReplicationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstanceAutomatedBackupsReplication

func (*RDS) StartDBInstanceAutomatedBackupsReplicationWithContext

func (c *RDS) StartDBInstanceAutomatedBackupsReplicationWithContext(ctx aws.Context, input *StartDBInstanceAutomatedBackupsReplicationInput, opts ...request.Option) (*StartDBInstanceAutomatedBackupsReplicationOutput, error)

StartDBInstanceAutomatedBackupsReplicationWithContext is the same as StartDBInstanceAutomatedBackupsReplication with the addition of the ability to pass a context and additional request options.

See StartDBInstanceAutomatedBackupsReplication for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) StartDBInstanceRequest

func (c *RDS) StartDBInstanceRequest(input *StartDBInstanceInput) (req *request.Request, output *StartDBInstanceOutput)

StartDBInstanceRequest generates a "aws/request.Request" representing the client's request for the StartDBInstance operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See StartDBInstance for more information on using the StartDBInstance API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the StartDBInstanceRequest method.
req, resp := client.StartDBInstanceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance

func (*RDS) StartDBInstanceWithContext

func (c *RDS) StartDBInstanceWithContext(ctx aws.Context, input *StartDBInstanceInput, opts ...request.Option) (*StartDBInstanceOutput, error)

StartDBInstanceWithContext is the same as StartDBInstance with the addition of the ability to pass a context and additional request options.

See StartDBInstance for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) StartExportTask

func (c *RDS) StartExportTask(input *StartExportTaskInput) (*StartExportTaskOutput, error)

StartExportTask API operation for Amazon Relational Database Service.

Starts an export of DB snapshot or DB cluster data to Amazon S3. The provided IAM role must have access to the S3 bucket.

You can't export snapshot data from Db2 or RDS Custom DB instances.

You can't export cluster data from Multi-AZ DB clusters.

For more information on exporting DB snapshot data, see Exporting DB snapshot data to Amazon S3 (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ExportSnapshot.html) in the Amazon RDS User Guide or Exporting DB cluster snapshot data to Amazon S3 (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-export-snapshot.html) in the Amazon Aurora User Guide.

For more information on exporting DB cluster data, see Exporting DB cluster data to Amazon S3 (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/export-cluster-data.html) in the Amazon Aurora User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation StartExportTask for usage and error information.

Returned Error Codes:

  • ErrCodeDBSnapshotNotFoundFault "DBSnapshotNotFound" DBSnapshotIdentifier doesn't refer to an existing DB snapshot.

  • ErrCodeDBClusterSnapshotNotFoundFault "DBClusterSnapshotNotFoundFault" DBClusterSnapshotIdentifier doesn't refer to an existing DB cluster snapshot.

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeExportTaskAlreadyExistsFault "ExportTaskAlreadyExists" You can't start an export task that's already running.

  • ErrCodeInvalidS3BucketFault "InvalidS3BucketFault" The specified Amazon S3 bucket name can't be found or Amazon RDS isn't authorized to access the specified Amazon S3 bucket. Verify the SourceS3BucketName and S3IngestionRoleArn values and try again.

  • ErrCodeIamRoleNotFoundFault "IamRoleNotFound" The IAM role is missing for exporting to an Amazon S3 bucket.

  • ErrCodeIamRoleMissingPermissionsFault "IamRoleMissingPermissions" The IAM role requires additional permissions to export to an Amazon S3 bucket.

  • ErrCodeInvalidExportOnlyFault "InvalidExportOnly" The export is invalid for exporting to an Amazon S3 bucket.

  • ErrCodeKMSKeyNotAccessibleFault "KMSKeyNotAccessibleFault" An error occurred accessing an Amazon Web Services KMS key.

  • ErrCodeInvalidExportSourceStateFault "InvalidExportSourceState" The state of the export snapshot is invalid for exporting to an Amazon S3 bucket.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartExportTask

Example (Shared00)

To export a snapshot to Amazon S3 The following example exports a DB snapshot named db5-snapshot-test to the Amazon S3 bucket named mybucket.

Code:

svc := rds.New(session.New())
input := &rds.StartExportTaskInput{
    ExportTaskIdentifier: aws.String("my-s3-export"),
    IamRoleArn:           aws.String("arn:aws:iam::123456789012:role/service-role/ExportRole"),
    KmsKeyId:             aws.String("arn:aws:kms:us-west-2:123456789012:key/abcd0000-7fca-4128-82f2-aabbccddeeff"),
    S3BucketName:         aws.String("mybucket"),
    SourceArn:            aws.String("arn:aws:rds:us-west-2:123456789012:snapshot:db5-snapshot-test"),
}

result, err := svc.StartExportTask(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBSnapshotNotFoundFault:
            fmt.Println(rds.ErrCodeDBSnapshotNotFoundFault, aerr.Error())
        case rds.ErrCodeDBClusterSnapshotNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterSnapshotNotFoundFault, aerr.Error())
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeExportTaskAlreadyExistsFault:
            fmt.Println(rds.ErrCodeExportTaskAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeInvalidS3BucketFault:
            fmt.Println(rds.ErrCodeInvalidS3BucketFault, aerr.Error())
        case rds.ErrCodeIamRoleNotFoundFault:
            fmt.Println(rds.ErrCodeIamRoleNotFoundFault, aerr.Error())
        case rds.ErrCodeIamRoleMissingPermissionsFault:
            fmt.Println(rds.ErrCodeIamRoleMissingPermissionsFault, aerr.Error())
        case rds.ErrCodeInvalidExportOnlyFault:
            fmt.Println(rds.ErrCodeInvalidExportOnlyFault, aerr.Error())
        case rds.ErrCodeKMSKeyNotAccessibleFault:
            fmt.Println(rds.ErrCodeKMSKeyNotAccessibleFault, aerr.Error())
        case rds.ErrCodeInvalidExportSourceStateFault:
            fmt.Println(rds.ErrCodeInvalidExportSourceStateFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) StartExportTaskRequest

func (c *RDS) StartExportTaskRequest(input *StartExportTaskInput) (req *request.Request, output *StartExportTaskOutput)

StartExportTaskRequest generates a "aws/request.Request" representing the client's request for the StartExportTask operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See StartExportTask for more information on using the StartExportTask API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the StartExportTaskRequest method.
req, resp := client.StartExportTaskRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartExportTask

func (*RDS) StartExportTaskWithContext

func (c *RDS) StartExportTaskWithContext(ctx aws.Context, input *StartExportTaskInput, opts ...request.Option) (*StartExportTaskOutput, error)

StartExportTaskWithContext is the same as StartExportTask with the addition of the ability to pass a context and additional request options.

See StartExportTask for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) StopActivityStream

func (c *RDS) StopActivityStream(input *StopActivityStreamInput) (*StopActivityStreamOutput, error)

StopActivityStream API operation for Amazon Relational Database Service.

Stops a database activity stream that was started using the Amazon Web Services console, the start-activity-stream CLI command, or the StartActivityStream operation.

For more information, see Monitoring Amazon Aurora with Database Activity Streams (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/DBActivityStreams.html) in the Amazon Aurora User Guide or Monitoring Amazon RDS with Database Activity Streams (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/DBActivityStreams.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation StopActivityStream for usage and error information.

Returned Error Codes:

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeResourceNotFoundFault "ResourceNotFoundFault" The specified resource ID was not found.

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopActivityStream

Example (Shared00)

To stop a database activity stream The following example stops an activity stream in an Aurora cluster named my-pg-cluster.

Code:

svc := rds.New(session.New())
input := &rds.StopActivityStreamInput{
    ApplyImmediately: aws.Bool(true),
    ResourceArn:      aws.String("arn:aws:rds:us-east-1:1234567890123:cluster:my-pg-cluster"),
}

result, err := svc.StopActivityStream(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeInvalidDBInstanceStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceStateFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        case rds.ErrCodeResourceNotFoundFault:
            fmt.Println(rds.ErrCodeResourceNotFoundFault, aerr.Error())
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceNotFoundFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) StopActivityStreamRequest

func (c *RDS) StopActivityStreamRequest(input *StopActivityStreamInput) (req *request.Request, output *StopActivityStreamOutput)

StopActivityStreamRequest generates a "aws/request.Request" representing the client's request for the StopActivityStream operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See StopActivityStream for more information on using the StopActivityStream API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the StopActivityStreamRequest method.
req, resp := client.StopActivityStreamRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopActivityStream

func (*RDS) StopActivityStreamWithContext

func (c *RDS) StopActivityStreamWithContext(ctx aws.Context, input *StopActivityStreamInput, opts ...request.Option) (*StopActivityStreamOutput, error)

StopActivityStreamWithContext is the same as StopActivityStream with the addition of the ability to pass a context and additional request options.

See StopActivityStream for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) StopDBCluster

func (c *RDS) StopDBCluster(input *StopDBClusterInput) (*StopDBClusterOutput, error)

StopDBCluster API operation for Amazon Relational Database Service.

Stops an Amazon Aurora DB cluster. When you stop a DB cluster, Aurora retains the DB cluster's metadata, including its endpoints and DB parameter groups. Aurora also retains the transaction logs so you can do a point-in-time restore if necessary.

For more information, see Stopping and Starting an Aurora Cluster (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-cluster-stop-start.html) in the Amazon Aurora User Guide.

This operation only applies to Aurora DB clusters.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation StopDBCluster for usage and error information.

Returned Error Codes:

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBCluster

Example (Shared00)

To stop a DB cluster The following example stops a DB cluster and its DB instances.

Code:

svc := rds.New(session.New())
input := &rds.StopDBClusterInput{
    DBClusterIdentifier: aws.String("mydbcluster"),
}

result, err := svc.StopDBCluster(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBClusterNotFoundFault:
            fmt.Println(rds.ErrCodeDBClusterNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        case rds.ErrCodeInvalidDBInstanceStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceStateFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) StopDBClusterRequest

func (c *RDS) StopDBClusterRequest(input *StopDBClusterInput) (req *request.Request, output *StopDBClusterOutput)

StopDBClusterRequest generates a "aws/request.Request" representing the client's request for the StopDBCluster operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See StopDBCluster for more information on using the StopDBCluster API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the StopDBClusterRequest method.
req, resp := client.StopDBClusterRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBCluster

func (*RDS) StopDBClusterWithContext

func (c *RDS) StopDBClusterWithContext(ctx aws.Context, input *StopDBClusterInput, opts ...request.Option) (*StopDBClusterOutput, error)

StopDBClusterWithContext is the same as StopDBCluster with the addition of the ability to pass a context and additional request options.

See StopDBCluster for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) StopDBInstance

func (c *RDS) StopDBInstance(input *StopDBInstanceInput) (*StopDBInstanceOutput, error)

StopDBInstance API operation for Amazon Relational Database Service.

Stops an Amazon RDS DB instance. When you stop a DB instance, Amazon RDS retains the DB instance's metadata, including its endpoint, DB parameter group, and option group membership. Amazon RDS also retains the transaction logs so you can do a point-in-time restore if necessary.

For more information, see Stopping an Amazon RDS DB Instance Temporarily (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_StopInstance.html) in the Amazon RDS User Guide.

This command doesn't apply to RDS Custom, Aurora MySQL, and Aurora PostgreSQL. For Aurora clusters, use StopDBCluster instead.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation StopDBInstance for usage and error information.

Returned Error Codes:

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

  • ErrCodeDBSnapshotAlreadyExistsFault "DBSnapshotAlreadyExists" DBSnapshotIdentifier is already used by an existing snapshot.

  • ErrCodeSnapshotQuotaExceededFault "SnapshotQuotaExceeded" The request would result in the user exceeding the allowed number of DB snapshots.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance

Example (Shared00)

To stop a DB instance The following example stops the specified DB instance.

Code:

svc := rds.New(session.New())
input := &rds.StopDBInstanceInput{
    DBInstanceIdentifier: aws.String("test-instance"),
}

result, err := svc.StopDBInstance(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBInstanceStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceStateFault, aerr.Error())
        case rds.ErrCodeDBSnapshotAlreadyExistsFault:
            fmt.Println(rds.ErrCodeDBSnapshotAlreadyExistsFault, aerr.Error())
        case rds.ErrCodeSnapshotQuotaExceededFault:
            fmt.Println(rds.ErrCodeSnapshotQuotaExceededFault, aerr.Error())
        case rds.ErrCodeInvalidDBClusterStateFault:
            fmt.Println(rds.ErrCodeInvalidDBClusterStateFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) StopDBInstanceAutomatedBackupsReplication

func (c *RDS) StopDBInstanceAutomatedBackupsReplication(input *StopDBInstanceAutomatedBackupsReplicationInput) (*StopDBInstanceAutomatedBackupsReplicationOutput, error)

StopDBInstanceAutomatedBackupsReplication API operation for Amazon Relational Database Service.

Stops automated backup replication for a DB instance.

This command doesn't apply to RDS Custom, Aurora MySQL, and Aurora PostgreSQL.

For more information, see Replicating Automated Backups to Another Amazon Web Services Region (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReplicateBackups.html) in the Amazon RDS User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation StopDBInstanceAutomatedBackupsReplication for usage and error information.

Returned Error Codes:

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstanceAutomatedBackupsReplication

Example (Shared00)

To stop replicating automated backups The following example ends replication of automated backups. Replicated backups are retained according to the set backup retention period.

Code:

svc := rds.New(session.New())
input := &rds.StopDBInstanceAutomatedBackupsReplicationInput{
    SourceDBInstanceArn: aws.String("arn:aws:rds:us-east-1:123456789012:db:new-orcl-db"),
}

result, err := svc.StopDBInstanceAutomatedBackupsReplication(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeDBInstanceNotFoundFault:
            fmt.Println(rds.ErrCodeDBInstanceNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidDBInstanceStateFault:
            fmt.Println(rds.ErrCodeInvalidDBInstanceStateFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) StopDBInstanceAutomatedBackupsReplicationRequest

func (c *RDS) StopDBInstanceAutomatedBackupsReplicationRequest(input *StopDBInstanceAutomatedBackupsReplicationInput) (req *request.Request, output *StopDBInstanceAutomatedBackupsReplicationOutput)

StopDBInstanceAutomatedBackupsReplicationRequest generates a "aws/request.Request" representing the client's request for the StopDBInstanceAutomatedBackupsReplication operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See StopDBInstanceAutomatedBackupsReplication for more information on using the StopDBInstanceAutomatedBackupsReplication API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the StopDBInstanceAutomatedBackupsReplicationRequest method.
req, resp := client.StopDBInstanceAutomatedBackupsReplicationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstanceAutomatedBackupsReplication

func (*RDS) StopDBInstanceAutomatedBackupsReplicationWithContext

func (c *RDS) StopDBInstanceAutomatedBackupsReplicationWithContext(ctx aws.Context, input *StopDBInstanceAutomatedBackupsReplicationInput, opts ...request.Option) (*StopDBInstanceAutomatedBackupsReplicationOutput, error)

StopDBInstanceAutomatedBackupsReplicationWithContext is the same as StopDBInstanceAutomatedBackupsReplication with the addition of the ability to pass a context and additional request options.

See StopDBInstanceAutomatedBackupsReplication for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) StopDBInstanceRequest

func (c *RDS) StopDBInstanceRequest(input *StopDBInstanceInput) (req *request.Request, output *StopDBInstanceOutput)

StopDBInstanceRequest generates a "aws/request.Request" representing the client's request for the StopDBInstance operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See StopDBInstance for more information on using the StopDBInstance API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the StopDBInstanceRequest method.
req, resp := client.StopDBInstanceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance

func (*RDS) StopDBInstanceWithContext

func (c *RDS) StopDBInstanceWithContext(ctx aws.Context, input *StopDBInstanceInput, opts ...request.Option) (*StopDBInstanceOutput, error)

StopDBInstanceWithContext is the same as StopDBInstance with the addition of the ability to pass a context and additional request options.

See StopDBInstance for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) SwitchoverBlueGreenDeployment

func (c *RDS) SwitchoverBlueGreenDeployment(input *SwitchoverBlueGreenDeploymentInput) (*SwitchoverBlueGreenDeploymentOutput, error)

SwitchoverBlueGreenDeployment API operation for Amazon Relational Database Service.

Switches over a blue/green deployment.

Before you switch over, production traffic is routed to the databases in the blue environment. After you switch over, production traffic is routed to the databases in the green environment.

For more information, see Using Amazon RDS Blue/Green Deployments for database updates (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html) in the Amazon RDS User Guide and Using Amazon RDS Blue/Green Deployments for database updates (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html) in the Amazon Aurora User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation SwitchoverBlueGreenDeployment for usage and error information.

Returned Error Codes:

  • ErrCodeBlueGreenDeploymentNotFoundFault "BlueGreenDeploymentNotFoundFault" BlueGreenDeploymentIdentifier doesn't refer to an existing blue/green deployment.

  • ErrCodeInvalidBlueGreenDeploymentStateFault "InvalidBlueGreenDeploymentStateFault" The blue/green deployment can't be switched over or deleted because there is an invalid configuration in the green environment.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverBlueGreenDeployment

Example (Shared00)

To switch a blue/green deployment for an RDS DB instance The following example promotes the specified green environment as the new production environment.

Code:

svc := rds.New(session.New())
input := &rds.SwitchoverBlueGreenDeploymentInput{
    BlueGreenDeploymentIdentifier: aws.String("bgd-wi89nwzglccsfake"),
    SwitchoverTimeout:             aws.Int64(300),
}

result, err := svc.SwitchoverBlueGreenDeployment(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeBlueGreenDeploymentNotFoundFault:
            fmt.Println(rds.ErrCodeBlueGreenDeploymentNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidBlueGreenDeploymentStateFault:
            fmt.Println(rds.ErrCodeInvalidBlueGreenDeploymentStateFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To promote a blue/green deployment for an Aurora MySQL DB cluster The following example promotes the specified green environment as the new production environment.

Code:

svc := rds.New(session.New())
input := &rds.SwitchoverBlueGreenDeploymentInput{
    BlueGreenDeploymentIdentifier: aws.String("bgd-wi89nwzglccsfake"),
    SwitchoverTimeout:             aws.Int64(300),
}

result, err := svc.SwitchoverBlueGreenDeployment(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case rds.ErrCodeBlueGreenDeploymentNotFoundFault:
            fmt.Println(rds.ErrCodeBlueGreenDeploymentNotFoundFault, aerr.Error())
        case rds.ErrCodeInvalidBlueGreenDeploymentStateFault:
            fmt.Println(rds.ErrCodeInvalidBlueGreenDeploymentStateFault, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*RDS) SwitchoverBlueGreenDeploymentRequest

func (c *RDS) SwitchoverBlueGreenDeploymentRequest(input *SwitchoverBlueGreenDeploymentInput) (req *request.Request, output *SwitchoverBlueGreenDeploymentOutput)

SwitchoverBlueGreenDeploymentRequest generates a "aws/request.Request" representing the client's request for the SwitchoverBlueGreenDeployment operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See SwitchoverBlueGreenDeployment for more information on using the SwitchoverBlueGreenDeployment API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the SwitchoverBlueGreenDeploymentRequest method.
req, resp := client.SwitchoverBlueGreenDeploymentRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverBlueGreenDeployment

func (*RDS) SwitchoverBlueGreenDeploymentWithContext

func (c *RDS) SwitchoverBlueGreenDeploymentWithContext(ctx aws.Context, input *SwitchoverBlueGreenDeploymentInput, opts ...request.Option) (*SwitchoverBlueGreenDeploymentOutput, error)

SwitchoverBlueGreenDeploymentWithContext is the same as SwitchoverBlueGreenDeployment with the addition of the ability to pass a context and additional request options.

See SwitchoverBlueGreenDeployment for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) SwitchoverGlobalCluster

func (c *RDS) SwitchoverGlobalCluster(input *SwitchoverGlobalClusterInput) (*SwitchoverGlobalClusterOutput, error)

SwitchoverGlobalCluster API operation for Amazon Relational Database Service.

Switches over the specified secondary DB cluster to be the new primary DB cluster in the global database cluster. Switchover operations were previously called "managed planned failovers."

Aurora promotes the specified secondary cluster to assume full read/write capabilities and demotes the current primary cluster to a secondary (read-only) cluster, maintaining the orginal replication topology. All secondary clusters are synchronized with the primary at the beginning of the process so the new primary continues operations for the Aurora global database without losing any data. Your database is unavailable for a short time while the primary and selected secondary clusters are assuming their new roles. For more information about switching over an Aurora global database, see Performing switchovers for Amazon Aurora global databases (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database-disaster-recovery.html#aurora-global-database-disaster-recovery.managed-failover) in the Amazon Aurora User Guide.

This operation is intended for controlled environments, for operations such as "regional rotation" or to fall back to the original primary after a global database failover.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation SwitchoverGlobalCluster for usage and error information.

Returned Error Codes:

  • ErrCodeGlobalClusterNotFoundFault "GlobalClusterNotFoundFault" The GlobalClusterIdentifier doesn't refer to an existing global database cluster.

  • ErrCodeInvalidGlobalClusterStateFault "InvalidGlobalClusterStateFault" The global cluster is in an invalid state and can't perform the requested operation.

  • ErrCodeInvalidDBClusterStateFault "InvalidDBClusterStateFault" The requested operation can't be performed while the cluster is in this state.

  • ErrCodeDBClusterNotFoundFault "DBClusterNotFoundFault" DBClusterIdentifier doesn't refer to an existing DB cluster.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverGlobalCluster

func (*RDS) SwitchoverGlobalClusterRequest

func (c *RDS) SwitchoverGlobalClusterRequest(input *SwitchoverGlobalClusterInput) (req *request.Request, output *SwitchoverGlobalClusterOutput)

SwitchoverGlobalClusterRequest generates a "aws/request.Request" representing the client's request for the SwitchoverGlobalCluster operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See SwitchoverGlobalCluster for more information on using the SwitchoverGlobalCluster API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the SwitchoverGlobalClusterRequest method.
req, resp := client.SwitchoverGlobalClusterRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverGlobalCluster

func (*RDS) SwitchoverGlobalClusterWithContext

func (c *RDS) SwitchoverGlobalClusterWithContext(ctx aws.Context, input *SwitchoverGlobalClusterInput, opts ...request.Option) (*SwitchoverGlobalClusterOutput, error)

SwitchoverGlobalClusterWithContext is the same as SwitchoverGlobalCluster with the addition of the ability to pass a context and additional request options.

See SwitchoverGlobalCluster for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) SwitchoverReadReplica

func (c *RDS) SwitchoverReadReplica(input *SwitchoverReadReplicaInput) (*SwitchoverReadReplicaOutput, error)

SwitchoverReadReplica API operation for Amazon Relational Database Service.

Switches over an Oracle standby database in an Oracle Data Guard environment, making it the new primary database. Issue this command in the Region that hosts the current standby database.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Relational Database Service's API operation SwitchoverReadReplica for usage and error information.

Returned Error Codes:

  • ErrCodeDBInstanceNotFoundFault "DBInstanceNotFound" DBInstanceIdentifier doesn't refer to an existing DB instance.

  • ErrCodeInvalidDBInstanceStateFault "InvalidDBInstanceState" The DB instance isn't in a valid state.

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverReadReplica

func (*RDS) SwitchoverReadReplicaRequest

func (c *RDS) SwitchoverReadReplicaRequest(input *SwitchoverReadReplicaInput) (req *request.Request, output *SwitchoverReadReplicaOutput)

SwitchoverReadReplicaRequest generates a "aws/request.Request" representing the client's request for the SwitchoverReadReplica operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See SwitchoverReadReplica for more information on using the SwitchoverReadReplica API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the SwitchoverReadReplicaRequest method.
req, resp := client.SwitchoverReadReplicaRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverReadReplica

func (*RDS) SwitchoverReadReplicaWithContext

func (c *RDS) SwitchoverReadReplicaWithContext(ctx aws.Context, input *SwitchoverReadReplicaInput, opts ...request.Option) (*SwitchoverReadReplicaOutput, error)

SwitchoverReadReplicaWithContext is the same as SwitchoverReadReplica with the addition of the ability to pass a context and additional request options.

See SwitchoverReadReplica for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) WaitUntilDBClusterAvailable

func (c *RDS) WaitUntilDBClusterAvailable(input *DescribeDBClustersInput) error

WaitUntilDBClusterAvailable uses the Amazon RDS API operation DescribeDBClusters to wait for a condition to be met before returning. If the condition is not met within the max attempt window, an error will be returned.

func (*RDS) WaitUntilDBClusterAvailableWithContext

func (c *RDS) WaitUntilDBClusterAvailableWithContext(ctx aws.Context, input *DescribeDBClustersInput, opts ...request.WaiterOption) error

WaitUntilDBClusterAvailableWithContext is an extended version of WaitUntilDBClusterAvailable. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) WaitUntilDBClusterDeleted

func (c *RDS) WaitUntilDBClusterDeleted(input *DescribeDBClustersInput) error

WaitUntilDBClusterDeleted uses the Amazon RDS API operation DescribeDBClusters to wait for a condition to be met before returning. If the condition is not met within the max attempt window, an error will be returned.

func (*RDS) WaitUntilDBClusterDeletedWithContext

func (c *RDS) WaitUntilDBClusterDeletedWithContext(ctx aws.Context, input *DescribeDBClustersInput, opts ...request.WaiterOption) error

WaitUntilDBClusterDeletedWithContext is an extended version of WaitUntilDBClusterDeleted. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) WaitUntilDBClusterSnapshotAvailable

func (c *RDS) WaitUntilDBClusterSnapshotAvailable(input *DescribeDBClusterSnapshotsInput) error

WaitUntilDBClusterSnapshotAvailable uses the Amazon RDS API operation DescribeDBClusterSnapshots to wait for a condition to be met before returning. If the condition is not met within the max attempt window, an error will be returned.

func (*RDS) WaitUntilDBClusterSnapshotAvailableWithContext

func (c *RDS) WaitUntilDBClusterSnapshotAvailableWithContext(ctx aws.Context, input *DescribeDBClusterSnapshotsInput, opts ...request.WaiterOption) error

WaitUntilDBClusterSnapshotAvailableWithContext is an extended version of WaitUntilDBClusterSnapshotAvailable. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) WaitUntilDBClusterSnapshotDeleted

func (c *RDS) WaitUntilDBClusterSnapshotDeleted(input *DescribeDBClusterSnapshotsInput) error

WaitUntilDBClusterSnapshotDeleted uses the Amazon RDS API operation DescribeDBClusterSnapshots to wait for a condition to be met before returning. If the condition is not met within the max attempt window, an error will be returned.

func (*RDS) WaitUntilDBClusterSnapshotDeletedWithContext

func (c *RDS) WaitUntilDBClusterSnapshotDeletedWithContext(ctx aws.Context, input *DescribeDBClusterSnapshotsInput, opts ...request.WaiterOption) error

WaitUntilDBClusterSnapshotDeletedWithContext is an extended version of WaitUntilDBClusterSnapshotDeleted. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) WaitUntilDBInstanceAvailable

func (c *RDS) WaitUntilDBInstanceAvailable(input *DescribeDBInstancesInput) error

WaitUntilDBInstanceAvailable uses the Amazon RDS API operation DescribeDBInstances to wait for a condition to be met before returning. If the condition is not met within the max attempt window, an error will be returned.

func (*RDS) WaitUntilDBInstanceAvailableWithContext

func (c *RDS) WaitUntilDBInstanceAvailableWithContext(ctx aws.Context, input *DescribeDBInstancesInput, opts ...request.WaiterOption) error

WaitUntilDBInstanceAvailableWithContext is an extended version of WaitUntilDBInstanceAvailable. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) WaitUntilDBInstanceDeleted

func (c *RDS) WaitUntilDBInstanceDeleted(input *DescribeDBInstancesInput) error

WaitUntilDBInstanceDeleted uses the Amazon RDS API operation DescribeDBInstances to wait for a condition to be met before returning. If the condition is not met within the max attempt window, an error will be returned.

func (*RDS) WaitUntilDBInstanceDeletedWithContext

func (c *RDS) WaitUntilDBInstanceDeletedWithContext(ctx aws.Context, input *DescribeDBInstancesInput, opts ...request.WaiterOption) error

WaitUntilDBInstanceDeletedWithContext is an extended version of WaitUntilDBInstanceDeleted. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) WaitUntilDBSnapshotAvailable

func (c *RDS) WaitUntilDBSnapshotAvailable(input *DescribeDBSnapshotsInput) error

WaitUntilDBSnapshotAvailable uses the Amazon RDS API operation DescribeDBSnapshots to wait for a condition to be met before returning. If the condition is not met within the max attempt window, an error will be returned.

func (*RDS) WaitUntilDBSnapshotAvailableWithContext

func (c *RDS) WaitUntilDBSnapshotAvailableWithContext(ctx aws.Context, input *DescribeDBSnapshotsInput, opts ...request.WaiterOption) error

WaitUntilDBSnapshotAvailableWithContext is an extended version of WaitUntilDBSnapshotAvailable. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) WaitUntilDBSnapshotDeleted

func (c *RDS) WaitUntilDBSnapshotDeleted(input *DescribeDBSnapshotsInput) error

WaitUntilDBSnapshotDeleted uses the Amazon RDS API operation DescribeDBSnapshots to wait for a condition to be met before returning. If the condition is not met within the max attempt window, an error will be returned.

func (*RDS) WaitUntilDBSnapshotDeletedWithContext

func (c *RDS) WaitUntilDBSnapshotDeletedWithContext(ctx aws.Context, input *DescribeDBSnapshotsInput, opts ...request.WaiterOption) error

WaitUntilDBSnapshotDeletedWithContext is an extended version of WaitUntilDBSnapshotDeleted. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) WaitUntilTenantDatabaseAvailable

func (c *RDS) WaitUntilTenantDatabaseAvailable(input *DescribeTenantDatabasesInput) error

WaitUntilTenantDatabaseAvailable uses the Amazon RDS API operation DescribeTenantDatabases to wait for a condition to be met before returning. If the condition is not met within the max attempt window, an error will be returned.

func (*RDS) WaitUntilTenantDatabaseAvailableWithContext

func (c *RDS) WaitUntilTenantDatabaseAvailableWithContext(ctx aws.Context, input *DescribeTenantDatabasesInput, opts ...request.WaiterOption) error

WaitUntilTenantDatabaseAvailableWithContext is an extended version of WaitUntilTenantDatabaseAvailable. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*RDS) WaitUntilTenantDatabaseDeleted

func (c *RDS) WaitUntilTenantDatabaseDeleted(input *DescribeTenantDatabasesInput) error

WaitUntilTenantDatabaseDeleted uses the Amazon RDS API operation DescribeTenantDatabases to wait for a condition to be met before returning. If the condition is not met within the max attempt window, an error will be returned.

func (*RDS) WaitUntilTenantDatabaseDeletedWithContext

func (c *RDS) WaitUntilTenantDatabaseDeletedWithContext(ctx aws.Context, input *DescribeTenantDatabasesInput, opts ...request.WaiterOption) error

WaitUntilTenantDatabaseDeletedWithContext is an extended version of WaitUntilTenantDatabaseDeleted. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

type Range

type Range struct {

    // The minimum value in the range.
    From *int64 `type:"integer"`

    // The step value for the range. For example, if you have a range of 5,000 to
    // 10,000, with a step value of 1,000, the valid values start at 5,000 and step
    // up by 1,000. Even though 7,500 is within the range, it isn't a valid value
    // for the range. The valid values are 5,000, 6,000, 7,000, 8,000...
    Step *int64 `type:"integer"`

    // The maximum value in the range.
    To *int64 `type:"integer"`
    // contains filtered or unexported fields
}

A range of integer values.

func (Range) GoString

func (s Range) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Range) SetFrom

func (s *Range) SetFrom(v int64) *Range

SetFrom sets the From field's value.

func (*Range) SetStep

func (s *Range) SetStep(v int64) *Range

SetStep sets the Step field's value.

func (*Range) SetTo

func (s *Range) SetTo(v int64) *Range

SetTo sets the To field's value.

func (Range) String

func (s Range) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RdsCustomClusterConfiguration

type RdsCustomClusterConfiguration struct {

    // Reserved for future use.
    InterconnectSubnetId *string `type:"string"`

    // Reserved for future use.
    ReplicaMode *string `type:"string" enum:"ReplicaMode"`

    // Reserved for future use.
    TransitGatewayMulticastDomainId *string `type:"string"`
    // contains filtered or unexported fields
}

Reserved for future use.

func (RdsCustomClusterConfiguration) GoString

func (s RdsCustomClusterConfiguration) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RdsCustomClusterConfiguration) SetInterconnectSubnetId

func (s *RdsCustomClusterConfiguration) SetInterconnectSubnetId(v string) *RdsCustomClusterConfiguration

SetInterconnectSubnetId sets the InterconnectSubnetId field's value.

func (*RdsCustomClusterConfiguration) SetReplicaMode

func (s *RdsCustomClusterConfiguration) SetReplicaMode(v string) *RdsCustomClusterConfiguration

SetReplicaMode sets the ReplicaMode field's value.

func (*RdsCustomClusterConfiguration) SetTransitGatewayMulticastDomainId

func (s *RdsCustomClusterConfiguration) SetTransitGatewayMulticastDomainId(v string) *RdsCustomClusterConfiguration

SetTransitGatewayMulticastDomainId sets the TransitGatewayMulticastDomainId field's value.

func (RdsCustomClusterConfiguration) String

func (s RdsCustomClusterConfiguration) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RebootDBClusterInput

type RebootDBClusterInput struct {

    // The DB cluster identifier. This parameter is stored as a lowercase string.
    //
    // Constraints:
    //
    //    * Must match the identifier of an existing DBCluster.
    //
    // DBClusterIdentifier is a required field
    DBClusterIdentifier *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (RebootDBClusterInput) GoString

func (s RebootDBClusterInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RebootDBClusterInput) SetDBClusterIdentifier

func (s *RebootDBClusterInput) SetDBClusterIdentifier(v string) *RebootDBClusterInput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (RebootDBClusterInput) String

func (s RebootDBClusterInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RebootDBClusterInput) Validate

func (s *RebootDBClusterInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RebootDBClusterOutput

type RebootDBClusterOutput struct {

    // Contains the details of an Amazon Aurora DB cluster or Multi-AZ DB cluster.
    //
    // For an Amazon Aurora DB cluster, this data type is used as a response element
    // in the operations CreateDBCluster, DeleteDBCluster, DescribeDBClusters, FailoverDBCluster,
    // ModifyDBCluster, PromoteReadReplicaDBCluster, RestoreDBClusterFromS3, RestoreDBClusterFromSnapshot,
    // RestoreDBClusterToPointInTime, StartDBCluster, and StopDBCluster.
    //
    // For a Multi-AZ DB cluster, this data type is used as a response element in
    // the operations CreateDBCluster, DeleteDBCluster, DescribeDBClusters, FailoverDBCluster,
    // ModifyDBCluster, RebootDBCluster, RestoreDBClusterFromSnapshot, and RestoreDBClusterToPointInTime.
    //
    // For more information on Amazon Aurora DB clusters, see What is Amazon Aurora?
    // (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html)
    // in the Amazon Aurora User Guide.
    //
    // For more information on Multi-AZ DB clusters, see Multi-AZ deployments with
    // two readable standby DB instances (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html)
    // in the Amazon RDS User Guide.
    DBCluster *DBCluster `type:"structure"`
    // contains filtered or unexported fields
}

func (RebootDBClusterOutput) GoString

func (s RebootDBClusterOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RebootDBClusterOutput) SetDBCluster

func (s *RebootDBClusterOutput) SetDBCluster(v *DBCluster) *RebootDBClusterOutput

SetDBCluster sets the DBCluster field's value.

func (RebootDBClusterOutput) String

func (s RebootDBClusterOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RebootDBInstanceInput

type RebootDBInstanceInput struct {

    // The DB instance identifier. This parameter is stored as a lowercase string.
    //
    // Constraints:
    //
    //    * Must match the identifier of an existing DBInstance.
    //
    // DBInstanceIdentifier is a required field
    DBInstanceIdentifier *string `type:"string" required:"true"`

    // Specifies whether the reboot is conducted through a Multi-AZ failover.
    //
    // Constraint: You can't enable force failover if the instance isn't configured
    // for Multi-AZ.
    ForceFailover *bool `type:"boolean"`
    // contains filtered or unexported fields
}

func (RebootDBInstanceInput) GoString

func (s RebootDBInstanceInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RebootDBInstanceInput) SetDBInstanceIdentifier

func (s *RebootDBInstanceInput) SetDBInstanceIdentifier(v string) *RebootDBInstanceInput

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*RebootDBInstanceInput) SetForceFailover

func (s *RebootDBInstanceInput) SetForceFailover(v bool) *RebootDBInstanceInput

SetForceFailover sets the ForceFailover field's value.

func (RebootDBInstanceInput) String

func (s RebootDBInstanceInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RebootDBInstanceInput) Validate

func (s *RebootDBInstanceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RebootDBInstanceOutput

type RebootDBInstanceOutput struct {

    // Contains the details of an Amazon RDS DB instance.
    //
    // This data type is used as a response element in the operations CreateDBInstance,
    // CreateDBInstanceReadReplica, DeleteDBInstance, DescribeDBInstances, ModifyDBInstance,
    // PromoteReadReplica, RebootDBInstance, RestoreDBInstanceFromDBSnapshot, RestoreDBInstanceFromS3,
    // RestoreDBInstanceToPointInTime, StartDBInstance, and StopDBInstance.
    DBInstance *DBInstance `type:"structure"`
    // contains filtered or unexported fields
}

func (RebootDBInstanceOutput) GoString

func (s RebootDBInstanceOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RebootDBInstanceOutput) SetDBInstance

func (s *RebootDBInstanceOutput) SetDBInstance(v *DBInstance) *RebootDBInstanceOutput

SetDBInstance sets the DBInstance field's value.

func (RebootDBInstanceOutput) String

func (s RebootDBInstanceOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RebootDBShardGroupInput

type RebootDBShardGroupInput struct {

    // The name of the DB shard group to reboot.
    //
    // DBShardGroupIdentifier is a required field
    DBShardGroupIdentifier *string `min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (RebootDBShardGroupInput) GoString

func (s RebootDBShardGroupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RebootDBShardGroupInput) SetDBShardGroupIdentifier

func (s *RebootDBShardGroupInput) SetDBShardGroupIdentifier(v string) *RebootDBShardGroupInput

SetDBShardGroupIdentifier sets the DBShardGroupIdentifier field's value.

func (RebootDBShardGroupInput) String

func (s RebootDBShardGroupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RebootDBShardGroupInput) Validate

func (s *RebootDBShardGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RebootDBShardGroupOutput

type RebootDBShardGroupOutput struct {

    // Specifies whether to create standby instances for the DB shard group. Valid
    // values are the following:
    //
    //    * 0 - Creates a single, primary DB instance for each physical shard. This
    //    is the default value, and the only one supported for the preview.
    //
    //    * 1 - Creates a primary DB instance and a standby instance in a different
    //    Availability Zone (AZ) for each physical shard.
    //
    //    * 2 - Creates a primary DB instance and two standby instances in different
    //    AZs for each physical shard.
    ComputeRedundancy *int64 `type:"integer"`

    // The name of the primary DB cluster for the DB shard group.
    DBClusterIdentifier *string `type:"string"`

    // The name of the DB shard group.
    DBShardGroupIdentifier *string `min:"1" type:"string"`

    // The Amazon Web Services Region-unique, immutable identifier for the DB shard
    // group.
    DBShardGroupResourceId *string `type:"string"`

    // The connection endpoint for the DB shard group.
    Endpoint *string `type:"string"`

    // The maximum capacity of the DB shard group in Aurora capacity units (ACUs).
    MaxACU *float64 `type:"double"`

    // Indicates whether the DB shard group is publicly accessible.
    //
    // When the DB shard group is publicly accessible, its Domain Name System (DNS)
    // endpoint resolves to the private IP address from within the DB shard group's
    // virtual private cloud (VPC). It resolves to the public IP address from outside
    // of the DB shard group's VPC. Access to the DB shard group is ultimately controlled
    // by the security group it uses. That public access isn't permitted if the
    // security group assigned to the DB shard group doesn't permit it.
    //
    // When the DB shard group isn't publicly accessible, it is an internal DB shard
    // group with a DNS name that resolves to a private IP address.
    //
    // For more information, see CreateDBShardGroup.
    //
    // This setting is only for Aurora Limitless Database.
    PubliclyAccessible *bool `type:"boolean"`

    // The status of the DB shard group.
    Status *string `type:"string"`
    // contains filtered or unexported fields
}

func (RebootDBShardGroupOutput) GoString

func (s RebootDBShardGroupOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RebootDBShardGroupOutput) SetComputeRedundancy

func (s *RebootDBShardGroupOutput) SetComputeRedundancy(v int64) *RebootDBShardGroupOutput

SetComputeRedundancy sets the ComputeRedundancy field's value.

func (*RebootDBShardGroupOutput) SetDBClusterIdentifier

func (s *RebootDBShardGroupOutput) SetDBClusterIdentifier(v string) *RebootDBShardGroupOutput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*RebootDBShardGroupOutput) SetDBShardGroupIdentifier

func (s *RebootDBShardGroupOutput) SetDBShardGroupIdentifier(v string) *RebootDBShardGroupOutput

SetDBShardGroupIdentifier sets the DBShardGroupIdentifier field's value.

func (*RebootDBShardGroupOutput) SetDBShardGroupResourceId

func (s *RebootDBShardGroupOutput) SetDBShardGroupResourceId(v string) *RebootDBShardGroupOutput

SetDBShardGroupResourceId sets the DBShardGroupResourceId field's value.

func (*RebootDBShardGroupOutput) SetEndpoint

func (s *RebootDBShardGroupOutput) SetEndpoint(v string) *RebootDBShardGroupOutput

SetEndpoint sets the Endpoint field's value.

func (*RebootDBShardGroupOutput) SetMaxACU

func (s *RebootDBShardGroupOutput) SetMaxACU(v float64) *RebootDBShardGroupOutput

SetMaxACU sets the MaxACU field's value.

func (*RebootDBShardGroupOutput) SetPubliclyAccessible

func (s *RebootDBShardGroupOutput) SetPubliclyAccessible(v bool) *RebootDBShardGroupOutput

SetPubliclyAccessible sets the PubliclyAccessible field's value.

func (*RebootDBShardGroupOutput) SetStatus

func (s *RebootDBShardGroupOutput) SetStatus(v string) *RebootDBShardGroupOutput

SetStatus sets the Status field's value.

func (RebootDBShardGroupOutput) String

func (s RebootDBShardGroupOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RecommendedAction

type RecommendedAction struct {

    // The unique identifier of the recommended action.
    ActionId *string `type:"string"`

    // The methods to apply the recommended action.
    //
    // Valid values:
    //
    //    * manual - The action requires you to resolve the recommendation manually.
    //
    //    * immediately - The action is applied immediately.
    //
    //    * next-maintainance-window - The action is applied during the next scheduled
    //    maintainance.
    ApplyModes []*string `type:"list"`

    // The supporting attributes to explain the recommended action.
    ContextAttributes []*ContextAttribute `type:"list"`

    // A detailed description of the action. The description might contain markdown.
    Description *string `type:"string"`

    // The details of the issue.
    IssueDetails *IssueDetails `type:"structure"`

    // An API operation for the action.
    Operation *string `type:"string"`

    // The parameters for the API operation.
    Parameters []*RecommendedActionParameter `type:"list"`

    // The status of the action.
    //
    //    * ready
    //
    //    * applied
    //
    //    * scheduled
    //
    //    * resolved
    Status *string `type:"string"`

    // A short description to summarize the action. The description might contain
    // markdown.
    Title *string `type:"string"`
    // contains filtered or unexported fields
}

The recommended actions to apply to resolve the issues associated with your DB instances, DB clusters, and DB parameter groups.

func (RecommendedAction) GoString

func (s RecommendedAction) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RecommendedAction) SetActionId

func (s *RecommendedAction) SetActionId(v string) *RecommendedAction

SetActionId sets the ActionId field's value.

func (*RecommendedAction) SetApplyModes

func (s *RecommendedAction) SetApplyModes(v []*string) *RecommendedAction

SetApplyModes sets the ApplyModes field's value.

func (*RecommendedAction) SetContextAttributes

func (s *RecommendedAction) SetContextAttributes(v []*ContextAttribute) *RecommendedAction

SetContextAttributes sets the ContextAttributes field's value.

func (*RecommendedAction) SetDescription

func (s *RecommendedAction) SetDescription(v string) *RecommendedAction

SetDescription sets the Description field's value.

func (*RecommendedAction) SetIssueDetails

func (s *RecommendedAction) SetIssueDetails(v *IssueDetails) *RecommendedAction

SetIssueDetails sets the IssueDetails field's value.

func (*RecommendedAction) SetOperation

func (s *RecommendedAction) SetOperation(v string) *RecommendedAction

SetOperation sets the Operation field's value.

func (*RecommendedAction) SetParameters

func (s *RecommendedAction) SetParameters(v []*RecommendedActionParameter) *RecommendedAction

SetParameters sets the Parameters field's value.

func (*RecommendedAction) SetStatus

func (s *RecommendedAction) SetStatus(v string) *RecommendedAction

SetStatus sets the Status field's value.

func (*RecommendedAction) SetTitle

func (s *RecommendedAction) SetTitle(v string) *RecommendedAction

SetTitle sets the Title field's value.

func (RecommendedAction) String

func (s RecommendedAction) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RecommendedActionParameter

type RecommendedActionParameter struct {

    // The key of the parameter to use with the RecommendedAction API operation.
    Key *string `type:"string"`

    // The value of the parameter to use with the RecommendedAction API operation.
    Value *string `type:"string"`
    // contains filtered or unexported fields
}

A single parameter to use with the RecommendedAction API operation to apply the action.

func (RecommendedActionParameter) GoString

func (s RecommendedActionParameter) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RecommendedActionParameter) SetKey

func (s *RecommendedActionParameter) SetKey(v string) *RecommendedActionParameter

SetKey sets the Key field's value.

func (*RecommendedActionParameter) SetValue

func (s *RecommendedActionParameter) SetValue(v string) *RecommendedActionParameter

SetValue sets the Value field's value.

func (RecommendedActionParameter) String

func (s RecommendedActionParameter) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RecommendedActionUpdate

type RecommendedActionUpdate struct {

    // A unique identifier of the updated recommendation action.
    //
    // ActionId is a required field
    ActionId *string `type:"string" required:"true"`

    // The status of the updated recommendation action.
    //
    //    * applied
    //
    //    * scheduled
    //
    // Status is a required field
    Status *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

The recommended status to update for the specified recommendation action ID.

func (RecommendedActionUpdate) GoString

func (s RecommendedActionUpdate) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RecommendedActionUpdate) SetActionId

func (s *RecommendedActionUpdate) SetActionId(v string) *RecommendedActionUpdate

SetActionId sets the ActionId field's value.

func (*RecommendedActionUpdate) SetStatus

func (s *RecommendedActionUpdate) SetStatus(v string) *RecommendedActionUpdate

SetStatus sets the Status field's value.

func (RecommendedActionUpdate) String

func (s RecommendedActionUpdate) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RecommendedActionUpdate) Validate

func (s *RecommendedActionUpdate) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RecurringCharge

type RecurringCharge struct {

    // The amount of the recurring charge.
    RecurringChargeAmount *float64 `type:"double"`

    // The frequency of the recurring charge.
    RecurringChargeFrequency *string `type:"string"`
    // contains filtered or unexported fields
}

This data type is used as a response element in the DescribeReservedDBInstances and DescribeReservedDBInstancesOfferings actions.

func (RecurringCharge) GoString

func (s RecurringCharge) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RecurringCharge) SetRecurringChargeAmount

func (s *RecurringCharge) SetRecurringChargeAmount(v float64) *RecurringCharge

SetRecurringChargeAmount sets the RecurringChargeAmount field's value.

func (*RecurringCharge) SetRecurringChargeFrequency

func (s *RecurringCharge) SetRecurringChargeFrequency(v string) *RecurringCharge

SetRecurringChargeFrequency sets the RecurringChargeFrequency field's value.

func (RecurringCharge) String

func (s RecurringCharge) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ReferenceDetails

type ReferenceDetails struct {

    // The metric reference details when the reference is a scalar.
    ScalarReferenceDetails *ScalarReferenceDetails `type:"structure"`
    // contains filtered or unexported fields
}

The reference details of a metric.

func (ReferenceDetails) GoString

func (s ReferenceDetails) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ReferenceDetails) SetScalarReferenceDetails

func (s *ReferenceDetails) SetScalarReferenceDetails(v *ScalarReferenceDetails) *ReferenceDetails

SetScalarReferenceDetails sets the ScalarReferenceDetails field's value.

func (ReferenceDetails) String

func (s ReferenceDetails) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RegisterDBProxyTargetsInput

type RegisterDBProxyTargetsInput struct {

    // One or more DB cluster identifiers.
    DBClusterIdentifiers []*string `type:"list"`

    // One or more DB instance identifiers.
    DBInstanceIdentifiers []*string `type:"list"`

    // The identifier of the DBProxy that is associated with the DBProxyTargetGroup.
    //
    // DBProxyName is a required field
    DBProxyName *string `type:"string" required:"true"`

    // The identifier of the DBProxyTargetGroup.
    TargetGroupName *string `type:"string"`
    // contains filtered or unexported fields
}

func (RegisterDBProxyTargetsInput) GoString

func (s RegisterDBProxyTargetsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RegisterDBProxyTargetsInput) SetDBClusterIdentifiers

func (s *RegisterDBProxyTargetsInput) SetDBClusterIdentifiers(v []*string) *RegisterDBProxyTargetsInput

SetDBClusterIdentifiers sets the DBClusterIdentifiers field's value.

func (*RegisterDBProxyTargetsInput) SetDBInstanceIdentifiers

func (s *RegisterDBProxyTargetsInput) SetDBInstanceIdentifiers(v []*string) *RegisterDBProxyTargetsInput

SetDBInstanceIdentifiers sets the DBInstanceIdentifiers field's value.

func (*RegisterDBProxyTargetsInput) SetDBProxyName

func (s *RegisterDBProxyTargetsInput) SetDBProxyName(v string) *RegisterDBProxyTargetsInput

SetDBProxyName sets the DBProxyName field's value.

func (*RegisterDBProxyTargetsInput) SetTargetGroupName

func (s *RegisterDBProxyTargetsInput) SetTargetGroupName(v string) *RegisterDBProxyTargetsInput

SetTargetGroupName sets the TargetGroupName field's value.

func (RegisterDBProxyTargetsInput) String

func (s RegisterDBProxyTargetsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RegisterDBProxyTargetsInput) Validate

func (s *RegisterDBProxyTargetsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RegisterDBProxyTargetsOutput

type RegisterDBProxyTargetsOutput struct {

    // One or more DBProxyTarget objects that are created when you register targets
    // with a target group.
    DBProxyTargets []*DBProxyTarget `type:"list"`
    // contains filtered or unexported fields
}

func (RegisterDBProxyTargetsOutput) GoString

func (s RegisterDBProxyTargetsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RegisterDBProxyTargetsOutput) SetDBProxyTargets

func (s *RegisterDBProxyTargetsOutput) SetDBProxyTargets(v []*DBProxyTarget) *RegisterDBProxyTargetsOutput

SetDBProxyTargets sets the DBProxyTargets field's value.

func (RegisterDBProxyTargetsOutput) String

func (s RegisterDBProxyTargetsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RemoveFromGlobalClusterInput

type RemoveFromGlobalClusterInput struct {

    // The Amazon Resource Name (ARN) identifying the cluster that was detached
    // from the Aurora global database cluster.
    DbClusterIdentifier *string `type:"string"`

    // The cluster identifier to detach from the Aurora global database cluster.
    GlobalClusterIdentifier *string `type:"string"`
    // contains filtered or unexported fields
}

func (RemoveFromGlobalClusterInput) GoString

func (s RemoveFromGlobalClusterInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RemoveFromGlobalClusterInput) SetDbClusterIdentifier

func (s *RemoveFromGlobalClusterInput) SetDbClusterIdentifier(v string) *RemoveFromGlobalClusterInput

SetDbClusterIdentifier sets the DbClusterIdentifier field's value.

func (*RemoveFromGlobalClusterInput) SetGlobalClusterIdentifier

func (s *RemoveFromGlobalClusterInput) SetGlobalClusterIdentifier(v string) *RemoveFromGlobalClusterInput

SetGlobalClusterIdentifier sets the GlobalClusterIdentifier field's value.

func (RemoveFromGlobalClusterInput) String

func (s RemoveFromGlobalClusterInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RemoveFromGlobalClusterOutput

type RemoveFromGlobalClusterOutput struct {

    // A data type representing an Aurora global database.
    GlobalCluster *GlobalCluster `type:"structure"`
    // contains filtered or unexported fields
}

func (RemoveFromGlobalClusterOutput) GoString

func (s RemoveFromGlobalClusterOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RemoveFromGlobalClusterOutput) SetGlobalCluster

func (s *RemoveFromGlobalClusterOutput) SetGlobalCluster(v *GlobalCluster) *RemoveFromGlobalClusterOutput

SetGlobalCluster sets the GlobalCluster field's value.

func (RemoveFromGlobalClusterOutput) String

func (s RemoveFromGlobalClusterOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RemoveRoleFromDBClusterInput

type RemoveRoleFromDBClusterInput struct {

    // The name of the DB cluster to disassociate the IAM role from.
    //
    // DBClusterIdentifier is a required field
    DBClusterIdentifier *string `type:"string" required:"true"`

    // The name of the feature for the DB cluster that the IAM role is to be disassociated
    // from. For information about supported feature names, see DBEngineVersion.
    FeatureName *string `type:"string"`

    // The Amazon Resource Name (ARN) of the IAM role to disassociate from the Aurora
    // DB cluster, for example arn:aws:iam::123456789012:role/AuroraAccessRole.
    //
    // RoleArn is a required field
    RoleArn *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (RemoveRoleFromDBClusterInput) GoString

func (s RemoveRoleFromDBClusterInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RemoveRoleFromDBClusterInput) SetDBClusterIdentifier

func (s *RemoveRoleFromDBClusterInput) SetDBClusterIdentifier(v string) *RemoveRoleFromDBClusterInput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*RemoveRoleFromDBClusterInput) SetFeatureName

func (s *RemoveRoleFromDBClusterInput) SetFeatureName(v string) *RemoveRoleFromDBClusterInput

SetFeatureName sets the FeatureName field's value.

func (*RemoveRoleFromDBClusterInput) SetRoleArn

func (s *RemoveRoleFromDBClusterInput) SetRoleArn(v string) *RemoveRoleFromDBClusterInput

SetRoleArn sets the RoleArn field's value.

func (RemoveRoleFromDBClusterInput) String

func (s RemoveRoleFromDBClusterInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RemoveRoleFromDBClusterInput) Validate

func (s *RemoveRoleFromDBClusterInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RemoveRoleFromDBClusterOutput

type RemoveRoleFromDBClusterOutput struct {
    // contains filtered or unexported fields
}

func (RemoveRoleFromDBClusterOutput) GoString

func (s RemoveRoleFromDBClusterOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (RemoveRoleFromDBClusterOutput) String

func (s RemoveRoleFromDBClusterOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RemoveRoleFromDBInstanceInput

type RemoveRoleFromDBInstanceInput struct {

    // The name of the DB instance to disassociate the IAM role from.
    //
    // DBInstanceIdentifier is a required field
    DBInstanceIdentifier *string `type:"string" required:"true"`

    // The name of the feature for the DB instance that the IAM role is to be disassociated
    // from. For information about supported feature names, see DBEngineVersion.
    //
    // FeatureName is a required field
    FeatureName *string `type:"string" required:"true"`

    // The Amazon Resource Name (ARN) of the IAM role to disassociate from the DB
    // instance, for example, arn:aws:iam::123456789012:role/AccessRole.
    //
    // RoleArn is a required field
    RoleArn *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (RemoveRoleFromDBInstanceInput) GoString

func (s RemoveRoleFromDBInstanceInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RemoveRoleFromDBInstanceInput) SetDBInstanceIdentifier

func (s *RemoveRoleFromDBInstanceInput) SetDBInstanceIdentifier(v string) *RemoveRoleFromDBInstanceInput

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*RemoveRoleFromDBInstanceInput) SetFeatureName

func (s *RemoveRoleFromDBInstanceInput) SetFeatureName(v string) *RemoveRoleFromDBInstanceInput

SetFeatureName sets the FeatureName field's value.

func (*RemoveRoleFromDBInstanceInput) SetRoleArn

func (s *RemoveRoleFromDBInstanceInput) SetRoleArn(v string) *RemoveRoleFromDBInstanceInput

SetRoleArn sets the RoleArn field's value.

func (RemoveRoleFromDBInstanceInput) String

func (s RemoveRoleFromDBInstanceInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RemoveRoleFromDBInstanceInput) Validate

func (s *RemoveRoleFromDBInstanceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RemoveRoleFromDBInstanceOutput

type RemoveRoleFromDBInstanceOutput struct {
    // contains filtered or unexported fields
}

func (RemoveRoleFromDBInstanceOutput) GoString

func (s RemoveRoleFromDBInstanceOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (RemoveRoleFromDBInstanceOutput) String

func (s RemoveRoleFromDBInstanceOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RemoveSourceIdentifierFromSubscriptionInput

type RemoveSourceIdentifierFromSubscriptionInput struct {

    // The source identifier to be removed from the subscription, such as the DB
    // instance identifier for a DB instance or the name of a security group.
    //
    // SourceIdentifier is a required field
    SourceIdentifier *string `type:"string" required:"true"`

    // The name of the RDS event notification subscription you want to remove a
    // source identifier from.
    //
    // SubscriptionName is a required field
    SubscriptionName *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (RemoveSourceIdentifierFromSubscriptionInput) GoString

func (s RemoveSourceIdentifierFromSubscriptionInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RemoveSourceIdentifierFromSubscriptionInput) SetSourceIdentifier

func (s *RemoveSourceIdentifierFromSubscriptionInput) SetSourceIdentifier(v string) *RemoveSourceIdentifierFromSubscriptionInput

SetSourceIdentifier sets the SourceIdentifier field's value.

func (*RemoveSourceIdentifierFromSubscriptionInput) SetSubscriptionName

func (s *RemoveSourceIdentifierFromSubscriptionInput) SetSubscriptionName(v string) *RemoveSourceIdentifierFromSubscriptionInput

SetSubscriptionName sets the SubscriptionName field's value.

func (RemoveSourceIdentifierFromSubscriptionInput) String

func (s RemoveSourceIdentifierFromSubscriptionInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RemoveSourceIdentifierFromSubscriptionInput) Validate

func (s *RemoveSourceIdentifierFromSubscriptionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RemoveSourceIdentifierFromSubscriptionOutput

type RemoveSourceIdentifierFromSubscriptionOutput struct {

    // Contains the results of a successful invocation of the DescribeEventSubscriptions
    // action.
    EventSubscription *EventSubscription `type:"structure"`
    // contains filtered or unexported fields
}

func (RemoveSourceIdentifierFromSubscriptionOutput) GoString

func (s RemoveSourceIdentifierFromSubscriptionOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RemoveSourceIdentifierFromSubscriptionOutput) SetEventSubscription

func (s *RemoveSourceIdentifierFromSubscriptionOutput) SetEventSubscription(v *EventSubscription) *RemoveSourceIdentifierFromSubscriptionOutput

SetEventSubscription sets the EventSubscription field's value.

func (RemoveSourceIdentifierFromSubscriptionOutput) String

func (s RemoveSourceIdentifierFromSubscriptionOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RemoveTagsFromResourceInput

type RemoveTagsFromResourceInput struct {

    // The Amazon RDS resource that the tags are removed from. This value is an
    // Amazon Resource Name (ARN). For information about creating an ARN, see Constructing
    // an ARN for Amazon RDS (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing)
    // in the Amazon RDS User Guide.
    //
    // ResourceName is a required field
    ResourceName *string `type:"string" required:"true"`

    // The tag key (name) of the tag to be removed.
    //
    // TagKeys is a required field
    TagKeys []*string `type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (RemoveTagsFromResourceInput) GoString

func (s RemoveTagsFromResourceInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RemoveTagsFromResourceInput) SetResourceName

func (s *RemoveTagsFromResourceInput) SetResourceName(v string) *RemoveTagsFromResourceInput

SetResourceName sets the ResourceName field's value.

func (*RemoveTagsFromResourceInput) SetTagKeys

func (s *RemoveTagsFromResourceInput) SetTagKeys(v []*string) *RemoveTagsFromResourceInput

SetTagKeys sets the TagKeys field's value.

func (RemoveTagsFromResourceInput) String

func (s RemoveTagsFromResourceInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RemoveTagsFromResourceInput) Validate

func (s *RemoveTagsFromResourceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RemoveTagsFromResourceOutput

type RemoveTagsFromResourceOutput struct {
    // contains filtered or unexported fields
}

func (RemoveTagsFromResourceOutput) GoString

func (s RemoveTagsFromResourceOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (RemoveTagsFromResourceOutput) String

func (s RemoveTagsFromResourceOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ReservedDBInstance

type ReservedDBInstance struct {

    // The currency code for the reserved DB instance.
    CurrencyCode *string `type:"string"`

    // The DB instance class for the reserved DB instance.
    DBInstanceClass *string `type:"string"`

    // The number of reserved DB instances.
    DBInstanceCount *int64 `type:"integer"`

    // The duration of the reservation in seconds.
    Duration *int64 `type:"integer"`

    // The fixed price charged for this reserved DB instance.
    FixedPrice *float64 `type:"double"`

    // The unique identifier for the lease associated with the reserved DB instance.
    //
    // Amazon Web Services Support might request the lease ID for an issue related
    // to a reserved DB instance.
    LeaseId *string `type:"string"`

    // Indicates whether the reservation applies to Multi-AZ deployments.
    MultiAZ *bool `type:"boolean"`

    // The offering type of this reserved DB instance.
    OfferingType *string `type:"string"`

    // The description of the reserved DB instance.
    ProductDescription *string `type:"string"`

    // The recurring price charged to run this reserved DB instance.
    RecurringCharges []*RecurringCharge `locationNameList:"RecurringCharge" type:"list"`

    // The Amazon Resource Name (ARN) for the reserved DB instance.
    ReservedDBInstanceArn *string `type:"string"`

    // The unique identifier for the reservation.
    ReservedDBInstanceId *string `type:"string"`

    // The offering identifier.
    ReservedDBInstancesOfferingId *string `type:"string"`

    // The time the reservation started.
    StartTime *time.Time `type:"timestamp"`

    // The state of the reserved DB instance.
    State *string `type:"string"`

    // The hourly price charged for this reserved DB instance.
    UsagePrice *float64 `type:"double"`
    // contains filtered or unexported fields
}

This data type is used as a response element in the DescribeReservedDBInstances and PurchaseReservedDBInstancesOffering actions.

func (ReservedDBInstance) GoString

func (s ReservedDBInstance) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ReservedDBInstance) SetCurrencyCode

func (s *ReservedDBInstance) SetCurrencyCode(v string) *ReservedDBInstance

SetCurrencyCode sets the CurrencyCode field's value.

func (*ReservedDBInstance) SetDBInstanceClass

func (s *ReservedDBInstance) SetDBInstanceClass(v string) *ReservedDBInstance

SetDBInstanceClass sets the DBInstanceClass field's value.

func (*ReservedDBInstance) SetDBInstanceCount

func (s *ReservedDBInstance) SetDBInstanceCount(v int64) *ReservedDBInstance

SetDBInstanceCount sets the DBInstanceCount field's value.

func (*ReservedDBInstance) SetDuration

func (s *ReservedDBInstance) SetDuration(v int64) *ReservedDBInstance

SetDuration sets the Duration field's value.

func (*ReservedDBInstance) SetFixedPrice

func (s *ReservedDBInstance) SetFixedPrice(v float64) *ReservedDBInstance

SetFixedPrice sets the FixedPrice field's value.

func (*ReservedDBInstance) SetLeaseId

func (s *ReservedDBInstance) SetLeaseId(v string) *ReservedDBInstance

SetLeaseId sets the LeaseId field's value.

func (*ReservedDBInstance) SetMultiAZ

func (s *ReservedDBInstance) SetMultiAZ(v bool) *ReservedDBInstance

SetMultiAZ sets the MultiAZ field's value.

func (*ReservedDBInstance) SetOfferingType

func (s *ReservedDBInstance) SetOfferingType(v string) *ReservedDBInstance

SetOfferingType sets the OfferingType field's value.

func (*ReservedDBInstance) SetProductDescription

func (s *ReservedDBInstance) SetProductDescription(v string) *ReservedDBInstance

SetProductDescription sets the ProductDescription field's value.

func (*ReservedDBInstance) SetRecurringCharges

func (s *ReservedDBInstance) SetRecurringCharges(v []*RecurringCharge) *ReservedDBInstance

SetRecurringCharges sets the RecurringCharges field's value.

func (*ReservedDBInstance) SetReservedDBInstanceArn

func (s *ReservedDBInstance) SetReservedDBInstanceArn(v string) *ReservedDBInstance

SetReservedDBInstanceArn sets the ReservedDBInstanceArn field's value.

func (*ReservedDBInstance) SetReservedDBInstanceId

func (s *ReservedDBInstance) SetReservedDBInstanceId(v string) *ReservedDBInstance

SetReservedDBInstanceId sets the ReservedDBInstanceId field's value.

func (*ReservedDBInstance) SetReservedDBInstancesOfferingId

func (s *ReservedDBInstance) SetReservedDBInstancesOfferingId(v string) *ReservedDBInstance

SetReservedDBInstancesOfferingId sets the ReservedDBInstancesOfferingId field's value.

func (*ReservedDBInstance) SetStartTime

func (s *ReservedDBInstance) SetStartTime(v time.Time) *ReservedDBInstance

SetStartTime sets the StartTime field's value.

func (*ReservedDBInstance) SetState

func (s *ReservedDBInstance) SetState(v string) *ReservedDBInstance

SetState sets the State field's value.

func (*ReservedDBInstance) SetUsagePrice

func (s *ReservedDBInstance) SetUsagePrice(v float64) *ReservedDBInstance

SetUsagePrice sets the UsagePrice field's value.

func (ReservedDBInstance) String

func (s ReservedDBInstance) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ReservedDBInstancesOffering

type ReservedDBInstancesOffering struct {

    // The currency code for the reserved DB instance offering.
    CurrencyCode *string `type:"string"`

    // The DB instance class for the reserved DB instance.
    DBInstanceClass *string `type:"string"`

    // The duration of the offering in seconds.
    Duration *int64 `type:"integer"`

    // The fixed price charged for this offering.
    FixedPrice *float64 `type:"double"`

    // Indicates whether the offering applies to Multi-AZ deployments.
    MultiAZ *bool `type:"boolean"`

    // The offering type.
    OfferingType *string `type:"string"`

    // The database engine used by the offering.
    ProductDescription *string `type:"string"`

    // The recurring price charged to run this reserved DB instance.
    RecurringCharges []*RecurringCharge `locationNameList:"RecurringCharge" type:"list"`

    // The offering identifier.
    ReservedDBInstancesOfferingId *string `type:"string"`

    // The hourly price charged for this offering.
    UsagePrice *float64 `type:"double"`
    // contains filtered or unexported fields
}

This data type is used as a response element in the DescribeReservedDBInstancesOfferings action.

func (ReservedDBInstancesOffering) GoString

func (s ReservedDBInstancesOffering) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ReservedDBInstancesOffering) SetCurrencyCode

func (s *ReservedDBInstancesOffering) SetCurrencyCode(v string) *ReservedDBInstancesOffering

SetCurrencyCode sets the CurrencyCode field's value.

func (*ReservedDBInstancesOffering) SetDBInstanceClass

func (s *ReservedDBInstancesOffering) SetDBInstanceClass(v string) *ReservedDBInstancesOffering

SetDBInstanceClass sets the DBInstanceClass field's value.

func (*ReservedDBInstancesOffering) SetDuration

func (s *ReservedDBInstancesOffering) SetDuration(v int64) *ReservedDBInstancesOffering

SetDuration sets the Duration field's value.

func (*ReservedDBInstancesOffering) SetFixedPrice

func (s *ReservedDBInstancesOffering) SetFixedPrice(v float64) *ReservedDBInstancesOffering

SetFixedPrice sets the FixedPrice field's value.

func (*ReservedDBInstancesOffering) SetMultiAZ

func (s *ReservedDBInstancesOffering) SetMultiAZ(v bool) *ReservedDBInstancesOffering

SetMultiAZ sets the MultiAZ field's value.

func (*ReservedDBInstancesOffering) SetOfferingType

func (s *ReservedDBInstancesOffering) SetOfferingType(v string) *ReservedDBInstancesOffering

SetOfferingType sets the OfferingType field's value.

func (*ReservedDBInstancesOffering) SetProductDescription

func (s *ReservedDBInstancesOffering) SetProductDescription(v string) *ReservedDBInstancesOffering

SetProductDescription sets the ProductDescription field's value.

func (*ReservedDBInstancesOffering) SetRecurringCharges

func (s *ReservedDBInstancesOffering) SetRecurringCharges(v []*RecurringCharge) *ReservedDBInstancesOffering

SetRecurringCharges sets the RecurringCharges field's value.

func (*ReservedDBInstancesOffering) SetReservedDBInstancesOfferingId

func (s *ReservedDBInstancesOffering) SetReservedDBInstancesOfferingId(v string) *ReservedDBInstancesOffering

SetReservedDBInstancesOfferingId sets the ReservedDBInstancesOfferingId field's value.

func (*ReservedDBInstancesOffering) SetUsagePrice

func (s *ReservedDBInstancesOffering) SetUsagePrice(v float64) *ReservedDBInstancesOffering

SetUsagePrice sets the UsagePrice field's value.

func (ReservedDBInstancesOffering) String

func (s ReservedDBInstancesOffering) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ResetDBClusterParameterGroupInput

type ResetDBClusterParameterGroupInput struct {

    // The name of the DB cluster parameter group to reset.
    //
    // DBClusterParameterGroupName is a required field
    DBClusterParameterGroupName *string `type:"string" required:"true"`

    // A list of parameter names in the DB cluster parameter group to reset to the
    // default values. You can't use this parameter if the ResetAllParameters parameter
    // is enabled.
    Parameters []*Parameter `locationNameList:"Parameter" type:"list"`

    // Specifies whether to reset all parameters in the DB cluster parameter group
    // to their default values. You can't use this parameter if there is a list
    // of parameter names specified for the Parameters parameter.
    ResetAllParameters *bool `type:"boolean"`
    // contains filtered or unexported fields
}

func (ResetDBClusterParameterGroupInput) GoString

func (s ResetDBClusterParameterGroupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ResetDBClusterParameterGroupInput) SetDBClusterParameterGroupName

func (s *ResetDBClusterParameterGroupInput) SetDBClusterParameterGroupName(v string) *ResetDBClusterParameterGroupInput

SetDBClusterParameterGroupName sets the DBClusterParameterGroupName field's value.

func (*ResetDBClusterParameterGroupInput) SetParameters

func (s *ResetDBClusterParameterGroupInput) SetParameters(v []*Parameter) *ResetDBClusterParameterGroupInput

SetParameters sets the Parameters field's value.

func (*ResetDBClusterParameterGroupInput) SetResetAllParameters

func (s *ResetDBClusterParameterGroupInput) SetResetAllParameters(v bool) *ResetDBClusterParameterGroupInput

SetResetAllParameters sets the ResetAllParameters field's value.

func (ResetDBClusterParameterGroupInput) String

func (s ResetDBClusterParameterGroupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ResetDBClusterParameterGroupInput) Validate

func (s *ResetDBClusterParameterGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ResetDBParameterGroupInput

type ResetDBParameterGroupInput struct {

    // The name of the DB parameter group.
    //
    // Constraints:
    //
    //    * Must match the name of an existing DBParameterGroup.
    //
    // DBParameterGroupName is a required field
    DBParameterGroupName *string `type:"string" required:"true"`

    // To reset the entire DB parameter group, specify the DBParameterGroup name
    // and ResetAllParameters parameters. To reset specific parameters, provide
    // a list of the following: ParameterName and ApplyMethod. A maximum of 20 parameters
    // can be modified in a single request.
    //
    // MySQL
    //
    // Valid Values (for Apply method): immediate | pending-reboot
    //
    // You can use the immediate value with dynamic parameters only. You can use
    // the pending-reboot value for both dynamic and static parameters, and changes
    // are applied when DB instance reboots.
    //
    // MariaDB
    //
    // Valid Values (for Apply method): immediate | pending-reboot
    //
    // You can use the immediate value with dynamic parameters only. You can use
    // the pending-reboot value for both dynamic and static parameters, and changes
    // are applied when DB instance reboots.
    //
    // Oracle
    //
    // Valid Values (for Apply method): pending-reboot
    Parameters []*Parameter `locationNameList:"Parameter" type:"list"`

    // Specifies whether to reset all parameters in the DB parameter group to default
    // values. By default, all parameters in the DB parameter group are reset to
    // default values.
    ResetAllParameters *bool `type:"boolean"`
    // contains filtered or unexported fields
}

func (ResetDBParameterGroupInput) GoString

func (s ResetDBParameterGroupInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ResetDBParameterGroupInput) SetDBParameterGroupName

func (s *ResetDBParameterGroupInput) SetDBParameterGroupName(v string) *ResetDBParameterGroupInput

SetDBParameterGroupName sets the DBParameterGroupName field's value.

func (*ResetDBParameterGroupInput) SetParameters

func (s *ResetDBParameterGroupInput) SetParameters(v []*Parameter) *ResetDBParameterGroupInput

SetParameters sets the Parameters field's value.

func (*ResetDBParameterGroupInput) SetResetAllParameters

func (s *ResetDBParameterGroupInput) SetResetAllParameters(v bool) *ResetDBParameterGroupInput

SetResetAllParameters sets the ResetAllParameters field's value.

func (ResetDBParameterGroupInput) String

func (s ResetDBParameterGroupInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ResetDBParameterGroupInput) Validate

func (s *ResetDBParameterGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ResourcePendingMaintenanceActions

type ResourcePendingMaintenanceActions struct {

    // A list that provides details about the pending maintenance actions for the
    // resource.
    PendingMaintenanceActionDetails []*PendingMaintenanceAction `locationNameList:"PendingMaintenanceAction" type:"list"`

    // The ARN of the resource that has pending maintenance actions.
    ResourceIdentifier *string `type:"string"`
    // contains filtered or unexported fields
}

Describes the pending maintenance actions for a resource.

func (ResourcePendingMaintenanceActions) GoString

func (s ResourcePendingMaintenanceActions) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ResourcePendingMaintenanceActions) SetPendingMaintenanceActionDetails

func (s *ResourcePendingMaintenanceActions) SetPendingMaintenanceActionDetails(v []*PendingMaintenanceAction) *ResourcePendingMaintenanceActions

SetPendingMaintenanceActionDetails sets the PendingMaintenanceActionDetails field's value.

func (*ResourcePendingMaintenanceActions) SetResourceIdentifier

func (s *ResourcePendingMaintenanceActions) SetResourceIdentifier(v string) *ResourcePendingMaintenanceActions

SetResourceIdentifier sets the ResourceIdentifier field's value.

func (ResourcePendingMaintenanceActions) String

func (s ResourcePendingMaintenanceActions) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RestoreDBClusterFromS3Input

type RestoreDBClusterFromS3Input struct {

    // A list of Availability Zones (AZs) where instances in the restored DB cluster
    // can be created.
    AvailabilityZones []*string `locationNameList:"AvailabilityZone" type:"list"`

    // The target backtrack window, in seconds. To disable backtracking, set this
    // value to 0.
    //
    // Currently, Backtrack is only supported for Aurora MySQL DB clusters.
    //
    // Default: 0
    //
    // Constraints:
    //
    //    * If specified, this value must be set to a number from 0 to 259,200 (72
    //    hours).
    BacktrackWindow *int64 `type:"long"`

    // The number of days for which automated backups of the restored DB cluster
    // are retained. You must specify a minimum value of 1.
    //
    // Default: 1
    //
    // Constraints:
    //
    //    * Must be a value from 1 to 35
    BackupRetentionPeriod *int64 `type:"integer"`

    // A value that indicates that the restored DB cluster should be associated
    // with the specified CharacterSet.
    CharacterSetName *string `type:"string"`

    // Specifies whether to copy all tags from the restored DB cluster to snapshots
    // of the restored DB cluster. The default is not to copy them.
    CopyTagsToSnapshot *bool `type:"boolean"`

    // The name of the DB cluster to create from the source data in the Amazon S3
    // bucket. This parameter isn't case-sensitive.
    //
    // Constraints:
    //
    //    * Must contain from 1 to 63 letters, numbers, or hyphens.
    //
    //    * First character must be a letter.
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens.
    //
    // Example: my-cluster1
    //
    // DBClusterIdentifier is a required field
    DBClusterIdentifier *string `type:"string" required:"true"`

    // The name of the DB cluster parameter group to associate with the restored
    // DB cluster. If this argument is omitted, the default parameter group for
    // the engine version is used.
    //
    // Constraints:
    //
    //    * If supplied, must match the name of an existing DBClusterParameterGroup.
    DBClusterParameterGroupName *string `type:"string"`

    // A DB subnet group to associate with the restored DB cluster.
    //
    // Constraints: If supplied, must match the name of an existing DBSubnetGroup.
    //
    // Example: mydbsubnetgroup
    DBSubnetGroupName *string `type:"string"`

    // The database name for the restored DB cluster.
    DatabaseName *string `type:"string"`

    // Specifies whether to enable deletion protection for the DB cluster. The database
    // can't be deleted when deletion protection is enabled. By default, deletion
    // protection isn't enabled.
    DeletionProtection *bool `type:"boolean"`

    // Specify the Active Directory directory ID to restore the DB cluster in. The
    // domain must be created prior to this operation.
    //
    // For Amazon Aurora DB clusters, Amazon RDS can use Kerberos Authentication
    // to authenticate users that connect to the DB cluster. For more information,
    // see Kerberos Authentication (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/kerberos-authentication.html)
    // in the Amazon Aurora User Guide.
    Domain *string `type:"string"`

    // Specify the name of the IAM role to be used when making API calls to the
    // Directory Service.
    DomainIAMRoleName *string `type:"string"`

    // The list of logs that the restored DB cluster is to export to CloudWatch
    // Logs. The values in the list depend on the DB engine being used.
    //
    // Aurora MySQL
    //
    // Possible values are audit, error, general, and slowquery.
    //
    // For more information about exporting CloudWatch Logs for Amazon Aurora, see
    // Publishing Database Logs to Amazon CloudWatch Logs (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch)
    // in the Amazon Aurora User Guide.
    EnableCloudwatchLogsExports []*string `type:"list"`

    // Specifies whether to enable mapping of Amazon Web Services Identity and Access
    // Management (IAM) accounts to database accounts. By default, mapping isn't
    // enabled.
    //
    // For more information, see IAM Database Authentication (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html)
    // in the Amazon Aurora User Guide.
    EnableIAMDatabaseAuthentication *bool `type:"boolean"`

    // The name of the database engine to be used for this DB cluster.
    //
    // Valid Values: aurora-mysql (for Aurora MySQL)
    //
    // Engine is a required field
    Engine *string `type:"string" required:"true"`

    // The version number of the database engine to use.
    //
    // To list all of the available engine versions for aurora-mysql (Aurora MySQL),
    // use the following command:
    //
    // aws rds describe-db-engine-versions --engine aurora-mysql --query "DBEngineVersions[].EngineVersion"
    //
    // Aurora MySQL
    //
    // Examples: 5.7.mysql_aurora.2.12.0, 8.0.mysql_aurora.3.04.0
    EngineVersion *string `type:"string"`

    // The Amazon Web Services KMS key identifier for an encrypted DB cluster.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key. To use a KMS key in a different Amazon
    // Web Services account, specify the key ARN or alias ARN.
    //
    // If the StorageEncrypted parameter is enabled, and you do not specify a value
    // for the KmsKeyId parameter, then Amazon RDS will use your default KMS key.
    // There is a default KMS key for your Amazon Web Services account. Your Amazon
    // Web Services account has a different default KMS key for each Amazon Web
    // Services Region.
    KmsKeyId *string `type:"string"`

    // Specifies whether to manage the master user password with Amazon Web Services
    // Secrets Manager.
    //
    // For more information, see Password management with Amazon Web Services Secrets
    // Manager (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html)
    // in the Amazon RDS User Guide and Password management with Amazon Web Services
    // Secrets Manager (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-secrets-manager.html)
    // in the Amazon Aurora User Guide.
    //
    // Constraints:
    //
    //    * Can't manage the master user password with Amazon Web Services Secrets
    //    Manager if MasterUserPassword is specified.
    ManageMasterUserPassword *bool `type:"boolean"`

    // The password for the master database user. This password can contain any
    // printable ASCII character except "/", """, or "@".
    //
    // Constraints:
    //
    //    * Must contain from 8 to 41 characters.
    //
    //    * Can't be specified if ManageMasterUserPassword is turned on.
    MasterUserPassword *string `type:"string"`

    // The Amazon Web Services KMS key identifier to encrypt a secret that is automatically
    // generated and managed in Amazon Web Services Secrets Manager.
    //
    // This setting is valid only if the master user password is managed by RDS
    // in Amazon Web Services Secrets Manager for the DB cluster.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key. To use a KMS key in a different Amazon
    // Web Services account, specify the key ARN or alias ARN.
    //
    // If you don't specify MasterUserSecretKmsKeyId, then the aws/secretsmanager
    // KMS key is used to encrypt the secret. If the secret is in a different Amazon
    // Web Services account, then you can't use the aws/secretsmanager KMS key to
    // encrypt the secret, and you must use a customer managed KMS key.
    //
    // There is a default KMS key for your Amazon Web Services account. Your Amazon
    // Web Services account has a different default KMS key for each Amazon Web
    // Services Region.
    MasterUserSecretKmsKeyId *string `type:"string"`

    // The name of the master user for the restored DB cluster.
    //
    // Constraints:
    //
    //    * Must be 1 to 16 letters or numbers.
    //
    //    * First character must be a letter.
    //
    //    * Can't be a reserved word for the chosen database engine.
    //
    // MasterUsername is a required field
    MasterUsername *string `type:"string" required:"true"`

    // The network type of the DB cluster.
    //
    // Valid Values:
    //
    //    * IPV4
    //
    //    * DUAL
    //
    // The network type is determined by the DBSubnetGroup specified for the DB
    // cluster. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and
    // the IPv6 protocols (DUAL).
    //
    // For more information, see Working with a DB instance in a VPC (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html)
    // in the Amazon Aurora User Guide.
    NetworkType *string `type:"string"`

    // A value that indicates that the restored DB cluster should be associated
    // with the specified option group.
    //
    // Permanent options can't be removed from an option group. An option group
    // can't be removed from a DB cluster once it is associated with a DB cluster.
    OptionGroupName *string `type:"string"`

    // The port number on which the instances in the restored DB cluster accept
    // connections.
    //
    // Default: 3306
    Port *int64 `type:"integer"`

    // The daily time range during which automated backups are created if automated
    // backups are enabled using the BackupRetentionPeriod parameter.
    //
    // The default is a 30-minute window selected at random from an 8-hour block
    // of time for each Amazon Web Services Region. To view the time blocks available,
    // see Backup window (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.Backups.BackupWindow)
    // in the Amazon Aurora User Guide.
    //
    // Constraints:
    //
    //    * Must be in the format hh24:mi-hh24:mi.
    //
    //    * Must be in Universal Coordinated Time (UTC).
    //
    //    * Must not conflict with the preferred maintenance window.
    //
    //    * Must be at least 30 minutes.
    PreferredBackupWindow *string `type:"string"`

    // The weekly time range during which system maintenance can occur, in Universal
    // Coordinated Time (UTC).
    //
    // Format: ddd:hh24:mi-ddd:hh24:mi
    //
    // The default is a 30-minute window selected at random from an 8-hour block
    // of time for each Amazon Web Services Region, occurring on a random day of
    // the week. To see the time blocks available, see Adjusting the Preferred Maintenance
    // Window (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora)
    // in the Amazon Aurora User Guide.
    //
    // Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
    //
    // Constraints: Minimum 30-minute window.
    PreferredMaintenanceWindow *string `type:"string"`

    // The name of the Amazon S3 bucket that contains the data used to create the
    // Amazon Aurora DB cluster.
    //
    // S3BucketName is a required field
    S3BucketName *string `type:"string" required:"true"`

    // The Amazon Resource Name (ARN) of the Amazon Web Services Identity and Access
    // Management (IAM) role that authorizes Amazon RDS to access the Amazon S3
    // bucket on your behalf.
    //
    // S3IngestionRoleArn is a required field
    S3IngestionRoleArn *string `type:"string" required:"true"`

    // The prefix for all of the file names that contain the data used to create
    // the Amazon Aurora DB cluster. If you do not specify a SourceS3Prefix value,
    // then the Amazon Aurora DB cluster is created by using all of the files in
    // the Amazon S3 bucket.
    S3Prefix *string `type:"string"`

    // Contains the scaling configuration of an Aurora Serverless v2 DB cluster.
    //
    // For more information, see Using Amazon Aurora Serverless v2 (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html)
    // in the Amazon Aurora User Guide.
    ServerlessV2ScalingConfiguration *ServerlessV2ScalingConfiguration `type:"structure"`

    // The identifier for the database engine that was backed up to create the files
    // stored in the Amazon S3 bucket.
    //
    // Valid Values: mysql
    //
    // SourceEngine is a required field
    SourceEngine *string `type:"string" required:"true"`

    // The version of the database that the backup files were created from.
    //
    // MySQL versions 5.7 and 8.0 are supported.
    //
    // Example: 5.7.40, 8.0.28
    //
    // SourceEngineVersion is a required field
    SourceEngineVersion *string `type:"string" required:"true"`

    // Specifies whether the restored DB cluster is encrypted.
    StorageEncrypted *bool `type:"boolean"`

    // Specifies the storage type to be associated with the DB cluster.
    //
    // Valid Values: aurora, aurora-iopt1
    //
    // Default: aurora
    //
    // Valid for: Aurora DB clusters only
    StorageType *string `type:"string"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    Tags []*Tag `locationNameList:"Tag" type:"list"`

    // A list of EC2 VPC security groups to associate with the restored DB cluster.
    VpcSecurityGroupIds []*string `locationNameList:"VpcSecurityGroupId" type:"list"`
    // contains filtered or unexported fields
}

func (RestoreDBClusterFromS3Input) GoString

func (s RestoreDBClusterFromS3Input) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RestoreDBClusterFromS3Input) SetAvailabilityZones

func (s *RestoreDBClusterFromS3Input) SetAvailabilityZones(v []*string) *RestoreDBClusterFromS3Input

SetAvailabilityZones sets the AvailabilityZones field's value.

func (*RestoreDBClusterFromS3Input) SetBacktrackWindow

func (s *RestoreDBClusterFromS3Input) SetBacktrackWindow(v int64) *RestoreDBClusterFromS3Input

SetBacktrackWindow sets the BacktrackWindow field's value.

func (*RestoreDBClusterFromS3Input) SetBackupRetentionPeriod

func (s *RestoreDBClusterFromS3Input) SetBackupRetentionPeriod(v int64) *RestoreDBClusterFromS3Input

SetBackupRetentionPeriod sets the BackupRetentionPeriod field's value.

func (*RestoreDBClusterFromS3Input) SetCharacterSetName

func (s *RestoreDBClusterFromS3Input) SetCharacterSetName(v string) *RestoreDBClusterFromS3Input

SetCharacterSetName sets the CharacterSetName field's value.

func (*RestoreDBClusterFromS3Input) SetCopyTagsToSnapshot

func (s *RestoreDBClusterFromS3Input) SetCopyTagsToSnapshot(v bool) *RestoreDBClusterFromS3Input

SetCopyTagsToSnapshot sets the CopyTagsToSnapshot field's value.

func (*RestoreDBClusterFromS3Input) SetDBClusterIdentifier

func (s *RestoreDBClusterFromS3Input) SetDBClusterIdentifier(v string) *RestoreDBClusterFromS3Input

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*RestoreDBClusterFromS3Input) SetDBClusterParameterGroupName

func (s *RestoreDBClusterFromS3Input) SetDBClusterParameterGroupName(v string) *RestoreDBClusterFromS3Input

SetDBClusterParameterGroupName sets the DBClusterParameterGroupName field's value.

func (*RestoreDBClusterFromS3Input) SetDBSubnetGroupName

func (s *RestoreDBClusterFromS3Input) SetDBSubnetGroupName(v string) *RestoreDBClusterFromS3Input

SetDBSubnetGroupName sets the DBSubnetGroupName field's value.

func (*RestoreDBClusterFromS3Input) SetDatabaseName

func (s *RestoreDBClusterFromS3Input) SetDatabaseName(v string) *RestoreDBClusterFromS3Input

SetDatabaseName sets the DatabaseName field's value.

func (*RestoreDBClusterFromS3Input) SetDeletionProtection

func (s *RestoreDBClusterFromS3Input) SetDeletionProtection(v bool) *RestoreDBClusterFromS3Input

SetDeletionProtection sets the DeletionProtection field's value.

func (*RestoreDBClusterFromS3Input) SetDomain

func (s *RestoreDBClusterFromS3Input) SetDomain(v string) *RestoreDBClusterFromS3Input

SetDomain sets the Domain field's value.

func (*RestoreDBClusterFromS3Input) SetDomainIAMRoleName

func (s *RestoreDBClusterFromS3Input) SetDomainIAMRoleName(v string) *RestoreDBClusterFromS3Input

SetDomainIAMRoleName sets the DomainIAMRoleName field's value.

func (*RestoreDBClusterFromS3Input) SetEnableCloudwatchLogsExports

func (s *RestoreDBClusterFromS3Input) SetEnableCloudwatchLogsExports(v []*string) *RestoreDBClusterFromS3Input

SetEnableCloudwatchLogsExports sets the EnableCloudwatchLogsExports field's value.

func (*RestoreDBClusterFromS3Input) SetEnableIAMDatabaseAuthentication

func (s *RestoreDBClusterFromS3Input) SetEnableIAMDatabaseAuthentication(v bool) *RestoreDBClusterFromS3Input

SetEnableIAMDatabaseAuthentication sets the EnableIAMDatabaseAuthentication field's value.

func (*RestoreDBClusterFromS3Input) SetEngine

func (s *RestoreDBClusterFromS3Input) SetEngine(v string) *RestoreDBClusterFromS3Input

SetEngine sets the Engine field's value.

func (*RestoreDBClusterFromS3Input) SetEngineVersion

func (s *RestoreDBClusterFromS3Input) SetEngineVersion(v string) *RestoreDBClusterFromS3Input

SetEngineVersion sets the EngineVersion field's value.

func (*RestoreDBClusterFromS3Input) SetKmsKeyId

func (s *RestoreDBClusterFromS3Input) SetKmsKeyId(v string) *RestoreDBClusterFromS3Input

SetKmsKeyId sets the KmsKeyId field's value.

func (*RestoreDBClusterFromS3Input) SetManageMasterUserPassword

func (s *RestoreDBClusterFromS3Input) SetManageMasterUserPassword(v bool) *RestoreDBClusterFromS3Input

SetManageMasterUserPassword sets the ManageMasterUserPassword field's value.

func (*RestoreDBClusterFromS3Input) SetMasterUserPassword

func (s *RestoreDBClusterFromS3Input) SetMasterUserPassword(v string) *RestoreDBClusterFromS3Input

SetMasterUserPassword sets the MasterUserPassword field's value.

func (*RestoreDBClusterFromS3Input) SetMasterUserSecretKmsKeyId

func (s *RestoreDBClusterFromS3Input) SetMasterUserSecretKmsKeyId(v string) *RestoreDBClusterFromS3Input

SetMasterUserSecretKmsKeyId sets the MasterUserSecretKmsKeyId field's value.

func (*RestoreDBClusterFromS3Input) SetMasterUsername

func (s *RestoreDBClusterFromS3Input) SetMasterUsername(v string) *RestoreDBClusterFromS3Input

SetMasterUsername sets the MasterUsername field's value.

func (*RestoreDBClusterFromS3Input) SetNetworkType

func (s *RestoreDBClusterFromS3Input) SetNetworkType(v string) *RestoreDBClusterFromS3Input

SetNetworkType sets the NetworkType field's value.

func (*RestoreDBClusterFromS3Input) SetOptionGroupName

func (s *RestoreDBClusterFromS3Input) SetOptionGroupName(v string) *RestoreDBClusterFromS3Input

SetOptionGroupName sets the OptionGroupName field's value.

func (*RestoreDBClusterFromS3Input) SetPort

func (s *RestoreDBClusterFromS3Input) SetPort(v int64) *RestoreDBClusterFromS3Input

SetPort sets the Port field's value.

func (*RestoreDBClusterFromS3Input) SetPreferredBackupWindow

func (s *RestoreDBClusterFromS3Input) SetPreferredBackupWindow(v string) *RestoreDBClusterFromS3Input

SetPreferredBackupWindow sets the PreferredBackupWindow field's value.

func (*RestoreDBClusterFromS3Input) SetPreferredMaintenanceWindow

func (s *RestoreDBClusterFromS3Input) SetPreferredMaintenanceWindow(v string) *RestoreDBClusterFromS3Input

SetPreferredMaintenanceWindow sets the PreferredMaintenanceWindow field's value.

func (*RestoreDBClusterFromS3Input) SetS3BucketName

func (s *RestoreDBClusterFromS3Input) SetS3BucketName(v string) *RestoreDBClusterFromS3Input

SetS3BucketName sets the S3BucketName field's value.

func (*RestoreDBClusterFromS3Input) SetS3IngestionRoleArn

func (s *RestoreDBClusterFromS3Input) SetS3IngestionRoleArn(v string) *RestoreDBClusterFromS3Input

SetS3IngestionRoleArn sets the S3IngestionRoleArn field's value.

func (*RestoreDBClusterFromS3Input) SetS3Prefix

func (s *RestoreDBClusterFromS3Input) SetS3Prefix(v string) *RestoreDBClusterFromS3Input

SetS3Prefix sets the S3Prefix field's value.

func (*RestoreDBClusterFromS3Input) SetServerlessV2ScalingConfiguration

func (s *RestoreDBClusterFromS3Input) SetServerlessV2ScalingConfiguration(v *ServerlessV2ScalingConfiguration) *RestoreDBClusterFromS3Input

SetServerlessV2ScalingConfiguration sets the ServerlessV2ScalingConfiguration field's value.

func (*RestoreDBClusterFromS3Input) SetSourceEngine

func (s *RestoreDBClusterFromS3Input) SetSourceEngine(v string) *RestoreDBClusterFromS3Input

SetSourceEngine sets the SourceEngine field's value.

func (*RestoreDBClusterFromS3Input) SetSourceEngineVersion

func (s *RestoreDBClusterFromS3Input) SetSourceEngineVersion(v string) *RestoreDBClusterFromS3Input

SetSourceEngineVersion sets the SourceEngineVersion field's value.

func (*RestoreDBClusterFromS3Input) SetStorageEncrypted

func (s *RestoreDBClusterFromS3Input) SetStorageEncrypted(v bool) *RestoreDBClusterFromS3Input

SetStorageEncrypted sets the StorageEncrypted field's value.

func (*RestoreDBClusterFromS3Input) SetStorageType

func (s *RestoreDBClusterFromS3Input) SetStorageType(v string) *RestoreDBClusterFromS3Input

SetStorageType sets the StorageType field's value.

func (*RestoreDBClusterFromS3Input) SetTags

func (s *RestoreDBClusterFromS3Input) SetTags(v []*Tag) *RestoreDBClusterFromS3Input

SetTags sets the Tags field's value.

func (*RestoreDBClusterFromS3Input) SetVpcSecurityGroupIds

func (s *RestoreDBClusterFromS3Input) SetVpcSecurityGroupIds(v []*string) *RestoreDBClusterFromS3Input

SetVpcSecurityGroupIds sets the VpcSecurityGroupIds field's value.

func (RestoreDBClusterFromS3Input) String

func (s RestoreDBClusterFromS3Input) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RestoreDBClusterFromS3Input) Validate

func (s *RestoreDBClusterFromS3Input) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RestoreDBClusterFromS3Output

type RestoreDBClusterFromS3Output struct {

    // Contains the details of an Amazon Aurora DB cluster or Multi-AZ DB cluster.
    //
    // For an Amazon Aurora DB cluster, this data type is used as a response element
    // in the operations CreateDBCluster, DeleteDBCluster, DescribeDBClusters, FailoverDBCluster,
    // ModifyDBCluster, PromoteReadReplicaDBCluster, RestoreDBClusterFromS3, RestoreDBClusterFromSnapshot,
    // RestoreDBClusterToPointInTime, StartDBCluster, and StopDBCluster.
    //
    // For a Multi-AZ DB cluster, this data type is used as a response element in
    // the operations CreateDBCluster, DeleteDBCluster, DescribeDBClusters, FailoverDBCluster,
    // ModifyDBCluster, RebootDBCluster, RestoreDBClusterFromSnapshot, and RestoreDBClusterToPointInTime.
    //
    // For more information on Amazon Aurora DB clusters, see What is Amazon Aurora?
    // (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html)
    // in the Amazon Aurora User Guide.
    //
    // For more information on Multi-AZ DB clusters, see Multi-AZ deployments with
    // two readable standby DB instances (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html)
    // in the Amazon RDS User Guide.
    DBCluster *DBCluster `type:"structure"`
    // contains filtered or unexported fields
}

func (RestoreDBClusterFromS3Output) GoString

func (s RestoreDBClusterFromS3Output) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RestoreDBClusterFromS3Output) SetDBCluster

func (s *RestoreDBClusterFromS3Output) SetDBCluster(v *DBCluster) *RestoreDBClusterFromS3Output

SetDBCluster sets the DBCluster field's value.

func (RestoreDBClusterFromS3Output) String

func (s RestoreDBClusterFromS3Output) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RestoreDBClusterFromSnapshotInput

type RestoreDBClusterFromSnapshotInput struct {

    // Provides the list of Availability Zones (AZs) where instances in the restored
    // DB cluster can be created.
    //
    // Valid for: Aurora DB clusters only
    AvailabilityZones []*string `locationNameList:"AvailabilityZone" type:"list"`

    // The target backtrack window, in seconds. To disable backtracking, set this
    // value to 0.
    //
    // Currently, Backtrack is only supported for Aurora MySQL DB clusters.
    //
    // Default: 0
    //
    // Constraints:
    //
    //    * If specified, this value must be set to a number from 0 to 259,200 (72
    //    hours).
    //
    // Valid for: Aurora DB clusters only
    BacktrackWindow *int64 `type:"long"`

    // Specifies whether to copy all tags from the restored DB cluster to snapshots
    // of the restored DB cluster. The default is not to copy them.
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    CopyTagsToSnapshot *bool `type:"boolean"`

    // The name of the DB cluster to create from the DB snapshot or DB cluster snapshot.
    // This parameter isn't case-sensitive.
    //
    // Constraints:
    //
    //    * Must contain from 1 to 63 letters, numbers, or hyphens
    //
    //    * First character must be a letter
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens
    //
    // Example: my-snapshot-id
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    //
    // DBClusterIdentifier is a required field
    DBClusterIdentifier *string `type:"string" required:"true"`

    // The compute and memory capacity of the each DB instance in the Multi-AZ DB
    // cluster, for example db.m6gd.xlarge. Not all DB instance classes are available
    // in all Amazon Web Services Regions, or for all database engines.
    //
    // For the full list of DB instance classes, and availability for your engine,
    // see DB Instance Class (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html)
    // in the Amazon RDS User Guide.
    //
    // Valid for: Multi-AZ DB clusters only
    DBClusterInstanceClass *string `type:"string"`

    // The name of the DB cluster parameter group to associate with this DB cluster.
    // If this argument is omitted, the default DB cluster parameter group for the
    // specified engine is used.
    //
    // Constraints:
    //
    //    * If supplied, must match the name of an existing default DB cluster parameter
    //    group.
    //
    //    * Must be 1 to 255 letters, numbers, or hyphens.
    //
    //    * First character must be a letter.
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens.
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    DBClusterParameterGroupName *string `type:"string"`

    // The name of the DB subnet group to use for the new DB cluster.
    //
    // Constraints: If supplied, must match the name of an existing DB subnet group.
    //
    // Example: mydbsubnetgroup
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    DBSubnetGroupName *string `type:"string"`

    // The database name for the restored DB cluster.
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    DatabaseName *string `type:"string"`

    // Specifies whether to enable deletion protection for the DB cluster. The database
    // can't be deleted when deletion protection is enabled. By default, deletion
    // protection isn't enabled.
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    DeletionProtection *bool `type:"boolean"`

    // The Active Directory directory ID to restore the DB cluster in. The domain
    // must be created prior to this operation. Currently, only MySQL, Microsoft
    // SQL Server, Oracle, and PostgreSQL DB instances can be created in an Active
    // Directory Domain.
    //
    // For more information, see Kerberos Authentication (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html)
    // in the Amazon RDS User Guide.
    //
    // Valid for: Aurora DB clusters only
    Domain *string `type:"string"`

    // The name of the IAM role to be used when making API calls to the Directory
    // Service.
    //
    // Valid for: Aurora DB clusters only
    DomainIAMRoleName *string `type:"string"`

    // The list of logs that the restored DB cluster is to export to Amazon CloudWatch
    // Logs. The values in the list depend on the DB engine being used.
    //
    // RDS for MySQL
    //
    // Possible values are error, general, and slowquery.
    //
    // RDS for PostgreSQL
    //
    // Possible values are postgresql and upgrade.
    //
    // Aurora MySQL
    //
    // Possible values are audit, error, general, and slowquery.
    //
    // Aurora PostgreSQL
    //
    // Possible value is postgresql.
    //
    // For more information about exporting CloudWatch Logs for Amazon RDS, see
    // Publishing Database Logs to Amazon CloudWatch Logs (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch)
    // in the Amazon RDS User Guide.
    //
    // For more information about exporting CloudWatch Logs for Amazon Aurora, see
    // Publishing Database Logs to Amazon CloudWatch Logs (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch)
    // in the Amazon Aurora User Guide.
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    EnableCloudwatchLogsExports []*string `type:"list"`

    // Specifies whether to enable mapping of Amazon Web Services Identity and Access
    // Management (IAM) accounts to database accounts. By default, mapping isn't
    // enabled.
    //
    // For more information, see IAM Database Authentication (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html)
    // in the Amazon Aurora User Guide.
    //
    // Valid for: Aurora DB clusters only
    EnableIAMDatabaseAuthentication *bool `type:"boolean"`

    // The database engine to use for the new DB cluster.
    //
    // Default: The same as source
    //
    // Constraint: Must be compatible with the engine of the source
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    //
    // Engine is a required field
    Engine *string `type:"string" required:"true"`

    // The DB engine mode of the DB cluster, either provisioned or serverless.
    //
    // For more information, see CreateDBCluster (https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBCluster.html).
    //
    // Valid for: Aurora DB clusters only
    EngineMode *string `type:"string"`

    // The version of the database engine to use for the new DB cluster. If you
    // don't specify an engine version, the default version for the database engine
    // in the Amazon Web Services Region is used.
    //
    // To list all of the available engine versions for Aurora MySQL, use the following
    // command:
    //
    // aws rds describe-db-engine-versions --engine aurora-mysql --query "DBEngineVersions[].EngineVersion"
    //
    // To list all of the available engine versions for Aurora PostgreSQL, use the
    // following command:
    //
    // aws rds describe-db-engine-versions --engine aurora-postgresql --query "DBEngineVersions[].EngineVersion"
    //
    // To list all of the available engine versions for RDS for MySQL, use the following
    // command:
    //
    // aws rds describe-db-engine-versions --engine mysql --query "DBEngineVersions[].EngineVersion"
    //
    // To list all of the available engine versions for RDS for PostgreSQL, use
    // the following command:
    //
    // aws rds describe-db-engine-versions --engine postgres --query "DBEngineVersions[].EngineVersion"
    //
    // Aurora MySQL
    //
    // See Database engine updates for Amazon Aurora MySQL (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Updates.html)
    // in the Amazon Aurora User Guide.
    //
    // Aurora PostgreSQL
    //
    // See Amazon Aurora PostgreSQL releases and engine versions (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Updates.20180305.html)
    // in the Amazon Aurora User Guide.
    //
    // MySQL
    //
    // See Amazon RDS for MySQL (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt)
    // in the Amazon RDS User Guide.
    //
    // PostgreSQL
    //
    // See Amazon RDS for PostgreSQL versions and extensions (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts)
    // in the Amazon RDS User Guide.
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    EngineVersion *string `type:"string"`

    // The amount of Provisioned IOPS (input/output operations per second) to be
    // initially allocated for each DB instance in the Multi-AZ DB cluster.
    //
    // For information about valid IOPS values, see Amazon RDS Provisioned IOPS
    // storage (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS)
    // in the Amazon RDS User Guide.
    //
    // Constraints: Must be a multiple between .5 and 50 of the storage amount for
    // the DB instance.
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    Iops *int64 `type:"integer"`

    // The Amazon Web Services KMS key identifier to use when restoring an encrypted
    // DB cluster from a DB snapshot or DB cluster snapshot.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key. To use a KMS key in a different Amazon
    // Web Services account, specify the key ARN or alias ARN.
    //
    // When you don't specify a value for the KmsKeyId parameter, then the following
    // occurs:
    //
    //    * If the DB snapshot or DB cluster snapshot in SnapshotIdentifier is encrypted,
    //    then the restored DB cluster is encrypted using the KMS key that was used
    //    to encrypt the DB snapshot or DB cluster snapshot.
    //
    //    * If the DB snapshot or DB cluster snapshot in SnapshotIdentifier isn't
    //    encrypted, then the restored DB cluster isn't encrypted.
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    KmsKeyId *string `type:"string"`

    // The network type of the DB cluster.
    //
    // Valid Values:
    //
    //    * IPV4
    //
    //    * DUAL
    //
    // The network type is determined by the DBSubnetGroup specified for the DB
    // cluster. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and
    // the IPv6 protocols (DUAL).
    //
    // For more information, see Working with a DB instance in a VPC (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html)
    // in the Amazon Aurora User Guide.
    //
    // Valid for: Aurora DB clusters only
    NetworkType *string `type:"string"`

    // The name of the option group to use for the restored DB cluster.
    //
    // DB clusters are associated with a default option group that can't be modified.
    OptionGroupName *string `type:"string"`

    // The port number on which the new DB cluster accepts connections.
    //
    // Constraints: This value must be 1150-65535
    //
    // Default: The same port as the original DB cluster.
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    Port *int64 `type:"integer"`

    // Specifies whether the DB cluster is publicly accessible.
    //
    // When the DB cluster is publicly accessible, its Domain Name System (DNS)
    // endpoint resolves to the private IP address from within the DB cluster's
    // virtual private cloud (VPC). It resolves to the public IP address from outside
    // of the DB cluster's VPC. Access to the DB cluster is ultimately controlled
    // by the security group it uses. That public access is not permitted if the
    // security group assigned to the DB cluster doesn't permit it.
    //
    // When the DB cluster isn't publicly accessible, it is an internal DB cluster
    // with a DNS name that resolves to a private IP address.
    //
    // Default: The default behavior varies depending on whether DBSubnetGroupName
    // is specified.
    //
    // If DBSubnetGroupName isn't specified, and PubliclyAccessible isn't specified,
    // the following applies:
    //
    //    * If the default VPC in the target Region doesn’t have an internet gateway
    //    attached to it, the DB cluster is private.
    //
    //    * If the default VPC in the target Region has an internet gateway attached
    //    to it, the DB cluster is public.
    //
    // If DBSubnetGroupName is specified, and PubliclyAccessible isn't specified,
    // the following applies:
    //
    //    * If the subnets are part of a VPC that doesn’t have an internet gateway
    //    attached to it, the DB cluster is private.
    //
    //    * If the subnets are part of a VPC that has an internet gateway attached
    //    to it, the DB cluster is public.
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    PubliclyAccessible *bool `type:"boolean"`

    // Reserved for future use.
    RdsCustomClusterConfiguration *RdsCustomClusterConfiguration `type:"structure"`

    // For DB clusters in serverless DB engine mode, the scaling properties of the
    // DB cluster.
    //
    // Valid for: Aurora DB clusters only
    ScalingConfiguration *ScalingConfiguration `type:"structure"`

    // Contains the scaling configuration of an Aurora Serverless v2 DB cluster.
    //
    // For more information, see Using Amazon Aurora Serverless v2 (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html)
    // in the Amazon Aurora User Guide.
    ServerlessV2ScalingConfiguration *ServerlessV2ScalingConfiguration `type:"structure"`

    // The identifier for the DB snapshot or DB cluster snapshot to restore from.
    //
    // You can use either the name or the Amazon Resource Name (ARN) to specify
    // a DB cluster snapshot. However, you can use only the ARN to specify a DB
    // snapshot.
    //
    // Constraints:
    //
    //    * Must match the identifier of an existing Snapshot.
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    //
    // SnapshotIdentifier is a required field
    SnapshotIdentifier *string `type:"string" required:"true"`

    // Specifies the storage type to be associated with the DB cluster.
    //
    // When specified for a Multi-AZ DB cluster, a value for the Iops parameter
    // is required.
    //
    // Valid Values: aurora, aurora-iopt1 (Aurora DB clusters); io1 (Multi-AZ DB
    // clusters)
    //
    // Default: aurora (Aurora DB clusters); io1 (Multi-AZ DB clusters)
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    StorageType *string `type:"string"`

    // The tags to be assigned to the restored DB cluster.
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    Tags []*Tag `locationNameList:"Tag" type:"list"`

    // A list of VPC security groups that the new DB cluster will belong to.
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    VpcSecurityGroupIds []*string `locationNameList:"VpcSecurityGroupId" type:"list"`
    // contains filtered or unexported fields
}

func (RestoreDBClusterFromSnapshotInput) GoString

func (s RestoreDBClusterFromSnapshotInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RestoreDBClusterFromSnapshotInput) SetAvailabilityZones

func (s *RestoreDBClusterFromSnapshotInput) SetAvailabilityZones(v []*string) *RestoreDBClusterFromSnapshotInput

SetAvailabilityZones sets the AvailabilityZones field's value.

func (*RestoreDBClusterFromSnapshotInput) SetBacktrackWindow

func (s *RestoreDBClusterFromSnapshotInput) SetBacktrackWindow(v int64) *RestoreDBClusterFromSnapshotInput

SetBacktrackWindow sets the BacktrackWindow field's value.

func (*RestoreDBClusterFromSnapshotInput) SetCopyTagsToSnapshot

func (s *RestoreDBClusterFromSnapshotInput) SetCopyTagsToSnapshot(v bool) *RestoreDBClusterFromSnapshotInput

SetCopyTagsToSnapshot sets the CopyTagsToSnapshot field's value.

func (*RestoreDBClusterFromSnapshotInput) SetDBClusterIdentifier

func (s *RestoreDBClusterFromSnapshotInput) SetDBClusterIdentifier(v string) *RestoreDBClusterFromSnapshotInput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*RestoreDBClusterFromSnapshotInput) SetDBClusterInstanceClass

func (s *RestoreDBClusterFromSnapshotInput) SetDBClusterInstanceClass(v string) *RestoreDBClusterFromSnapshotInput

SetDBClusterInstanceClass sets the DBClusterInstanceClass field's value.

func (*RestoreDBClusterFromSnapshotInput) SetDBClusterParameterGroupName

func (s *RestoreDBClusterFromSnapshotInput) SetDBClusterParameterGroupName(v string) *RestoreDBClusterFromSnapshotInput

SetDBClusterParameterGroupName sets the DBClusterParameterGroupName field's value.

func (*RestoreDBClusterFromSnapshotInput) SetDBSubnetGroupName

func (s *RestoreDBClusterFromSnapshotInput) SetDBSubnetGroupName(v string) *RestoreDBClusterFromSnapshotInput

SetDBSubnetGroupName sets the DBSubnetGroupName field's value.

func (*RestoreDBClusterFromSnapshotInput) SetDatabaseName

func (s *RestoreDBClusterFromSnapshotInput) SetDatabaseName(v string) *RestoreDBClusterFromSnapshotInput

SetDatabaseName sets the DatabaseName field's value.

func (*RestoreDBClusterFromSnapshotInput) SetDeletionProtection

func (s *RestoreDBClusterFromSnapshotInput) SetDeletionProtection(v bool) *RestoreDBClusterFromSnapshotInput

SetDeletionProtection sets the DeletionProtection field's value.

func (*RestoreDBClusterFromSnapshotInput) SetDomain

func (s *RestoreDBClusterFromSnapshotInput) SetDomain(v string) *RestoreDBClusterFromSnapshotInput

SetDomain sets the Domain field's value.

func (*RestoreDBClusterFromSnapshotInput) SetDomainIAMRoleName

func (s *RestoreDBClusterFromSnapshotInput) SetDomainIAMRoleName(v string) *RestoreDBClusterFromSnapshotInput

SetDomainIAMRoleName sets the DomainIAMRoleName field's value.

func (*RestoreDBClusterFromSnapshotInput) SetEnableCloudwatchLogsExports

func (s *RestoreDBClusterFromSnapshotInput) SetEnableCloudwatchLogsExports(v []*string) *RestoreDBClusterFromSnapshotInput

SetEnableCloudwatchLogsExports sets the EnableCloudwatchLogsExports field's value.

func (*RestoreDBClusterFromSnapshotInput) SetEnableIAMDatabaseAuthentication

func (s *RestoreDBClusterFromSnapshotInput) SetEnableIAMDatabaseAuthentication(v bool) *RestoreDBClusterFromSnapshotInput

SetEnableIAMDatabaseAuthentication sets the EnableIAMDatabaseAuthentication field's value.

func (*RestoreDBClusterFromSnapshotInput) SetEngine

func (s *RestoreDBClusterFromSnapshotInput) SetEngine(v string) *RestoreDBClusterFromSnapshotInput

SetEngine sets the Engine field's value.

func (*RestoreDBClusterFromSnapshotInput) SetEngineMode

func (s *RestoreDBClusterFromSnapshotInput) SetEngineMode(v string) *RestoreDBClusterFromSnapshotInput

SetEngineMode sets the EngineMode field's value.

func (*RestoreDBClusterFromSnapshotInput) SetEngineVersion

func (s *RestoreDBClusterFromSnapshotInput) SetEngineVersion(v string) *RestoreDBClusterFromSnapshotInput

SetEngineVersion sets the EngineVersion field's value.

func (*RestoreDBClusterFromSnapshotInput) SetIops

func (s *RestoreDBClusterFromSnapshotInput) SetIops(v int64) *RestoreDBClusterFromSnapshotInput

SetIops sets the Iops field's value.

func (*RestoreDBClusterFromSnapshotInput) SetKmsKeyId

func (s *RestoreDBClusterFromSnapshotInput) SetKmsKeyId(v string) *RestoreDBClusterFromSnapshotInput

SetKmsKeyId sets the KmsKeyId field's value.

func (*RestoreDBClusterFromSnapshotInput) SetNetworkType

func (s *RestoreDBClusterFromSnapshotInput) SetNetworkType(v string) *RestoreDBClusterFromSnapshotInput

SetNetworkType sets the NetworkType field's value.

func (*RestoreDBClusterFromSnapshotInput) SetOptionGroupName

func (s *RestoreDBClusterFromSnapshotInput) SetOptionGroupName(v string) *RestoreDBClusterFromSnapshotInput

SetOptionGroupName sets the OptionGroupName field's value.

func (*RestoreDBClusterFromSnapshotInput) SetPort

func (s *RestoreDBClusterFromSnapshotInput) SetPort(v int64) *RestoreDBClusterFromSnapshotInput

SetPort sets the Port field's value.

func (*RestoreDBClusterFromSnapshotInput) SetPubliclyAccessible

func (s *RestoreDBClusterFromSnapshotInput) SetPubliclyAccessible(v bool) *RestoreDBClusterFromSnapshotInput

SetPubliclyAccessible sets the PubliclyAccessible field's value.

func (*RestoreDBClusterFromSnapshotInput) SetRdsCustomClusterConfiguration

func (s *RestoreDBClusterFromSnapshotInput) SetRdsCustomClusterConfiguration(v *RdsCustomClusterConfiguration) *RestoreDBClusterFromSnapshotInput

SetRdsCustomClusterConfiguration sets the RdsCustomClusterConfiguration field's value.

func (*RestoreDBClusterFromSnapshotInput) SetScalingConfiguration

func (s *RestoreDBClusterFromSnapshotInput) SetScalingConfiguration(v *ScalingConfiguration) *RestoreDBClusterFromSnapshotInput

SetScalingConfiguration sets the ScalingConfiguration field's value.

func (*RestoreDBClusterFromSnapshotInput) SetServerlessV2ScalingConfiguration

func (s *RestoreDBClusterFromSnapshotInput) SetServerlessV2ScalingConfiguration(v *ServerlessV2ScalingConfiguration) *RestoreDBClusterFromSnapshotInput

SetServerlessV2ScalingConfiguration sets the ServerlessV2ScalingConfiguration field's value.

func (*RestoreDBClusterFromSnapshotInput) SetSnapshotIdentifier

func (s *RestoreDBClusterFromSnapshotInput) SetSnapshotIdentifier(v string) *RestoreDBClusterFromSnapshotInput

SetSnapshotIdentifier sets the SnapshotIdentifier field's value.

func (*RestoreDBClusterFromSnapshotInput) SetStorageType

func (s *RestoreDBClusterFromSnapshotInput) SetStorageType(v string) *RestoreDBClusterFromSnapshotInput

SetStorageType sets the StorageType field's value.

func (*RestoreDBClusterFromSnapshotInput) SetTags

func (s *RestoreDBClusterFromSnapshotInput) SetTags(v []*Tag) *RestoreDBClusterFromSnapshotInput

SetTags sets the Tags field's value.

func (*RestoreDBClusterFromSnapshotInput) SetVpcSecurityGroupIds

func (s *RestoreDBClusterFromSnapshotInput) SetVpcSecurityGroupIds(v []*string) *RestoreDBClusterFromSnapshotInput

SetVpcSecurityGroupIds sets the VpcSecurityGroupIds field's value.

func (RestoreDBClusterFromSnapshotInput) String

func (s RestoreDBClusterFromSnapshotInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RestoreDBClusterFromSnapshotInput) Validate

func (s *RestoreDBClusterFromSnapshotInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RestoreDBClusterFromSnapshotOutput

type RestoreDBClusterFromSnapshotOutput struct {

    // Contains the details of an Amazon Aurora DB cluster or Multi-AZ DB cluster.
    //
    // For an Amazon Aurora DB cluster, this data type is used as a response element
    // in the operations CreateDBCluster, DeleteDBCluster, DescribeDBClusters, FailoverDBCluster,
    // ModifyDBCluster, PromoteReadReplicaDBCluster, RestoreDBClusterFromS3, RestoreDBClusterFromSnapshot,
    // RestoreDBClusterToPointInTime, StartDBCluster, and StopDBCluster.
    //
    // For a Multi-AZ DB cluster, this data type is used as a response element in
    // the operations CreateDBCluster, DeleteDBCluster, DescribeDBClusters, FailoverDBCluster,
    // ModifyDBCluster, RebootDBCluster, RestoreDBClusterFromSnapshot, and RestoreDBClusterToPointInTime.
    //
    // For more information on Amazon Aurora DB clusters, see What is Amazon Aurora?
    // (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html)
    // in the Amazon Aurora User Guide.
    //
    // For more information on Multi-AZ DB clusters, see Multi-AZ deployments with
    // two readable standby DB instances (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html)
    // in the Amazon RDS User Guide.
    DBCluster *DBCluster `type:"structure"`
    // contains filtered or unexported fields
}

func (RestoreDBClusterFromSnapshotOutput) GoString

func (s RestoreDBClusterFromSnapshotOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RestoreDBClusterFromSnapshotOutput) SetDBCluster

func (s *RestoreDBClusterFromSnapshotOutput) SetDBCluster(v *DBCluster) *RestoreDBClusterFromSnapshotOutput

SetDBCluster sets the DBCluster field's value.

func (RestoreDBClusterFromSnapshotOutput) String

func (s RestoreDBClusterFromSnapshotOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RestoreDBClusterToPointInTimeInput

type RestoreDBClusterToPointInTimeInput struct {

    // The target backtrack window, in seconds. To disable backtracking, set this
    // value to 0.
    //
    // Default: 0
    //
    // Constraints:
    //
    //    * If specified, this value must be set to a number from 0 to 259,200 (72
    //    hours).
    //
    // Valid for: Aurora MySQL DB clusters only
    BacktrackWindow *int64 `type:"long"`

    // Specifies whether to copy all tags from the restored DB cluster to snapshots
    // of the restored DB cluster. The default is not to copy them.
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    CopyTagsToSnapshot *bool `type:"boolean"`

    // The name of the new DB cluster to be created.
    //
    // Constraints:
    //
    //    * Must contain from 1 to 63 letters, numbers, or hyphens
    //
    //    * First character must be a letter
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    //
    // DBClusterIdentifier is a required field
    DBClusterIdentifier *string `type:"string" required:"true"`

    // The compute and memory capacity of the each DB instance in the Multi-AZ DB
    // cluster, for example db.m6gd.xlarge. Not all DB instance classes are available
    // in all Amazon Web Services Regions, or for all database engines.
    //
    // For the full list of DB instance classes, and availability for your engine,
    // see DB instance class (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html)
    // in the Amazon RDS User Guide.
    //
    // Valid for: Multi-AZ DB clusters only
    DBClusterInstanceClass *string `type:"string"`

    // The name of the custom DB cluster parameter group to associate with this
    // DB cluster.
    //
    // If the DBClusterParameterGroupName parameter is omitted, the default DB cluster
    // parameter group for the specified engine is used.
    //
    // Constraints:
    //
    //    * If supplied, must match the name of an existing DB cluster parameter
    //    group.
    //
    //    * Must be 1 to 255 letters, numbers, or hyphens.
    //
    //    * First character must be a letter.
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens.
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    DBClusterParameterGroupName *string `type:"string"`

    // The DB subnet group name to use for the new DB cluster.
    //
    // Constraints: If supplied, must match the name of an existing DBSubnetGroup.
    //
    // Example: mydbsubnetgroup
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    DBSubnetGroupName *string `type:"string"`

    // Specifies whether to enable deletion protection for the DB cluster. The database
    // can't be deleted when deletion protection is enabled. By default, deletion
    // protection isn't enabled.
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    DeletionProtection *bool `type:"boolean"`

    // The Active Directory directory ID to restore the DB cluster in. The domain
    // must be created prior to this operation.
    //
    // For Amazon Aurora DB clusters, Amazon RDS can use Kerberos Authentication
    // to authenticate users that connect to the DB cluster. For more information,
    // see Kerberos Authentication (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/kerberos-authentication.html)
    // in the Amazon Aurora User Guide.
    //
    // Valid for: Aurora DB clusters only
    Domain *string `type:"string"`

    // The name of the IAM role to be used when making API calls to the Directory
    // Service.
    //
    // Valid for: Aurora DB clusters only
    DomainIAMRoleName *string `type:"string"`

    // The list of logs that the restored DB cluster is to export to CloudWatch
    // Logs. The values in the list depend on the DB engine being used.
    //
    // RDS for MySQL
    //
    // Possible values are error, general, and slowquery.
    //
    // RDS for PostgreSQL
    //
    // Possible values are postgresql and upgrade.
    //
    // Aurora MySQL
    //
    // Possible values are audit, error, general, and slowquery.
    //
    // Aurora PostgreSQL
    //
    // Possible value is postgresql.
    //
    // For more information about exporting CloudWatch Logs for Amazon RDS, see
    // Publishing Database Logs to Amazon CloudWatch Logs (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch)
    // in the Amazon RDS User Guide.
    //
    // For more information about exporting CloudWatch Logs for Amazon Aurora, see
    // Publishing Database Logs to Amazon CloudWatch Logs (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch)
    // in the Amazon Aurora User Guide.
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    EnableCloudwatchLogsExports []*string `type:"list"`

    // Specifies whether to enable mapping of Amazon Web Services Identity and Access
    // Management (IAM) accounts to database accounts. By default, mapping isn't
    // enabled.
    //
    // For more information, see IAM Database Authentication (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html)
    // in the Amazon Aurora User Guide.
    //
    // Valid for: Aurora DB clusters only
    EnableIAMDatabaseAuthentication *bool `type:"boolean"`

    // The engine mode of the new cluster. Specify provisioned or serverless, depending
    // on the type of the cluster you are creating. You can create an Aurora Serverless
    // v1 clone from a provisioned cluster, or a provisioned clone from an Aurora
    // Serverless v1 cluster. To create a clone that is an Aurora Serverless v1
    // cluster, the original cluster must be an Aurora Serverless v1 cluster or
    // an encrypted provisioned cluster.
    //
    // Valid for: Aurora DB clusters only
    EngineMode *string `type:"string"`

    // The amount of Provisioned IOPS (input/output operations per second) to be
    // initially allocated for each DB instance in the Multi-AZ DB cluster.
    //
    // For information about valid IOPS values, see Amazon RDS Provisioned IOPS
    // storage (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS)
    // in the Amazon RDS User Guide.
    //
    // Constraints: Must be a multiple between .5 and 50 of the storage amount for
    // the DB instance.
    //
    // Valid for: Multi-AZ DB clusters only
    Iops *int64 `type:"integer"`

    // The Amazon Web Services KMS key identifier to use when restoring an encrypted
    // DB cluster from an encrypted DB cluster.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key. To use a KMS key in a different Amazon
    // Web Services account, specify the key ARN or alias ARN.
    //
    // You can restore to a new DB cluster and encrypt the new DB cluster with a
    // KMS key that is different from the KMS key used to encrypt the source DB
    // cluster. The new DB cluster is encrypted with the KMS key identified by the
    // KmsKeyId parameter.
    //
    // If you don't specify a value for the KmsKeyId parameter, then the following
    // occurs:
    //
    //    * If the DB cluster is encrypted, then the restored DB cluster is encrypted
    //    using the KMS key that was used to encrypt the source DB cluster.
    //
    //    * If the DB cluster isn't encrypted, then the restored DB cluster isn't
    //    encrypted.
    //
    // If DBClusterIdentifier refers to a DB cluster that isn't encrypted, then
    // the restore request is rejected.
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    KmsKeyId *string `type:"string"`

    // The network type of the DB cluster.
    //
    // Valid Values:
    //
    //    * IPV4
    //
    //    * DUAL
    //
    // The network type is determined by the DBSubnetGroup specified for the DB
    // cluster. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and
    // the IPv6 protocols (DUAL).
    //
    // For more information, see Working with a DB instance in a VPC (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html)
    // in the Amazon Aurora User Guide.
    //
    // Valid for: Aurora DB clusters only
    NetworkType *string `type:"string"`

    // The name of the option group for the new DB cluster.
    //
    // DB clusters are associated with a default option group that can't be modified.
    OptionGroupName *string `type:"string"`

    // The port number on which the new DB cluster accepts connections.
    //
    // Constraints: A value from 1150-65535.
    //
    // Default: The default port for the engine.
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    Port *int64 `type:"integer"`

    // Specifies whether the DB cluster is publicly accessible.
    //
    // When the DB cluster is publicly accessible, its Domain Name System (DNS)
    // endpoint resolves to the private IP address from within the DB cluster's
    // virtual private cloud (VPC). It resolves to the public IP address from outside
    // of the DB cluster's VPC. Access to the DB cluster is ultimately controlled
    // by the security group it uses. That public access is not permitted if the
    // security group assigned to the DB cluster doesn't permit it.
    //
    // When the DB cluster isn't publicly accessible, it is an internal DB cluster
    // with a DNS name that resolves to a private IP address.
    //
    // Default: The default behavior varies depending on whether DBSubnetGroupName
    // is specified.
    //
    // If DBSubnetGroupName isn't specified, and PubliclyAccessible isn't specified,
    // the following applies:
    //
    //    * If the default VPC in the target Region doesn’t have an internet gateway
    //    attached to it, the DB cluster is private.
    //
    //    * If the default VPC in the target Region has an internet gateway attached
    //    to it, the DB cluster is public.
    //
    // If DBSubnetGroupName is specified, and PubliclyAccessible isn't specified,
    // the following applies:
    //
    //    * If the subnets are part of a VPC that doesn’t have an internet gateway
    //    attached to it, the DB cluster is private.
    //
    //    * If the subnets are part of a VPC that has an internet gateway attached
    //    to it, the DB cluster is public.
    //
    // Valid for: Multi-AZ DB clusters only
    PubliclyAccessible *bool `type:"boolean"`

    // Reserved for future use.
    RdsCustomClusterConfiguration *RdsCustomClusterConfiguration `type:"structure"`

    // The date and time to restore the DB cluster to.
    //
    // Valid Values: Value must be a time in Universal Coordinated Time (UTC) format
    //
    // Constraints:
    //
    //    * Must be before the latest restorable time for the DB instance
    //
    //    * Must be specified if UseLatestRestorableTime parameter isn't provided
    //
    //    * Can't be specified if the UseLatestRestorableTime parameter is enabled
    //
    //    * Can't be specified if the RestoreType parameter is copy-on-write
    //
    // Example: 2015-03-07T23:45:00Z
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    RestoreToTime *time.Time `type:"timestamp"`

    // The type of restore to be performed. You can specify one of the following
    // values:
    //
    //    * full-copy - The new DB cluster is restored as a full copy of the source
    //    DB cluster.
    //
    //    * copy-on-write - The new DB cluster is restored as a clone of the source
    //    DB cluster.
    //
    // If you don't specify a RestoreType value, then the new DB cluster is restored
    // as a full copy of the source DB cluster.
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    RestoreType *string `type:"string"`

    // For DB clusters in serverless DB engine mode, the scaling properties of the
    // DB cluster.
    //
    // Valid for: Aurora DB clusters only
    ScalingConfiguration *ScalingConfiguration `type:"structure"`

    // Contains the scaling configuration of an Aurora Serverless v2 DB cluster.
    //
    // For more information, see Using Amazon Aurora Serverless v2 (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html)
    // in the Amazon Aurora User Guide.
    ServerlessV2ScalingConfiguration *ServerlessV2ScalingConfiguration `type:"structure"`

    // The identifier of the source DB cluster from which to restore.
    //
    // Constraints:
    //
    //    * Must match the identifier of an existing DBCluster.
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    SourceDBClusterIdentifier *string `type:"string"`

    // The resource ID of the source DB cluster from which to restore.
    SourceDbClusterResourceId *string `type:"string"`

    // Specifies the storage type to be associated with the DB cluster.
    //
    // When specified for a Multi-AZ DB cluster, a value for the Iops parameter
    // is required.
    //
    // Valid Values: aurora, aurora-iopt1 (Aurora DB clusters); io1 (Multi-AZ DB
    // clusters)
    //
    // Default: aurora (Aurora DB clusters); io1 (Multi-AZ DB clusters)
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    StorageType *string `type:"string"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    Tags []*Tag `locationNameList:"Tag" type:"list"`

    // Specifies whether to restore the DB cluster to the latest restorable backup
    // time. By default, the DB cluster isn't restored to the latest restorable
    // backup time.
    //
    // Constraints: Can't be specified if RestoreToTime parameter is provided.
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    UseLatestRestorableTime *bool `type:"boolean"`

    // A list of VPC security groups that the new DB cluster belongs to.
    //
    // Valid for: Aurora DB clusters and Multi-AZ DB clusters
    VpcSecurityGroupIds []*string `locationNameList:"VpcSecurityGroupId" type:"list"`
    // contains filtered or unexported fields
}

func (RestoreDBClusterToPointInTimeInput) GoString

func (s RestoreDBClusterToPointInTimeInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RestoreDBClusterToPointInTimeInput) SetBacktrackWindow

func (s *RestoreDBClusterToPointInTimeInput) SetBacktrackWindow(v int64) *RestoreDBClusterToPointInTimeInput

SetBacktrackWindow sets the BacktrackWindow field's value.

func (*RestoreDBClusterToPointInTimeInput) SetCopyTagsToSnapshot

func (s *RestoreDBClusterToPointInTimeInput) SetCopyTagsToSnapshot(v bool) *RestoreDBClusterToPointInTimeInput

SetCopyTagsToSnapshot sets the CopyTagsToSnapshot field's value.

func (*RestoreDBClusterToPointInTimeInput) SetDBClusterIdentifier

func (s *RestoreDBClusterToPointInTimeInput) SetDBClusterIdentifier(v string) *RestoreDBClusterToPointInTimeInput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (*RestoreDBClusterToPointInTimeInput) SetDBClusterInstanceClass

func (s *RestoreDBClusterToPointInTimeInput) SetDBClusterInstanceClass(v string) *RestoreDBClusterToPointInTimeInput

SetDBClusterInstanceClass sets the DBClusterInstanceClass field's value.

func (*RestoreDBClusterToPointInTimeInput) SetDBClusterParameterGroupName

func (s *RestoreDBClusterToPointInTimeInput) SetDBClusterParameterGroupName(v string) *RestoreDBClusterToPointInTimeInput

SetDBClusterParameterGroupName sets the DBClusterParameterGroupName field's value.

func (*RestoreDBClusterToPointInTimeInput) SetDBSubnetGroupName

func (s *RestoreDBClusterToPointInTimeInput) SetDBSubnetGroupName(v string) *RestoreDBClusterToPointInTimeInput

SetDBSubnetGroupName sets the DBSubnetGroupName field's value.

func (*RestoreDBClusterToPointInTimeInput) SetDeletionProtection

func (s *RestoreDBClusterToPointInTimeInput) SetDeletionProtection(v bool) *RestoreDBClusterToPointInTimeInput

SetDeletionProtection sets the DeletionProtection field's value.

func (*RestoreDBClusterToPointInTimeInput) SetDomain

func (s *RestoreDBClusterToPointInTimeInput) SetDomain(v string) *RestoreDBClusterToPointInTimeInput

SetDomain sets the Domain field's value.

func (*RestoreDBClusterToPointInTimeInput) SetDomainIAMRoleName

func (s *RestoreDBClusterToPointInTimeInput) SetDomainIAMRoleName(v string) *RestoreDBClusterToPointInTimeInput

SetDomainIAMRoleName sets the DomainIAMRoleName field's value.

func (*RestoreDBClusterToPointInTimeInput) SetEnableCloudwatchLogsExports

func (s *RestoreDBClusterToPointInTimeInput) SetEnableCloudwatchLogsExports(v []*string) *RestoreDBClusterToPointInTimeInput

SetEnableCloudwatchLogsExports sets the EnableCloudwatchLogsExports field's value.

func (*RestoreDBClusterToPointInTimeInput) SetEnableIAMDatabaseAuthentication

func (s *RestoreDBClusterToPointInTimeInput) SetEnableIAMDatabaseAuthentication(v bool) *RestoreDBClusterToPointInTimeInput

SetEnableIAMDatabaseAuthentication sets the EnableIAMDatabaseAuthentication field's value.

func (*RestoreDBClusterToPointInTimeInput) SetEngineMode

func (s *RestoreDBClusterToPointInTimeInput) SetEngineMode(v string) *RestoreDBClusterToPointInTimeInput

SetEngineMode sets the EngineMode field's value.

func (*RestoreDBClusterToPointInTimeInput) SetIops

func (s *RestoreDBClusterToPointInTimeInput) SetIops(v int64) *RestoreDBClusterToPointInTimeInput

SetIops sets the Iops field's value.

func (*RestoreDBClusterToPointInTimeInput) SetKmsKeyId

func (s *RestoreDBClusterToPointInTimeInput) SetKmsKeyId(v string) *RestoreDBClusterToPointInTimeInput

SetKmsKeyId sets the KmsKeyId field's value.

func (*RestoreDBClusterToPointInTimeInput) SetNetworkType

func (s *RestoreDBClusterToPointInTimeInput) SetNetworkType(v string) *RestoreDBClusterToPointInTimeInput

SetNetworkType sets the NetworkType field's value.

func (*RestoreDBClusterToPointInTimeInput) SetOptionGroupName

func (s *RestoreDBClusterToPointInTimeInput) SetOptionGroupName(v string) *RestoreDBClusterToPointInTimeInput

SetOptionGroupName sets the OptionGroupName field's value.

func (*RestoreDBClusterToPointInTimeInput) SetPort

func (s *RestoreDBClusterToPointInTimeInput) SetPort(v int64) *RestoreDBClusterToPointInTimeInput

SetPort sets the Port field's value.

func (*RestoreDBClusterToPointInTimeInput) SetPubliclyAccessible

func (s *RestoreDBClusterToPointInTimeInput) SetPubliclyAccessible(v bool) *RestoreDBClusterToPointInTimeInput

SetPubliclyAccessible sets the PubliclyAccessible field's value.

func (*RestoreDBClusterToPointInTimeInput) SetRdsCustomClusterConfiguration

func (s *RestoreDBClusterToPointInTimeInput) SetRdsCustomClusterConfiguration(v *RdsCustomClusterConfiguration) *RestoreDBClusterToPointInTimeInput

SetRdsCustomClusterConfiguration sets the RdsCustomClusterConfiguration field's value.

func (*RestoreDBClusterToPointInTimeInput) SetRestoreToTime

func (s *RestoreDBClusterToPointInTimeInput) SetRestoreToTime(v time.Time) *RestoreDBClusterToPointInTimeInput

SetRestoreToTime sets the RestoreToTime field's value.

func (*RestoreDBClusterToPointInTimeInput) SetRestoreType

func (s *RestoreDBClusterToPointInTimeInput) SetRestoreType(v string) *RestoreDBClusterToPointInTimeInput

SetRestoreType sets the RestoreType field's value.

func (*RestoreDBClusterToPointInTimeInput) SetScalingConfiguration

func (s *RestoreDBClusterToPointInTimeInput) SetScalingConfiguration(v *ScalingConfiguration) *RestoreDBClusterToPointInTimeInput

SetScalingConfiguration sets the ScalingConfiguration field's value.

func (*RestoreDBClusterToPointInTimeInput) SetServerlessV2ScalingConfiguration

func (s *RestoreDBClusterToPointInTimeInput) SetServerlessV2ScalingConfiguration(v *ServerlessV2ScalingConfiguration) *RestoreDBClusterToPointInTimeInput

SetServerlessV2ScalingConfiguration sets the ServerlessV2ScalingConfiguration field's value.

func (*RestoreDBClusterToPointInTimeInput) SetSourceDBClusterIdentifier

func (s *RestoreDBClusterToPointInTimeInput) SetSourceDBClusterIdentifier(v string) *RestoreDBClusterToPointInTimeInput

SetSourceDBClusterIdentifier sets the SourceDBClusterIdentifier field's value.

func (*RestoreDBClusterToPointInTimeInput) SetSourceDbClusterResourceId

func (s *RestoreDBClusterToPointInTimeInput) SetSourceDbClusterResourceId(v string) *RestoreDBClusterToPointInTimeInput

SetSourceDbClusterResourceId sets the SourceDbClusterResourceId field's value.

func (*RestoreDBClusterToPointInTimeInput) SetStorageType

func (s *RestoreDBClusterToPointInTimeInput) SetStorageType(v string) *RestoreDBClusterToPointInTimeInput

SetStorageType sets the StorageType field's value.

func (*RestoreDBClusterToPointInTimeInput) SetTags

func (s *RestoreDBClusterToPointInTimeInput) SetTags(v []*Tag) *RestoreDBClusterToPointInTimeInput

SetTags sets the Tags field's value.

func (*RestoreDBClusterToPointInTimeInput) SetUseLatestRestorableTime

func (s *RestoreDBClusterToPointInTimeInput) SetUseLatestRestorableTime(v bool) *RestoreDBClusterToPointInTimeInput

SetUseLatestRestorableTime sets the UseLatestRestorableTime field's value.

func (*RestoreDBClusterToPointInTimeInput) SetVpcSecurityGroupIds

func (s *RestoreDBClusterToPointInTimeInput) SetVpcSecurityGroupIds(v []*string) *RestoreDBClusterToPointInTimeInput

SetVpcSecurityGroupIds sets the VpcSecurityGroupIds field's value.

func (RestoreDBClusterToPointInTimeInput) String

func (s RestoreDBClusterToPointInTimeInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RestoreDBClusterToPointInTimeInput) Validate

func (s *RestoreDBClusterToPointInTimeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RestoreDBClusterToPointInTimeOutput

type RestoreDBClusterToPointInTimeOutput struct {

    // Contains the details of an Amazon Aurora DB cluster or Multi-AZ DB cluster.
    //
    // For an Amazon Aurora DB cluster, this data type is used as a response element
    // in the operations CreateDBCluster, DeleteDBCluster, DescribeDBClusters, FailoverDBCluster,
    // ModifyDBCluster, PromoteReadReplicaDBCluster, RestoreDBClusterFromS3, RestoreDBClusterFromSnapshot,
    // RestoreDBClusterToPointInTime, StartDBCluster, and StopDBCluster.
    //
    // For a Multi-AZ DB cluster, this data type is used as a response element in
    // the operations CreateDBCluster, DeleteDBCluster, DescribeDBClusters, FailoverDBCluster,
    // ModifyDBCluster, RebootDBCluster, RestoreDBClusterFromSnapshot, and RestoreDBClusterToPointInTime.
    //
    // For more information on Amazon Aurora DB clusters, see What is Amazon Aurora?
    // (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html)
    // in the Amazon Aurora User Guide.
    //
    // For more information on Multi-AZ DB clusters, see Multi-AZ deployments with
    // two readable standby DB instances (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html)
    // in the Amazon RDS User Guide.
    DBCluster *DBCluster `type:"structure"`
    // contains filtered or unexported fields
}

func (RestoreDBClusterToPointInTimeOutput) GoString

func (s RestoreDBClusterToPointInTimeOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RestoreDBClusterToPointInTimeOutput) SetDBCluster

func (s *RestoreDBClusterToPointInTimeOutput) SetDBCluster(v *DBCluster) *RestoreDBClusterToPointInTimeOutput

SetDBCluster sets the DBCluster field's value.

func (RestoreDBClusterToPointInTimeOutput) String

func (s RestoreDBClusterToPointInTimeOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RestoreDBInstanceFromDBSnapshotInput

type RestoreDBInstanceFromDBSnapshotInput struct {

    // The amount of storage (in gibibytes) to allocate initially for the DB instance.
    // Follow the allocation rules specified in CreateDBInstance.
    //
    // Be sure to allocate enough storage for your new DB instance so that the restore
    // operation can succeed. You can also allocate additional storage for future
    // growth.
    AllocatedStorage *int64 `type:"integer"`

    // Specifies whether to automatically apply minor version upgrades to the DB
    // instance during the maintenance window.
    //
    // If you restore an RDS Custom DB instance, you must disable this parameter.
    AutoMinorVersionUpgrade *bool `type:"boolean"`

    // The Availability Zone (AZ) where the DB instance will be created.
    //
    // Default: A random, system-chosen Availability Zone.
    //
    // Constraint: You can't specify the AvailabilityZone parameter if the DB instance
    // is a Multi-AZ deployment.
    //
    // Example: us-east-1a
    AvailabilityZone *string `type:"string"`

    // Specifies where automated backups and manual snapshots are stored for the
    // restored DB instance.
    //
    // Possible values are outposts (Amazon Web Services Outposts) and region (Amazon
    // Web Services Region). The default is region.
    //
    // For more information, see Working with Amazon RDS on Amazon Web Services
    // Outposts (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html)
    // in the Amazon RDS User Guide.
    BackupTarget *string `type:"string"`

    // Specifies whether to copy all tags from the restored DB instance to snapshots
    // of the DB instance.
    //
    // In most cases, tags aren't copied by default. However, when you restore a
    // DB instance from a DB snapshot, RDS checks whether you specify new tags.
    // If yes, the new tags are added to the restored DB instance. If there are
    // no new tags, RDS looks for the tags from the source DB instance for the DB
    // snapshot, and then adds those tags to the restored DB instance.
    //
    // For more information, see Copying tags to DB instance snapshots (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html#USER_Tagging.CopyTags)
    // in the Amazon RDS User Guide.
    CopyTagsToSnapshot *bool `type:"boolean"`

    // The instance profile associated with the underlying Amazon EC2 instance of
    // an RDS Custom DB instance. The instance profile must meet the following requirements:
    //
    //    * The profile must exist in your account.
    //
    //    * The profile must have an IAM role that Amazon EC2 has permissions to
    //    assume.
    //
    //    * The instance profile name and the associated IAM role name must start
    //    with the prefix AWSRDSCustom.
    //
    // For the list of permissions required for the IAM role, see Configure IAM
    // and your VPC (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc)
    // in the Amazon RDS User Guide.
    //
    // This setting is required for RDS Custom.
    CustomIamInstanceProfile *string `type:"string"`

    // The identifier for the Multi-AZ DB cluster snapshot to restore from.
    //
    // For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments
    // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html)
    // in the Amazon RDS User Guide.
    //
    // Constraints:
    //
    //    * Must match the identifier of an existing Multi-AZ DB cluster snapshot.
    //
    //    * Can't be specified when DBSnapshotIdentifier is specified.
    //
    //    * Must be specified when DBSnapshotIdentifier isn't specified.
    //
    //    * If you are restoring from a shared manual Multi-AZ DB cluster snapshot,
    //    the DBClusterSnapshotIdentifier must be the ARN of the shared snapshot.
    //
    //    * Can't be the identifier of an Aurora DB cluster snapshot.
    DBClusterSnapshotIdentifier *string `type:"string"`

    // The compute and memory capacity of the Amazon RDS DB instance, for example
    // db.m4.large. Not all DB instance classes are available in all Amazon Web
    // Services Regions, or for all database engines. For the full list of DB instance
    // classes, and availability for your engine, see DB Instance Class (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html)
    // in the Amazon RDS User Guide.
    //
    // Default: The same DBInstanceClass as the original DB instance.
    DBInstanceClass *string `type:"string"`

    // The name of the DB instance to create from the DB snapshot. This parameter
    // isn't case-sensitive.
    //
    // Constraints:
    //
    //    * Must contain from 1 to 63 numbers, letters, or hyphens.
    //
    //    * First character must be a letter.
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens.
    //
    // Example: my-snapshot-id
    //
    // DBInstanceIdentifier is a required field
    DBInstanceIdentifier *string `type:"string" required:"true"`

    // The name of the database for the restored DB instance.
    //
    // This parameter only applies to RDS for Oracle and RDS for SQL Server DB instances.
    // It doesn't apply to the other engines or to RDS Custom DB instances.
    DBName *string `type:"string"`

    // The name of the DB parameter group to associate with this DB instance.
    //
    // If you don't specify a value for DBParameterGroupName, then RDS uses the
    // default DBParameterGroup for the specified DB engine.
    //
    // This setting doesn't apply to RDS Custom.
    //
    // Constraints:
    //
    //    * If supplied, must match the name of an existing DB parameter group.
    //
    //    * Must be 1 to 255 letters, numbers, or hyphens.
    //
    //    * First character must be a letter.
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens.
    DBParameterGroupName *string `type:"string"`

    // The identifier for the DB snapshot to restore from.
    //
    // Constraints:
    //
    //    * Must match the identifier of an existing DB snapshot.
    //
    //    * Can't be specified when DBClusterSnapshotIdentifier is specified.
    //
    //    * Must be specified when DBClusterSnapshotIdentifier isn't specified.
    //
    //    * If you are restoring from a shared manual DB snapshot, the DBSnapshotIdentifier
    //    must be the ARN of the shared DB snapshot.
    DBSnapshotIdentifier *string `type:"string"`

    // The name of the DB subnet group to use for the new instance.
    //
    // Constraints:
    //
    //    * If supplied, must match the name of an existing DB subnet group.
    //
    // Example: mydbsubnetgroup
    DBSubnetGroupName *string `type:"string"`

    // Specifies whether to enable a dedicated log volume (DLV) for the DB instance.
    DedicatedLogVolume *bool `type:"boolean"`

    // Specifies whether to enable deletion protection for the DB instance. The
    // database can't be deleted when deletion protection is enabled. By default,
    // deletion protection isn't enabled. For more information, see Deleting a DB
    // Instance (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html).
    DeletionProtection *bool `type:"boolean"`

    // The Active Directory directory ID to restore the DB instance in. The domain/
    // must be created prior to this operation. Currently, you can create only Db2,
    // MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances in an Active
    // Directory Domain.
    //
    // For more information, see Kerberos Authentication (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html)
    // in the Amazon RDS User Guide.
    //
    // This setting doesn't apply to RDS Custom.
    Domain *string `type:"string"`

    // The ARN for the Secrets Manager secret with the credentials for the user
    // joining the domain.
    //
    // Constraints:
    //
    //    * Can't be longer than 64 characters.
    //
    // Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456
    DomainAuthSecretArn *string `type:"string"`

    // The IPv4 DNS IP addresses of your primary and secondary Active Directory
    // domain controllers.
    //
    // Constraints:
    //
    //    * Two IP addresses must be provided. If there isn't a secondary domain
    //    controller, use the IP address of the primary domain controller for both
    //    entries in the list.
    //
    // Example: 123.124.125.126,234.235.236.237
    DomainDnsIps []*string `type:"list"`

    // The fully qualified domain name (FQDN) of an Active Directory domain.
    //
    // Constraints:
    //
    //    * Can't be longer than 64 characters.
    //
    // Example: mymanagedADtest.mymanagedAD.mydomain
    DomainFqdn *string `type:"string"`

    // The name of the IAM role to use when making API calls to the Directory Service.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    DomainIAMRoleName *string `type:"string"`

    // The Active Directory organizational unit for your DB instance to join.
    //
    // Constraints:
    //
    //    * Must be in the distinguished name format.
    //
    //    * Can't be longer than 64 characters.
    //
    // Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain
    DomainOu *string `type:"string"`

    // The list of logs for the restored DB instance to export to CloudWatch Logs.
    // The values in the list depend on the DB engine. For more information, see
    // Publishing Database Logs to Amazon CloudWatch Logs (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch)
    // in the Amazon RDS User Guide.
    //
    // This setting doesn't apply to RDS Custom.
    EnableCloudwatchLogsExports []*string `type:"list"`

    // Specifies whether to enable a customer-owned IP address (CoIP) for an RDS
    // on Outposts DB instance.
    //
    // A CoIP provides local or external connectivity to resources in your Outpost
    // subnets through your on-premises network. For some use cases, a CoIP can
    // provide lower latency for connections to the DB instance from outside of
    // its virtual private cloud (VPC) on your local network.
    //
    // This setting doesn't apply to RDS Custom.
    //
    // For more information about RDS on Outposts, see Working with Amazon RDS on
    // Amazon Web Services Outposts (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html)
    // in the Amazon RDS User Guide.
    //
    // For more information about CoIPs, see Customer-owned IP addresses (https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing)
    // in the Amazon Web Services Outposts User Guide.
    EnableCustomerOwnedIp *bool `type:"boolean"`

    // Specifies whether to enable mapping of Amazon Web Services Identity and Access
    // Management (IAM) accounts to database accounts. By default, mapping is disabled.
    //
    // For more information about IAM database authentication, see IAM Database
    // Authentication for MySQL and PostgreSQL (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html)
    // in the Amazon RDS User Guide.
    //
    // This setting doesn't apply to RDS Custom.
    EnableIAMDatabaseAuthentication *bool `type:"boolean"`

    // The database engine to use for the new instance.
    //
    // This setting doesn't apply to RDS Custom.
    //
    // Default: The same as source
    //
    // Constraint: Must be compatible with the engine of the source. For example,
    // you can restore a MariaDB 10.1 DB instance from a MySQL 5.6 snapshot.
    //
    // Valid Values:
    //
    //    * db2-ae
    //
    //    * db2-se
    //
    //    * mariadb
    //
    //    * mysql
    //
    //    * oracle-ee
    //
    //    * oracle-ee-cdb
    //
    //    * oracle-se2
    //
    //    * oracle-se2-cdb
    //
    //    * postgres
    //
    //    * sqlserver-ee
    //
    //    * sqlserver-se
    //
    //    * sqlserver-ex
    //
    //    * sqlserver-web
    Engine *string `type:"string"`

    // Specifies the amount of provisioned IOPS for the DB instance, expressed in
    // I/O operations per second. If this parameter isn't specified, the IOPS value
    // is taken from the backup. If this parameter is set to 0, the new instance
    // is converted to a non-PIOPS instance. The conversion takes additional time,
    // though your DB instance is available for connections before the conversion
    // starts.
    //
    // The provisioned IOPS value must follow the requirements for your database
    // engine. For more information, see Amazon RDS Provisioned IOPS storage (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS)
    // in the Amazon RDS User Guide.
    //
    // Constraints: Must be an integer greater than 1000.
    Iops *int64 `type:"integer"`

    // License model information for the restored DB instance.
    //
    // This setting doesn't apply to RDS Custom.
    //
    // Default: Same as source.
    //
    // Valid Values: license-included | bring-your-own-license | general-public-license
    LicenseModel *string `type:"string"`

    // Specifies whether the DB instance is a Multi-AZ deployment.
    //
    // This setting doesn't apply to RDS Custom.
    //
    // Constraint: You can't specify the AvailabilityZone parameter if the DB instance
    // is a Multi-AZ deployment.
    MultiAZ *bool `type:"boolean"`

    // The network type of the DB instance.
    //
    // Valid Values:
    //
    //    * IPV4
    //
    //    * DUAL
    //
    // The network type is determined by the DBSubnetGroup specified for the DB
    // instance. A DBSubnetGroup can support only the IPv4 protocol or the IPv4
    // and the IPv6 protocols (DUAL).
    //
    // For more information, see Working with a DB instance in a VPC (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html)
    // in the Amazon RDS User Guide.
    NetworkType *string `type:"string"`

    // The name of the option group to be used for the restored DB instance.
    //
    // Permanent options, such as the TDE option for Oracle Advanced Security TDE,
    // can't be removed from an option group, and that option group can't be removed
    // from a DB instance after it is associated with a DB instance.
    //
    // This setting doesn't apply to RDS Custom.
    OptionGroupName *string `type:"string"`

    // The port number on which the database accepts connections.
    //
    // Default: The same port as the original DB instance
    //
    // Constraints: Value must be 1150-65535
    Port *int64 `type:"integer"`

    // The number of CPU cores and the number of threads per core for the DB instance
    // class of the DB instance.
    //
    // This setting doesn't apply to RDS Custom.
    ProcessorFeatures []*ProcessorFeature `locationNameList:"ProcessorFeature" type:"list"`

    // Specifies whether the DB instance is publicly accessible.
    //
    // When the DB instance is publicly accessible, its Domain Name System (DNS)
    // endpoint resolves to the private IP address from within the DB instance's
    // virtual private cloud (VPC). It resolves to the public IP address from outside
    // of the DB instance's VPC. Access to the DB instance is ultimately controlled
    // by the security group it uses. That public access is not permitted if the
    // security group assigned to the DB instance doesn't permit it.
    //
    // When the DB instance isn't publicly accessible, it is an internal DB instance
    // with a DNS name that resolves to a private IP address.
    //
    // For more information, see CreateDBInstance.
    PubliclyAccessible *bool `type:"boolean"`

    // Specifies the storage throughput value for the DB instance.
    //
    // This setting doesn't apply to RDS Custom or Amazon Aurora.
    StorageThroughput *int64 `type:"integer"`

    // Specifies the storage type to be associated with the DB instance.
    //
    // Valid Values: gp2 | gp3 | io1 | io2 | standard
    //
    // If you specify io1, io2, or gp3, you must also include a value for the Iops
    // parameter.
    //
    // Default: io1 if the Iops parameter is specified, otherwise gp2
    StorageType *string `type:"string"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    Tags []*Tag `locationNameList:"Tag" type:"list"`

    // The ARN from the key store with which to associate the instance for TDE encryption.
    //
    // This setting doesn't apply to RDS Custom.
    TdeCredentialArn *string `type:"string"`

    // The password for the given ARN from the key store in order to access the
    // device.
    //
    // This setting doesn't apply to RDS Custom.
    TdeCredentialPassword *string `type:"string"`

    // Specifies whether the DB instance class of the DB instance uses its default
    // processor features.
    //
    // This setting doesn't apply to RDS Custom.
    UseDefaultProcessorFeatures *bool `type:"boolean"`

    // A list of EC2 VPC security groups to associate with this DB instance.
    //
    // Default: The default EC2 VPC security group for the DB subnet group's VPC.
    VpcSecurityGroupIds []*string `locationNameList:"VpcSecurityGroupId" type:"list"`
    // contains filtered or unexported fields
}

func (RestoreDBInstanceFromDBSnapshotInput) GoString

func (s RestoreDBInstanceFromDBSnapshotInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RestoreDBInstanceFromDBSnapshotInput) SetAllocatedStorage

func (s *RestoreDBInstanceFromDBSnapshotInput) SetAllocatedStorage(v int64) *RestoreDBInstanceFromDBSnapshotInput

SetAllocatedStorage sets the AllocatedStorage field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetAutoMinorVersionUpgrade

func (s *RestoreDBInstanceFromDBSnapshotInput) SetAutoMinorVersionUpgrade(v bool) *RestoreDBInstanceFromDBSnapshotInput

SetAutoMinorVersionUpgrade sets the AutoMinorVersionUpgrade field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetAvailabilityZone

func (s *RestoreDBInstanceFromDBSnapshotInput) SetAvailabilityZone(v string) *RestoreDBInstanceFromDBSnapshotInput

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetBackupTarget

func (s *RestoreDBInstanceFromDBSnapshotInput) SetBackupTarget(v string) *RestoreDBInstanceFromDBSnapshotInput

SetBackupTarget sets the BackupTarget field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetCopyTagsToSnapshot

func (s *RestoreDBInstanceFromDBSnapshotInput) SetCopyTagsToSnapshot(v bool) *RestoreDBInstanceFromDBSnapshotInput

SetCopyTagsToSnapshot sets the CopyTagsToSnapshot field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetCustomIamInstanceProfile

func (s *RestoreDBInstanceFromDBSnapshotInput) SetCustomIamInstanceProfile(v string) *RestoreDBInstanceFromDBSnapshotInput

SetCustomIamInstanceProfile sets the CustomIamInstanceProfile field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetDBClusterSnapshotIdentifier

func (s *RestoreDBInstanceFromDBSnapshotInput) SetDBClusterSnapshotIdentifier(v string) *RestoreDBInstanceFromDBSnapshotInput

SetDBClusterSnapshotIdentifier sets the DBClusterSnapshotIdentifier field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetDBInstanceClass

func (s *RestoreDBInstanceFromDBSnapshotInput) SetDBInstanceClass(v string) *RestoreDBInstanceFromDBSnapshotInput

SetDBInstanceClass sets the DBInstanceClass field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetDBInstanceIdentifier

func (s *RestoreDBInstanceFromDBSnapshotInput) SetDBInstanceIdentifier(v string) *RestoreDBInstanceFromDBSnapshotInput

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetDBName

func (s *RestoreDBInstanceFromDBSnapshotInput) SetDBName(v string) *RestoreDBInstanceFromDBSnapshotInput

SetDBName sets the DBName field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetDBParameterGroupName

func (s *RestoreDBInstanceFromDBSnapshotInput) SetDBParameterGroupName(v string) *RestoreDBInstanceFromDBSnapshotInput

SetDBParameterGroupName sets the DBParameterGroupName field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetDBSnapshotIdentifier

func (s *RestoreDBInstanceFromDBSnapshotInput) SetDBSnapshotIdentifier(v string) *RestoreDBInstanceFromDBSnapshotInput

SetDBSnapshotIdentifier sets the DBSnapshotIdentifier field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetDBSubnetGroupName

func (s *RestoreDBInstanceFromDBSnapshotInput) SetDBSubnetGroupName(v string) *RestoreDBInstanceFromDBSnapshotInput

SetDBSubnetGroupName sets the DBSubnetGroupName field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetDedicatedLogVolume

func (s *RestoreDBInstanceFromDBSnapshotInput) SetDedicatedLogVolume(v bool) *RestoreDBInstanceFromDBSnapshotInput

SetDedicatedLogVolume sets the DedicatedLogVolume field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetDeletionProtection

func (s *RestoreDBInstanceFromDBSnapshotInput) SetDeletionProtection(v bool) *RestoreDBInstanceFromDBSnapshotInput

SetDeletionProtection sets the DeletionProtection field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetDomain

func (s *RestoreDBInstanceFromDBSnapshotInput) SetDomain(v string) *RestoreDBInstanceFromDBSnapshotInput

SetDomain sets the Domain field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetDomainAuthSecretArn

func (s *RestoreDBInstanceFromDBSnapshotInput) SetDomainAuthSecretArn(v string) *RestoreDBInstanceFromDBSnapshotInput

SetDomainAuthSecretArn sets the DomainAuthSecretArn field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetDomainDnsIps

func (s *RestoreDBInstanceFromDBSnapshotInput) SetDomainDnsIps(v []*string) *RestoreDBInstanceFromDBSnapshotInput

SetDomainDnsIps sets the DomainDnsIps field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetDomainFqdn

func (s *RestoreDBInstanceFromDBSnapshotInput) SetDomainFqdn(v string) *RestoreDBInstanceFromDBSnapshotInput

SetDomainFqdn sets the DomainFqdn field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetDomainIAMRoleName

func (s *RestoreDBInstanceFromDBSnapshotInput) SetDomainIAMRoleName(v string) *RestoreDBInstanceFromDBSnapshotInput

SetDomainIAMRoleName sets the DomainIAMRoleName field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetDomainOu

func (s *RestoreDBInstanceFromDBSnapshotInput) SetDomainOu(v string) *RestoreDBInstanceFromDBSnapshotInput

SetDomainOu sets the DomainOu field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetEnableCloudwatchLogsExports

func (s *RestoreDBInstanceFromDBSnapshotInput) SetEnableCloudwatchLogsExports(v []*string) *RestoreDBInstanceFromDBSnapshotInput

SetEnableCloudwatchLogsExports sets the EnableCloudwatchLogsExports field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetEnableCustomerOwnedIp

func (s *RestoreDBInstanceFromDBSnapshotInput) SetEnableCustomerOwnedIp(v bool) *RestoreDBInstanceFromDBSnapshotInput

SetEnableCustomerOwnedIp sets the EnableCustomerOwnedIp field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetEnableIAMDatabaseAuthentication

func (s *RestoreDBInstanceFromDBSnapshotInput) SetEnableIAMDatabaseAuthentication(v bool) *RestoreDBInstanceFromDBSnapshotInput

SetEnableIAMDatabaseAuthentication sets the EnableIAMDatabaseAuthentication field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetEngine

func (s *RestoreDBInstanceFromDBSnapshotInput) SetEngine(v string) *RestoreDBInstanceFromDBSnapshotInput

SetEngine sets the Engine field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetIops

func (s *RestoreDBInstanceFromDBSnapshotInput) SetIops(v int64) *RestoreDBInstanceFromDBSnapshotInput

SetIops sets the Iops field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetLicenseModel

func (s *RestoreDBInstanceFromDBSnapshotInput) SetLicenseModel(v string) *RestoreDBInstanceFromDBSnapshotInput

SetLicenseModel sets the LicenseModel field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetMultiAZ

func (s *RestoreDBInstanceFromDBSnapshotInput) SetMultiAZ(v bool) *RestoreDBInstanceFromDBSnapshotInput

SetMultiAZ sets the MultiAZ field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetNetworkType

func (s *RestoreDBInstanceFromDBSnapshotInput) SetNetworkType(v string) *RestoreDBInstanceFromDBSnapshotInput

SetNetworkType sets the NetworkType field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetOptionGroupName

func (s *RestoreDBInstanceFromDBSnapshotInput) SetOptionGroupName(v string) *RestoreDBInstanceFromDBSnapshotInput

SetOptionGroupName sets the OptionGroupName field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetPort

func (s *RestoreDBInstanceFromDBSnapshotInput) SetPort(v int64) *RestoreDBInstanceFromDBSnapshotInput

SetPort sets the Port field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetProcessorFeatures

func (s *RestoreDBInstanceFromDBSnapshotInput) SetProcessorFeatures(v []*ProcessorFeature) *RestoreDBInstanceFromDBSnapshotInput

SetProcessorFeatures sets the ProcessorFeatures field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetPubliclyAccessible

func (s *RestoreDBInstanceFromDBSnapshotInput) SetPubliclyAccessible(v bool) *RestoreDBInstanceFromDBSnapshotInput

SetPubliclyAccessible sets the PubliclyAccessible field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetStorageThroughput

func (s *RestoreDBInstanceFromDBSnapshotInput) SetStorageThroughput(v int64) *RestoreDBInstanceFromDBSnapshotInput

SetStorageThroughput sets the StorageThroughput field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetStorageType

func (s *RestoreDBInstanceFromDBSnapshotInput) SetStorageType(v string) *RestoreDBInstanceFromDBSnapshotInput

SetStorageType sets the StorageType field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetTags

func (s *RestoreDBInstanceFromDBSnapshotInput) SetTags(v []*Tag) *RestoreDBInstanceFromDBSnapshotInput

SetTags sets the Tags field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetTdeCredentialArn

func (s *RestoreDBInstanceFromDBSnapshotInput) SetTdeCredentialArn(v string) *RestoreDBInstanceFromDBSnapshotInput

SetTdeCredentialArn sets the TdeCredentialArn field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetTdeCredentialPassword

func (s *RestoreDBInstanceFromDBSnapshotInput) SetTdeCredentialPassword(v string) *RestoreDBInstanceFromDBSnapshotInput

SetTdeCredentialPassword sets the TdeCredentialPassword field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetUseDefaultProcessorFeatures

func (s *RestoreDBInstanceFromDBSnapshotInput) SetUseDefaultProcessorFeatures(v bool) *RestoreDBInstanceFromDBSnapshotInput

SetUseDefaultProcessorFeatures sets the UseDefaultProcessorFeatures field's value.

func (*RestoreDBInstanceFromDBSnapshotInput) SetVpcSecurityGroupIds

func (s *RestoreDBInstanceFromDBSnapshotInput) SetVpcSecurityGroupIds(v []*string) *RestoreDBInstanceFromDBSnapshotInput

SetVpcSecurityGroupIds sets the VpcSecurityGroupIds field's value.

func (RestoreDBInstanceFromDBSnapshotInput) String

func (s RestoreDBInstanceFromDBSnapshotInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RestoreDBInstanceFromDBSnapshotInput) Validate

func (s *RestoreDBInstanceFromDBSnapshotInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RestoreDBInstanceFromDBSnapshotOutput

type RestoreDBInstanceFromDBSnapshotOutput struct {

    // Contains the details of an Amazon RDS DB instance.
    //
    // This data type is used as a response element in the operations CreateDBInstance,
    // CreateDBInstanceReadReplica, DeleteDBInstance, DescribeDBInstances, ModifyDBInstance,
    // PromoteReadReplica, RebootDBInstance, RestoreDBInstanceFromDBSnapshot, RestoreDBInstanceFromS3,
    // RestoreDBInstanceToPointInTime, StartDBInstance, and StopDBInstance.
    DBInstance *DBInstance `type:"structure"`
    // contains filtered or unexported fields
}

func (RestoreDBInstanceFromDBSnapshotOutput) GoString

func (s RestoreDBInstanceFromDBSnapshotOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RestoreDBInstanceFromDBSnapshotOutput) SetDBInstance

func (s *RestoreDBInstanceFromDBSnapshotOutput) SetDBInstance(v *DBInstance) *RestoreDBInstanceFromDBSnapshotOutput

SetDBInstance sets the DBInstance field's value.

func (RestoreDBInstanceFromDBSnapshotOutput) String

func (s RestoreDBInstanceFromDBSnapshotOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RestoreDBInstanceFromS3Input

type RestoreDBInstanceFromS3Input struct {

    // The amount of storage (in gibibytes) to allocate initially for the DB instance.
    // Follow the allocation rules specified in CreateDBInstance.
    //
    // Be sure to allocate enough storage for your new DB instance so that the restore
    // operation can succeed. You can also allocate additional storage for future
    // growth.
    AllocatedStorage *int64 `type:"integer"`

    // Specifies whether to automatically apply minor engine upgrades to the DB
    // instance during the maintenance window. By default, minor engine upgrades
    // are not applied automatically.
    AutoMinorVersionUpgrade *bool `type:"boolean"`

    // The Availability Zone that the DB instance is created in. For information
    // about Amazon Web Services Regions and Availability Zones, see Regions and
    // Availability Zones (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html)
    // in the Amazon RDS User Guide.
    //
    // Default: A random, system-chosen Availability Zone in the endpoint's Amazon
    // Web Services Region.
    //
    // Example: us-east-1d
    //
    // Constraint: The AvailabilityZone parameter can't be specified if the DB instance
    // is a Multi-AZ deployment. The specified Availability Zone must be in the
    // same Amazon Web Services Region as the current endpoint.
    AvailabilityZone *string `type:"string"`

    // The number of days for which automated backups are retained. Setting this
    // parameter to a positive number enables backups. For more information, see
    // CreateDBInstance.
    BackupRetentionPeriod *int64 `type:"integer"`

    // Specifies whether to copy all tags from the DB instance to snapshots of the
    // DB instance. By default, tags are not copied.
    CopyTagsToSnapshot *bool `type:"boolean"`

    // The compute and memory capacity of the DB instance, for example db.m4.large.
    // Not all DB instance classes are available in all Amazon Web Services Regions,
    // or for all database engines. For the full list of DB instance classes, and
    // availability for your engine, see DB Instance Class (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html)
    // in the Amazon RDS User Guide.
    //
    // Importing from Amazon S3 isn't supported on the db.t2.micro DB instance class.
    //
    // DBInstanceClass is a required field
    DBInstanceClass *string `type:"string" required:"true"`

    // The DB instance identifier. This parameter is stored as a lowercase string.
    //
    // Constraints:
    //
    //    * Must contain from 1 to 63 letters, numbers, or hyphens.
    //
    //    * First character must be a letter.
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens.
    //
    // Example: mydbinstance
    //
    // DBInstanceIdentifier is a required field
    DBInstanceIdentifier *string `type:"string" required:"true"`

    // The name of the database to create when the DB instance is created. Follow
    // the naming rules specified in CreateDBInstance.
    DBName *string `type:"string"`

    // The name of the DB parameter group to associate with this DB instance.
    //
    // If you do not specify a value for DBParameterGroupName, then the default
    // DBParameterGroup for the specified DB engine is used.
    DBParameterGroupName *string `type:"string"`

    // A list of DB security groups to associate with this DB instance.
    //
    // Default: The default DB security group for the database engine.
    DBSecurityGroups []*string `locationNameList:"DBSecurityGroupName" type:"list"`

    // A DB subnet group to associate with this DB instance.
    //
    // Constraints: If supplied, must match the name of an existing DBSubnetGroup.
    //
    // Example: mydbsubnetgroup
    DBSubnetGroupName *string `type:"string"`

    // Specifies whether to enable a dedicated log volume (DLV) for the DB instance.
    DedicatedLogVolume *bool `type:"boolean"`

    // Specifies whether to enable deletion protection for the DB instance. The
    // database can't be deleted when deletion protection is enabled. By default,
    // deletion protection isn't enabled. For more information, see Deleting a DB
    // Instance (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html).
    DeletionProtection *bool `type:"boolean"`

    // The list of logs that the restored DB instance is to export to CloudWatch
    // Logs. The values in the list depend on the DB engine being used. For more
    // information, see Publishing Database Logs to Amazon CloudWatch Logs (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch)
    // in the Amazon RDS User Guide.
    EnableCloudwatchLogsExports []*string `type:"list"`

    // Specifies whether to enable mapping of Amazon Web Services Identity and Access
    // Management (IAM) accounts to database accounts. By default, mapping isn't
    // enabled.
    //
    // For more information about IAM database authentication, see IAM Database
    // Authentication for MySQL and PostgreSQL (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html)
    // in the Amazon RDS User Guide.
    EnableIAMDatabaseAuthentication *bool `type:"boolean"`

    // Specifies whether to enable Performance Insights for the DB instance.
    //
    // For more information, see Using Amazon Performance Insights (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html)
    // in the Amazon RDS User Guide.
    EnablePerformanceInsights *bool `type:"boolean"`

    // The name of the database engine to be used for this instance.
    //
    // Valid Values: mysql
    //
    // Engine is a required field
    Engine *string `type:"string" required:"true"`

    // The version number of the database engine to use. Choose the latest minor
    // version of your database engine. For information about engine versions, see
    // CreateDBInstance, or call DescribeDBEngineVersions.
    EngineVersion *string `type:"string"`

    // The amount of Provisioned IOPS (input/output operations per second) to allocate
    // initially for the DB instance. For information about valid IOPS values, see
    // Amazon RDS Provisioned IOPS storage (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS)
    // in the Amazon RDS User Guide.
    Iops *int64 `type:"integer"`

    // The Amazon Web Services KMS key identifier for an encrypted DB instance.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key. To use a KMS key in a different Amazon
    // Web Services account, specify the key ARN or alias ARN.
    //
    // If the StorageEncrypted parameter is enabled, and you do not specify a value
    // for the KmsKeyId parameter, then Amazon RDS will use your default KMS key.
    // There is a default KMS key for your Amazon Web Services account. Your Amazon
    // Web Services account has a different default KMS key for each Amazon Web
    // Services Region.
    KmsKeyId *string `type:"string"`

    // The license model for this DB instance. Use general-public-license.
    LicenseModel *string `type:"string"`

    // Specifies whether to manage the master user password with Amazon Web Services
    // Secrets Manager.
    //
    // For more information, see Password management with Amazon Web Services Secrets
    // Manager (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html)
    // in the Amazon RDS User Guide.
    //
    // Constraints:
    //
    //    * Can't manage the master user password with Amazon Web Services Secrets
    //    Manager if MasterUserPassword is specified.
    ManageMasterUserPassword *bool `type:"boolean"`

    // The password for the master user.
    //
    // Constraints:
    //
    //    * Can't be specified if ManageMasterUserPassword is turned on.
    //
    //    * Can include any printable ASCII character except "/", """, or "@". For
    //    RDS for Oracle, can't include the "&" (ampersand) or the "'" (single quotes)
    //    character.
    //
    // Length Constraints:
    //
    //    * RDS for Db2 - Must contain from 8 to 128 characters.
    //
    //    * RDS for MariaDB - Must contain from 8 to 41 characters.
    //
    //    * RDS for Microsoft SQL Server - Must contain from 8 to 128 characters.
    //
    //    * RDS for MySQL - Must contain from 8 to 41 characters.
    //
    //    * RDS for Oracle - Must contain from 8 to 30 characters.
    //
    //    * RDS for PostgreSQL - Must contain from 8 to 128 characters.
    MasterUserPassword *string `type:"string"`

    // The Amazon Web Services KMS key identifier to encrypt a secret that is automatically
    // generated and managed in Amazon Web Services Secrets Manager.
    //
    // This setting is valid only if the master user password is managed by RDS
    // in Amazon Web Services Secrets Manager for the DB instance.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key. To use a KMS key in a different Amazon
    // Web Services account, specify the key ARN or alias ARN.
    //
    // If you don't specify MasterUserSecretKmsKeyId, then the aws/secretsmanager
    // KMS key is used to encrypt the secret. If the secret is in a different Amazon
    // Web Services account, then you can't use the aws/secretsmanager KMS key to
    // encrypt the secret, and you must use a customer managed KMS key.
    //
    // There is a default KMS key for your Amazon Web Services account. Your Amazon
    // Web Services account has a different default KMS key for each Amazon Web
    // Services Region.
    MasterUserSecretKmsKeyId *string `type:"string"`

    // The name for the master user.
    //
    // Constraints:
    //
    //    * Must be 1 to 16 letters or numbers.
    //
    //    * First character must be a letter.
    //
    //    * Can't be a reserved word for the chosen database engine.
    MasterUsername *string `type:"string"`

    // The upper limit in gibibytes (GiB) to which Amazon RDS can automatically
    // scale the storage of the DB instance.
    //
    // For more information about this setting, including limitations that apply
    // to it, see Managing capacity automatically with Amazon RDS storage autoscaling
    // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling)
    // in the Amazon RDS User Guide.
    MaxAllocatedStorage *int64 `type:"integer"`

    // The interval, in seconds, between points when Enhanced Monitoring metrics
    // are collected for the DB instance. To disable collecting Enhanced Monitoring
    // metrics, specify 0.
    //
    // If MonitoringRoleArn is specified, then you must also set MonitoringInterval
    // to a value other than 0.
    //
    // Valid Values: 0, 1, 5, 10, 15, 30, 60
    //
    // Default: 0
    MonitoringInterval *int64 `type:"integer"`

    // The ARN for the IAM role that permits RDS to send enhanced monitoring metrics
    // to Amazon CloudWatch Logs. For example, arn:aws:iam:123456789012:role/emaccess.
    // For information on creating a monitoring role, see Setting Up and Enabling
    // Enhanced Monitoring (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling)
    // in the Amazon RDS User Guide.
    //
    // If MonitoringInterval is set to a value other than 0, then you must supply
    // a MonitoringRoleArn value.
    MonitoringRoleArn *string `type:"string"`

    // Specifies whether the DB instance is a Multi-AZ deployment. If the DB instance
    // is a Multi-AZ deployment, you can't set the AvailabilityZone parameter.
    MultiAZ *bool `type:"boolean"`

    // The network type of the DB instance.
    //
    // Valid Values:
    //
    //    * IPV4
    //
    //    * DUAL
    //
    // The network type is determined by the DBSubnetGroup specified for the DB
    // instance. A DBSubnetGroup can support only the IPv4 protocol or the IPv4
    // and the IPv6 protocols (DUAL).
    //
    // For more information, see Working with a DB instance in a VPC (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html)
    // in the Amazon RDS User Guide.
    NetworkType *string `type:"string"`

    // The name of the option group to associate with this DB instance. If this
    // argument is omitted, the default option group for the specified engine is
    // used.
    OptionGroupName *string `type:"string"`

    // The Amazon Web Services KMS key identifier for encryption of Performance
    // Insights data.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key.
    //
    // If you do not specify a value for PerformanceInsightsKMSKeyId, then Amazon
    // RDS uses your default KMS key. There is a default KMS key for your Amazon
    // Web Services account. Your Amazon Web Services account has a different default
    // KMS key for each Amazon Web Services Region.
    PerformanceInsightsKMSKeyId *string `type:"string"`

    // The number of days to retain Performance Insights data. The default is 7
    // days. The following values are valid:
    //
    //    * 7
    //
    //    * month * 31, where month is a number of months from 1-23
    //
    //    * 731
    //
    // For example, the following values are valid:
    //
    //    * 93 (3 months * 31)
    //
    //    * 341 (11 months * 31)
    //
    //    * 589 (19 months * 31)
    //
    //    * 731
    //
    // If you specify a retention period such as 94, which isn't a valid value,
    // RDS issues an error.
    PerformanceInsightsRetentionPeriod *int64 `type:"integer"`

    // The port number on which the database accepts connections.
    //
    // Type: Integer
    //
    // Valid Values: 1150-65535
    //
    // Default: 3306
    Port *int64 `type:"integer"`

    // The time range each day during which automated backups are created if automated
    // backups are enabled. For more information, see Backup window (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow)
    // in the Amazon RDS User Guide.
    //
    // Constraints:
    //
    //    * Must be in the format hh24:mi-hh24:mi.
    //
    //    * Must be in Universal Coordinated Time (UTC).
    //
    //    * Must not conflict with the preferred maintenance window.
    //
    //    * Must be at least 30 minutes.
    PreferredBackupWindow *string `type:"string"`

    // The time range each week during which system maintenance can occur, in Universal
    // Coordinated Time (UTC). For more information, see Amazon RDS Maintenance
    // Window (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#Concepts.DBMaintenance)
    // in the Amazon RDS User Guide.
    //
    // Constraints:
    //
    //    * Must be in the format ddd:hh24:mi-ddd:hh24:mi.
    //
    //    * Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
    //
    //    * Must be in Universal Coordinated Time (UTC).
    //
    //    * Must not conflict with the preferred backup window.
    //
    //    * Must be at least 30 minutes.
    PreferredMaintenanceWindow *string `type:"string"`

    // The number of CPU cores and the number of threads per core for the DB instance
    // class of the DB instance.
    ProcessorFeatures []*ProcessorFeature `locationNameList:"ProcessorFeature" type:"list"`

    // Specifies whether the DB instance is publicly accessible.
    //
    // When the DB instance is publicly accessible, its Domain Name System (DNS)
    // endpoint resolves to the private IP address from within the DB instance's
    // virtual private cloud (VPC). It resolves to the public IP address from outside
    // of the DB instance's VPC. Access to the DB instance is ultimately controlled
    // by the security group it uses. That public access is not permitted if the
    // security group assigned to the DB instance doesn't permit it.
    //
    // When the DB instance isn't publicly accessible, it is an internal DB instance
    // with a DNS name that resolves to a private IP address.
    //
    // For more information, see CreateDBInstance.
    PubliclyAccessible *bool `type:"boolean"`

    // The name of your Amazon S3 bucket that contains your database backup file.
    //
    // S3BucketName is a required field
    S3BucketName *string `type:"string" required:"true"`

    // An Amazon Web Services Identity and Access Management (IAM) role to allow
    // Amazon RDS to access your Amazon S3 bucket.
    //
    // S3IngestionRoleArn is a required field
    S3IngestionRoleArn *string `type:"string" required:"true"`

    // The prefix of your Amazon S3 bucket.
    S3Prefix *string `type:"string"`

    // The name of the engine of your source database.
    //
    // Valid Values: mysql
    //
    // SourceEngine is a required field
    SourceEngine *string `type:"string" required:"true"`

    // The version of the database that the backup files were created from.
    //
    // MySQL versions 5.6 and 5.7 are supported.
    //
    // Example: 5.6.40
    //
    // SourceEngineVersion is a required field
    SourceEngineVersion *string `type:"string" required:"true"`

    // Specifies whether the new DB instance is encrypted or not.
    StorageEncrypted *bool `type:"boolean"`

    // Specifies the storage throughput value for the DB instance.
    //
    // This setting doesn't apply to RDS Custom or Amazon Aurora.
    StorageThroughput *int64 `type:"integer"`

    // Specifies the storage type to be associated with the DB instance.
    //
    // Valid Values: gp2 | gp3 | io1 | io2 | standard
    //
    // If you specify io1, io2, or gp3, you must also include a value for the Iops
    // parameter.
    //
    // Default: io1 if the Iops parameter is specified; otherwise gp2
    StorageType *string `type:"string"`

    // A list of tags to associate with this DB instance. For more information,
    // see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    Tags []*Tag `locationNameList:"Tag" type:"list"`

    // Specifies whether the DB instance class of the DB instance uses its default
    // processor features.
    UseDefaultProcessorFeatures *bool `type:"boolean"`

    // A list of VPC security groups to associate with this DB instance.
    VpcSecurityGroupIds []*string `locationNameList:"VpcSecurityGroupId" type:"list"`
    // contains filtered or unexported fields
}

func (RestoreDBInstanceFromS3Input) GoString

func (s RestoreDBInstanceFromS3Input) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RestoreDBInstanceFromS3Input) SetAllocatedStorage

func (s *RestoreDBInstanceFromS3Input) SetAllocatedStorage(v int64) *RestoreDBInstanceFromS3Input

SetAllocatedStorage sets the AllocatedStorage field's value.

func (*RestoreDBInstanceFromS3Input) SetAutoMinorVersionUpgrade

func (s *RestoreDBInstanceFromS3Input) SetAutoMinorVersionUpgrade(v bool) *RestoreDBInstanceFromS3Input

SetAutoMinorVersionUpgrade sets the AutoMinorVersionUpgrade field's value.

func (*RestoreDBInstanceFromS3Input) SetAvailabilityZone

func (s *RestoreDBInstanceFromS3Input) SetAvailabilityZone(v string) *RestoreDBInstanceFromS3Input

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*RestoreDBInstanceFromS3Input) SetBackupRetentionPeriod

func (s *RestoreDBInstanceFromS3Input) SetBackupRetentionPeriod(v int64) *RestoreDBInstanceFromS3Input

SetBackupRetentionPeriod sets the BackupRetentionPeriod field's value.

func (*RestoreDBInstanceFromS3Input) SetCopyTagsToSnapshot

func (s *RestoreDBInstanceFromS3Input) SetCopyTagsToSnapshot(v bool) *RestoreDBInstanceFromS3Input

SetCopyTagsToSnapshot sets the CopyTagsToSnapshot field's value.

func (*RestoreDBInstanceFromS3Input) SetDBInstanceClass

func (s *RestoreDBInstanceFromS3Input) SetDBInstanceClass(v string) *RestoreDBInstanceFromS3Input

SetDBInstanceClass sets the DBInstanceClass field's value.

func (*RestoreDBInstanceFromS3Input) SetDBInstanceIdentifier

func (s *RestoreDBInstanceFromS3Input) SetDBInstanceIdentifier(v string) *RestoreDBInstanceFromS3Input

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*RestoreDBInstanceFromS3Input) SetDBName

func (s *RestoreDBInstanceFromS3Input) SetDBName(v string) *RestoreDBInstanceFromS3Input

SetDBName sets the DBName field's value.

func (*RestoreDBInstanceFromS3Input) SetDBParameterGroupName

func (s *RestoreDBInstanceFromS3Input) SetDBParameterGroupName(v string) *RestoreDBInstanceFromS3Input

SetDBParameterGroupName sets the DBParameterGroupName field's value.

func (*RestoreDBInstanceFromS3Input) SetDBSecurityGroups

func (s *RestoreDBInstanceFromS3Input) SetDBSecurityGroups(v []*string) *RestoreDBInstanceFromS3Input

SetDBSecurityGroups sets the DBSecurityGroups field's value.

func (*RestoreDBInstanceFromS3Input) SetDBSubnetGroupName

func (s *RestoreDBInstanceFromS3Input) SetDBSubnetGroupName(v string) *RestoreDBInstanceFromS3Input

SetDBSubnetGroupName sets the DBSubnetGroupName field's value.

func (*RestoreDBInstanceFromS3Input) SetDedicatedLogVolume

func (s *RestoreDBInstanceFromS3Input) SetDedicatedLogVolume(v bool) *RestoreDBInstanceFromS3Input

SetDedicatedLogVolume sets the DedicatedLogVolume field's value.

func (*RestoreDBInstanceFromS3Input) SetDeletionProtection

func (s *RestoreDBInstanceFromS3Input) SetDeletionProtection(v bool) *RestoreDBInstanceFromS3Input

SetDeletionProtection sets the DeletionProtection field's value.

func (*RestoreDBInstanceFromS3Input) SetEnableCloudwatchLogsExports

func (s *RestoreDBInstanceFromS3Input) SetEnableCloudwatchLogsExports(v []*string) *RestoreDBInstanceFromS3Input

SetEnableCloudwatchLogsExports sets the EnableCloudwatchLogsExports field's value.

func (*RestoreDBInstanceFromS3Input) SetEnableIAMDatabaseAuthentication

func (s *RestoreDBInstanceFromS3Input) SetEnableIAMDatabaseAuthentication(v bool) *RestoreDBInstanceFromS3Input

SetEnableIAMDatabaseAuthentication sets the EnableIAMDatabaseAuthentication field's value.

func (*RestoreDBInstanceFromS3Input) SetEnablePerformanceInsights

func (s *RestoreDBInstanceFromS3Input) SetEnablePerformanceInsights(v bool) *RestoreDBInstanceFromS3Input

SetEnablePerformanceInsights sets the EnablePerformanceInsights field's value.

func (*RestoreDBInstanceFromS3Input) SetEngine

func (s *RestoreDBInstanceFromS3Input) SetEngine(v string) *RestoreDBInstanceFromS3Input

SetEngine sets the Engine field's value.

func (*RestoreDBInstanceFromS3Input) SetEngineVersion

func (s *RestoreDBInstanceFromS3Input) SetEngineVersion(v string) *RestoreDBInstanceFromS3Input

SetEngineVersion sets the EngineVersion field's value.

func (*RestoreDBInstanceFromS3Input) SetIops

func (s *RestoreDBInstanceFromS3Input) SetIops(v int64) *RestoreDBInstanceFromS3Input

SetIops sets the Iops field's value.

func (*RestoreDBInstanceFromS3Input) SetKmsKeyId

func (s *RestoreDBInstanceFromS3Input) SetKmsKeyId(v string) *RestoreDBInstanceFromS3Input

SetKmsKeyId sets the KmsKeyId field's value.

func (*RestoreDBInstanceFromS3Input) SetLicenseModel

func (s *RestoreDBInstanceFromS3Input) SetLicenseModel(v string) *RestoreDBInstanceFromS3Input

SetLicenseModel sets the LicenseModel field's value.

func (*RestoreDBInstanceFromS3Input) SetManageMasterUserPassword

func (s *RestoreDBInstanceFromS3Input) SetManageMasterUserPassword(v bool) *RestoreDBInstanceFromS3Input

SetManageMasterUserPassword sets the ManageMasterUserPassword field's value.

func (*RestoreDBInstanceFromS3Input) SetMasterUserPassword

func (s *RestoreDBInstanceFromS3Input) SetMasterUserPassword(v string) *RestoreDBInstanceFromS3Input

SetMasterUserPassword sets the MasterUserPassword field's value.

func (*RestoreDBInstanceFromS3Input) SetMasterUserSecretKmsKeyId

func (s *RestoreDBInstanceFromS3Input) SetMasterUserSecretKmsKeyId(v string) *RestoreDBInstanceFromS3Input

SetMasterUserSecretKmsKeyId sets the MasterUserSecretKmsKeyId field's value.

func (*RestoreDBInstanceFromS3Input) SetMasterUsername

func (s *RestoreDBInstanceFromS3Input) SetMasterUsername(v string) *RestoreDBInstanceFromS3Input

SetMasterUsername sets the MasterUsername field's value.

func (*RestoreDBInstanceFromS3Input) SetMaxAllocatedStorage

func (s *RestoreDBInstanceFromS3Input) SetMaxAllocatedStorage(v int64) *RestoreDBInstanceFromS3Input

SetMaxAllocatedStorage sets the MaxAllocatedStorage field's value.

func (*RestoreDBInstanceFromS3Input) SetMonitoringInterval

func (s *RestoreDBInstanceFromS3Input) SetMonitoringInterval(v int64) *RestoreDBInstanceFromS3Input

SetMonitoringInterval sets the MonitoringInterval field's value.

func (*RestoreDBInstanceFromS3Input) SetMonitoringRoleArn

func (s *RestoreDBInstanceFromS3Input) SetMonitoringRoleArn(v string) *RestoreDBInstanceFromS3Input

SetMonitoringRoleArn sets the MonitoringRoleArn field's value.

func (*RestoreDBInstanceFromS3Input) SetMultiAZ

func (s *RestoreDBInstanceFromS3Input) SetMultiAZ(v bool) *RestoreDBInstanceFromS3Input

SetMultiAZ sets the MultiAZ field's value.

func (*RestoreDBInstanceFromS3Input) SetNetworkType

func (s *RestoreDBInstanceFromS3Input) SetNetworkType(v string) *RestoreDBInstanceFromS3Input

SetNetworkType sets the NetworkType field's value.

func (*RestoreDBInstanceFromS3Input) SetOptionGroupName

func (s *RestoreDBInstanceFromS3Input) SetOptionGroupName(v string) *RestoreDBInstanceFromS3Input

SetOptionGroupName sets the OptionGroupName field's value.

func (*RestoreDBInstanceFromS3Input) SetPerformanceInsightsKMSKeyId

func (s *RestoreDBInstanceFromS3Input) SetPerformanceInsightsKMSKeyId(v string) *RestoreDBInstanceFromS3Input

SetPerformanceInsightsKMSKeyId sets the PerformanceInsightsKMSKeyId field's value.

func (*RestoreDBInstanceFromS3Input) SetPerformanceInsightsRetentionPeriod

func (s *RestoreDBInstanceFromS3Input) SetPerformanceInsightsRetentionPeriod(v int64) *RestoreDBInstanceFromS3Input

SetPerformanceInsightsRetentionPeriod sets the PerformanceInsightsRetentionPeriod field's value.

func (*RestoreDBInstanceFromS3Input) SetPort

func (s *RestoreDBInstanceFromS3Input) SetPort(v int64) *RestoreDBInstanceFromS3Input

SetPort sets the Port field's value.

func (*RestoreDBInstanceFromS3Input) SetPreferredBackupWindow

func (s *RestoreDBInstanceFromS3Input) SetPreferredBackupWindow(v string) *RestoreDBInstanceFromS3Input

SetPreferredBackupWindow sets the PreferredBackupWindow field's value.

func (*RestoreDBInstanceFromS3Input) SetPreferredMaintenanceWindow

func (s *RestoreDBInstanceFromS3Input) SetPreferredMaintenanceWindow(v string) *RestoreDBInstanceFromS3Input

SetPreferredMaintenanceWindow sets the PreferredMaintenanceWindow field's value.

func (*RestoreDBInstanceFromS3Input) SetProcessorFeatures

func (s *RestoreDBInstanceFromS3Input) SetProcessorFeatures(v []*ProcessorFeature) *RestoreDBInstanceFromS3Input

SetProcessorFeatures sets the ProcessorFeatures field's value.

func (*RestoreDBInstanceFromS3Input) SetPubliclyAccessible

func (s *RestoreDBInstanceFromS3Input) SetPubliclyAccessible(v bool) *RestoreDBInstanceFromS3Input

SetPubliclyAccessible sets the PubliclyAccessible field's value.

func (*RestoreDBInstanceFromS3Input) SetS3BucketName

func (s *RestoreDBInstanceFromS3Input) SetS3BucketName(v string) *RestoreDBInstanceFromS3Input

SetS3BucketName sets the S3BucketName field's value.

func (*RestoreDBInstanceFromS3Input) SetS3IngestionRoleArn

func (s *RestoreDBInstanceFromS3Input) SetS3IngestionRoleArn(v string) *RestoreDBInstanceFromS3Input

SetS3IngestionRoleArn sets the S3IngestionRoleArn field's value.

func (*RestoreDBInstanceFromS3Input) SetS3Prefix

func (s *RestoreDBInstanceFromS3Input) SetS3Prefix(v string) *RestoreDBInstanceFromS3Input

SetS3Prefix sets the S3Prefix field's value.

func (*RestoreDBInstanceFromS3Input) SetSourceEngine

func (s *RestoreDBInstanceFromS3Input) SetSourceEngine(v string) *RestoreDBInstanceFromS3Input

SetSourceEngine sets the SourceEngine field's value.

func (*RestoreDBInstanceFromS3Input) SetSourceEngineVersion

func (s *RestoreDBInstanceFromS3Input) SetSourceEngineVersion(v string) *RestoreDBInstanceFromS3Input

SetSourceEngineVersion sets the SourceEngineVersion field's value.

func (*RestoreDBInstanceFromS3Input) SetStorageEncrypted

func (s *RestoreDBInstanceFromS3Input) SetStorageEncrypted(v bool) *RestoreDBInstanceFromS3Input

SetStorageEncrypted sets the StorageEncrypted field's value.

func (*RestoreDBInstanceFromS3Input) SetStorageThroughput

func (s *RestoreDBInstanceFromS3Input) SetStorageThroughput(v int64) *RestoreDBInstanceFromS3Input

SetStorageThroughput sets the StorageThroughput field's value.

func (*RestoreDBInstanceFromS3Input) SetStorageType

func (s *RestoreDBInstanceFromS3Input) SetStorageType(v string) *RestoreDBInstanceFromS3Input

SetStorageType sets the StorageType field's value.

func (*RestoreDBInstanceFromS3Input) SetTags

func (s *RestoreDBInstanceFromS3Input) SetTags(v []*Tag) *RestoreDBInstanceFromS3Input

SetTags sets the Tags field's value.

func (*RestoreDBInstanceFromS3Input) SetUseDefaultProcessorFeatures

func (s *RestoreDBInstanceFromS3Input) SetUseDefaultProcessorFeatures(v bool) *RestoreDBInstanceFromS3Input

SetUseDefaultProcessorFeatures sets the UseDefaultProcessorFeatures field's value.

func (*RestoreDBInstanceFromS3Input) SetVpcSecurityGroupIds

func (s *RestoreDBInstanceFromS3Input) SetVpcSecurityGroupIds(v []*string) *RestoreDBInstanceFromS3Input

SetVpcSecurityGroupIds sets the VpcSecurityGroupIds field's value.

func (RestoreDBInstanceFromS3Input) String

func (s RestoreDBInstanceFromS3Input) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RestoreDBInstanceFromS3Input) Validate

func (s *RestoreDBInstanceFromS3Input) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RestoreDBInstanceFromS3Output

type RestoreDBInstanceFromS3Output struct {

    // Contains the details of an Amazon RDS DB instance.
    //
    // This data type is used as a response element in the operations CreateDBInstance,
    // CreateDBInstanceReadReplica, DeleteDBInstance, DescribeDBInstances, ModifyDBInstance,
    // PromoteReadReplica, RebootDBInstance, RestoreDBInstanceFromDBSnapshot, RestoreDBInstanceFromS3,
    // RestoreDBInstanceToPointInTime, StartDBInstance, and StopDBInstance.
    DBInstance *DBInstance `type:"structure"`
    // contains filtered or unexported fields
}

func (RestoreDBInstanceFromS3Output) GoString

func (s RestoreDBInstanceFromS3Output) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RestoreDBInstanceFromS3Output) SetDBInstance

func (s *RestoreDBInstanceFromS3Output) SetDBInstance(v *DBInstance) *RestoreDBInstanceFromS3Output

SetDBInstance sets the DBInstance field's value.

func (RestoreDBInstanceFromS3Output) String

func (s RestoreDBInstanceFromS3Output) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RestoreDBInstanceToPointInTimeInput

type RestoreDBInstanceToPointInTimeInput struct {

    // The amount of storage (in gibibytes) to allocate initially for the DB instance.
    // Follow the allocation rules specified in CreateDBInstance.
    //
    // Be sure to allocate enough storage for your new DB instance so that the restore
    // operation can succeed. You can also allocate additional storage for future
    // growth.
    AllocatedStorage *int64 `type:"integer"`

    // Specifies whether minor version upgrades are applied automatically to the
    // DB instance during the maintenance window.
    //
    // This setting doesn't apply to RDS Custom.
    AutoMinorVersionUpgrade *bool `type:"boolean"`

    // The Availability Zone (AZ) where the DB instance will be created.
    //
    // Default: A random, system-chosen Availability Zone.
    //
    // Constraints:
    //
    //    * You can't specify the AvailabilityZone parameter if the DB instance
    //    is a Multi-AZ deployment.
    //
    // Example: us-east-1a
    AvailabilityZone *string `type:"string"`

    // The location for storing automated backups and manual snapshots for the restored
    // DB instance.
    //
    // Valid Values:
    //
    //    * outposts (Amazon Web Services Outposts)
    //
    //    * region (Amazon Web Services Region)
    //
    // Default: region
    //
    // For more information, see Working with Amazon RDS on Amazon Web Services
    // Outposts (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html)
    // in the Amazon RDS User Guide.
    BackupTarget *string `type:"string"`

    // Specifies whether to copy all tags from the restored DB instance to snapshots
    // of the DB instance. By default, tags are not copied.
    CopyTagsToSnapshot *bool `type:"boolean"`

    // The instance profile associated with the underlying Amazon EC2 instance of
    // an RDS Custom DB instance. The instance profile must meet the following requirements:
    //
    //    * The profile must exist in your account.
    //
    //    * The profile must have an IAM role that Amazon EC2 has permissions to
    //    assume.
    //
    //    * The instance profile name and the associated IAM role name must start
    //    with the prefix AWSRDSCustom.
    //
    // For the list of permissions required for the IAM role, see Configure IAM
    // and your VPC (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc)
    // in the Amazon RDS User Guide.
    //
    // This setting is required for RDS Custom.
    CustomIamInstanceProfile *string `type:"string"`

    // The compute and memory capacity of the Amazon RDS DB instance, for example
    // db.m4.large. Not all DB instance classes are available in all Amazon Web
    // Services Regions, or for all database engines. For the full list of DB instance
    // classes, and availability for your engine, see DB Instance Class (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html)
    // in the Amazon RDS User Guide.
    //
    // Default: The same DB instance class as the original DB instance.
    DBInstanceClass *string `type:"string"`

    // The database name for the restored DB instance.
    //
    // This parameter doesn't apply to the following DB instances:
    //
    //    * RDS Custom
    //
    //    * RDS for Db2
    //
    //    * RDS for MariaDB
    //
    //    * RDS for MySQL
    DBName *string `type:"string"`

    // The name of the DB parameter group to associate with this DB instance.
    //
    // If you do not specify a value for DBParameterGroupName, then the default
    // DBParameterGroup for the specified DB engine is used.
    //
    // This setting doesn't apply to RDS Custom.
    //
    // Constraints:
    //
    //    * If supplied, must match the name of an existing DB parameter group.
    //
    //    * Must be 1 to 255 letters, numbers, or hyphens.
    //
    //    * First character must be a letter.
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens.
    DBParameterGroupName *string `type:"string"`

    // The DB subnet group name to use for the new instance.
    //
    // Constraints:
    //
    //    * If supplied, must match the name of an existing DB subnet group.
    //
    // Example: mydbsubnetgroup
    DBSubnetGroupName *string `type:"string"`

    // Specifies whether to enable a dedicated log volume (DLV) for the DB instance.
    DedicatedLogVolume *bool `type:"boolean"`

    // Specifies whether the DB instance has deletion protection enabled. The database
    // can't be deleted when deletion protection is enabled. By default, deletion
    // protection isn't enabled. For more information, see Deleting a DB Instance
    // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html).
    DeletionProtection *bool `type:"boolean"`

    // The Active Directory directory ID to restore the DB instance in. Create the
    // domain before running this command. Currently, you can create only the MySQL,
    // Microsoft SQL Server, Oracle, and PostgreSQL DB instances in an Active Directory
    // Domain.
    //
    // This setting doesn't apply to RDS Custom.
    //
    // For more information, see Kerberos Authentication (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html)
    // in the Amazon RDS User Guide.
    Domain *string `type:"string"`

    // The ARN for the Secrets Manager secret with the credentials for the user
    // joining the domain.
    //
    // Constraints:
    //
    //    * Can't be longer than 64 characters.
    //
    // Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456
    DomainAuthSecretArn *string `type:"string"`

    // The IPv4 DNS IP addresses of your primary and secondary Active Directory
    // domain controllers.
    //
    // Constraints:
    //
    //    * Two IP addresses must be provided. If there isn't a secondary domain
    //    controller, use the IP address of the primary domain controller for both
    //    entries in the list.
    //
    // Example: 123.124.125.126,234.235.236.237
    DomainDnsIps []*string `type:"list"`

    // The fully qualified domain name (FQDN) of an Active Directory domain.
    //
    // Constraints:
    //
    //    * Can't be longer than 64 characters.
    //
    // Example: mymanagedADtest.mymanagedAD.mydomain
    DomainFqdn *string `type:"string"`

    // The name of the IAM role to use when making API calls to the Directory Service.
    //
    // This setting doesn't apply to RDS Custom DB instances.
    DomainIAMRoleName *string `type:"string"`

    // The Active Directory organizational unit for your DB instance to join.
    //
    // Constraints:
    //
    //    * Must be in the distinguished name format.
    //
    //    * Can't be longer than 64 characters.
    //
    // Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain
    DomainOu *string `type:"string"`

    // The list of logs that the restored DB instance is to export to CloudWatch
    // Logs. The values in the list depend on the DB engine being used. For more
    // information, see Publishing Database Logs to Amazon CloudWatch Logs (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch)
    // in the Amazon RDS User Guide.
    //
    // This setting doesn't apply to RDS Custom.
    EnableCloudwatchLogsExports []*string `type:"list"`

    // Specifies whether to enable a customer-owned IP address (CoIP) for an RDS
    // on Outposts DB instance.
    //
    // A CoIP provides local or external connectivity to resources in your Outpost
    // subnets through your on-premises network. For some use cases, a CoIP can
    // provide lower latency for connections to the DB instance from outside of
    // its virtual private cloud (VPC) on your local network.
    //
    // This setting doesn't apply to RDS Custom.
    //
    // For more information about RDS on Outposts, see Working with Amazon RDS on
    // Amazon Web Services Outposts (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html)
    // in the Amazon RDS User Guide.
    //
    // For more information about CoIPs, see Customer-owned IP addresses (https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing)
    // in the Amazon Web Services Outposts User Guide.
    EnableCustomerOwnedIp *bool `type:"boolean"`

    // Specifies whether to enable mapping of Amazon Web Services Identity and Access
    // Management (IAM) accounts to database accounts. By default, mapping isn't
    // enabled.
    //
    // This setting doesn't apply to RDS Custom.
    //
    // For more information about IAM database authentication, see IAM Database
    // Authentication for MySQL and PostgreSQL (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html)
    // in the Amazon RDS User Guide.
    EnableIAMDatabaseAuthentication *bool `type:"boolean"`

    // The database engine to use for the new instance.
    //
    // This setting doesn't apply to RDS Custom.
    //
    // Valid Values:
    //
    //    * db2-ae
    //
    //    * db2-se
    //
    //    * mariadb
    //
    //    * mysql
    //
    //    * oracle-ee
    //
    //    * oracle-ee-cdb
    //
    //    * oracle-se2
    //
    //    * oracle-se2-cdb
    //
    //    * postgres
    //
    //    * sqlserver-ee
    //
    //    * sqlserver-se
    //
    //    * sqlserver-ex
    //
    //    * sqlserver-web
    //
    // Default: The same as source
    //
    // Constraints:
    //
    //    * Must be compatible with the engine of the source.
    Engine *string `type:"string"`

    // The amount of Provisioned IOPS (input/output operations per second) to initially
    // allocate for the DB instance.
    //
    // This setting doesn't apply to SQL Server.
    //
    // Constraints:
    //
    //    * Must be an integer greater than 1000.
    Iops *int64 `type:"integer"`

    // The license model information for the restored DB instance.
    //
    // This setting doesn't apply to RDS Custom.
    //
    // Valid Values: license-included | bring-your-own-license | general-public-license
    //
    // Default: Same as the source.
    LicenseModel *string `type:"string"`

    // The upper limit in gibibytes (GiB) to which Amazon RDS can automatically
    // scale the storage of the DB instance.
    //
    // For more information about this setting, including limitations that apply
    // to it, see Managing capacity automatically with Amazon RDS storage autoscaling
    // (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling)
    // in the Amazon RDS User Guide.
    //
    // This setting doesn't apply to RDS Custom.
    MaxAllocatedStorage *int64 `type:"integer"`

    // Secifies whether the DB instance is a Multi-AZ deployment.
    //
    // This setting doesn't apply to RDS Custom.
    //
    // Constraints:
    //
    //    * You can't specify the AvailabilityZone parameter if the DB instance
    //    is a Multi-AZ deployment.
    MultiAZ *bool `type:"boolean"`

    // The network type of the DB instance.
    //
    // The network type is determined by the DBSubnetGroup specified for the DB
    // instance. A DBSubnetGroup can support only the IPv4 protocol or the IPv4
    // and the IPv6 protocols (DUAL).
    //
    // For more information, see Working with a DB instance in a VPC (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html)
    // in the Amazon RDS User Guide.
    //
    // Valid Values:
    //
    //    * IPV4
    //
    //    * DUAL
    NetworkType *string `type:"string"`

    // The name of the option group to use for the restored DB instance.
    //
    // Permanent options, such as the TDE option for Oracle Advanced Security TDE,
    // can't be removed from an option group, and that option group can't be removed
    // from a DB instance after it is associated with a DB instance
    //
    // This setting doesn't apply to RDS Custom.
    OptionGroupName *string `type:"string"`

    // The port number on which the database accepts connections.
    //
    // Default: The same port as the original DB instance.
    //
    // Constraints:
    //
    //    * The value must be 1150-65535.
    Port *int64 `type:"integer"`

    // The number of CPU cores and the number of threads per core for the DB instance
    // class of the DB instance.
    //
    // This setting doesn't apply to RDS Custom.
    ProcessorFeatures []*ProcessorFeature `locationNameList:"ProcessorFeature" type:"list"`

    // Specifies whether the DB instance is publicly accessible.
    //
    // When the DB cluster is publicly accessible, its Domain Name System (DNS)
    // endpoint resolves to the private IP address from within the DB cluster's
    // virtual private cloud (VPC). It resolves to the public IP address from outside
    // of the DB cluster's VPC. Access to the DB cluster is ultimately controlled
    // by the security group it uses. That public access isn't permitted if the
    // security group assigned to the DB cluster doesn't permit it.
    //
    // When the DB instance isn't publicly accessible, it is an internal DB instance
    // with a DNS name that resolves to a private IP address.
    //
    // For more information, see CreateDBInstance.
    PubliclyAccessible *bool `type:"boolean"`

    // The date and time to restore from.
    //
    // Constraints:
    //
    //    * Must be a time in Universal Coordinated Time (UTC) format.
    //
    //    * Must be before the latest restorable time for the DB instance.
    //
    //    * Can't be specified if the UseLatestRestorableTime parameter is enabled.
    //
    // Example: 2009-09-07T23:45:00Z
    RestoreTime *time.Time `type:"timestamp"`

    // The Amazon Resource Name (ARN) of the replicated automated backups from which
    // to restore, for example, arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE.
    //
    // This setting doesn't apply to RDS Custom.
    SourceDBInstanceAutomatedBackupsArn *string `type:"string"`

    // The identifier of the source DB instance from which to restore.
    //
    // Constraints:
    //
    //    * Must match the identifier of an existing DB instance.
    SourceDBInstanceIdentifier *string `type:"string"`

    // The resource ID of the source DB instance from which to restore.
    SourceDbiResourceId *string `type:"string"`

    // The storage throughput value for the DB instance.
    //
    // This setting doesn't apply to RDS Custom or Amazon Aurora.
    StorageThroughput *int64 `type:"integer"`

    // The storage type to associate with the DB instance.
    //
    // Valid Values: gp2 | gp3 | io1 | io2 | standard
    //
    // Default: io1, if the Iops parameter is specified. Otherwise, gp2.
    //
    // Constraints:
    //
    //    * If you specify io1, io2, or gp3, you must also include a value for the
    //    Iops parameter.
    StorageType *string `type:"string"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    Tags []*Tag `locationNameList:"Tag" type:"list"`

    // The name of the new DB instance to create.
    //
    // Constraints:
    //
    //    * Must contain from 1 to 63 letters, numbers, or hyphens.
    //
    //    * First character must be a letter.
    //
    //    * Can't end with a hyphen or contain two consecutive hyphens.
    //
    // TargetDBInstanceIdentifier is a required field
    TargetDBInstanceIdentifier *string `type:"string" required:"true"`

    // The ARN from the key store with which to associate the instance for TDE encryption.
    //
    // This setting doesn't apply to RDS Custom.
    TdeCredentialArn *string `type:"string"`

    // The password for the given ARN from the key store in order to access the
    // device.
    //
    // This setting doesn't apply to RDS Custom.
    TdeCredentialPassword *string `type:"string"`

    // Specifies whether the DB instance class of the DB instance uses its default
    // processor features.
    //
    // This setting doesn't apply to RDS Custom.
    UseDefaultProcessorFeatures *bool `type:"boolean"`

    // Specifies whether the DB instance is restored from the latest backup time.
    // By default, the DB instance isn't restored from the latest backup time.
    //
    // Constraints:
    //
    //    * Can't be specified if the RestoreTime parameter is provided.
    UseLatestRestorableTime *bool `type:"boolean"`

    // A list of EC2 VPC security groups to associate with this DB instance.
    //
    // Default: The default EC2 VPC security group for the DB subnet group's VPC.
    VpcSecurityGroupIds []*string `locationNameList:"VpcSecurityGroupId" type:"list"`
    // contains filtered or unexported fields
}

func (RestoreDBInstanceToPointInTimeInput) GoString

func (s RestoreDBInstanceToPointInTimeInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RestoreDBInstanceToPointInTimeInput) SetAllocatedStorage

func (s *RestoreDBInstanceToPointInTimeInput) SetAllocatedStorage(v int64) *RestoreDBInstanceToPointInTimeInput

SetAllocatedStorage sets the AllocatedStorage field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetAutoMinorVersionUpgrade

func (s *RestoreDBInstanceToPointInTimeInput) SetAutoMinorVersionUpgrade(v bool) *RestoreDBInstanceToPointInTimeInput

SetAutoMinorVersionUpgrade sets the AutoMinorVersionUpgrade field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetAvailabilityZone

func (s *RestoreDBInstanceToPointInTimeInput) SetAvailabilityZone(v string) *RestoreDBInstanceToPointInTimeInput

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetBackupTarget

func (s *RestoreDBInstanceToPointInTimeInput) SetBackupTarget(v string) *RestoreDBInstanceToPointInTimeInput

SetBackupTarget sets the BackupTarget field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetCopyTagsToSnapshot

func (s *RestoreDBInstanceToPointInTimeInput) SetCopyTagsToSnapshot(v bool) *RestoreDBInstanceToPointInTimeInput

SetCopyTagsToSnapshot sets the CopyTagsToSnapshot field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetCustomIamInstanceProfile

func (s *RestoreDBInstanceToPointInTimeInput) SetCustomIamInstanceProfile(v string) *RestoreDBInstanceToPointInTimeInput

SetCustomIamInstanceProfile sets the CustomIamInstanceProfile field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetDBInstanceClass

func (s *RestoreDBInstanceToPointInTimeInput) SetDBInstanceClass(v string) *RestoreDBInstanceToPointInTimeInput

SetDBInstanceClass sets the DBInstanceClass field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetDBName

func (s *RestoreDBInstanceToPointInTimeInput) SetDBName(v string) *RestoreDBInstanceToPointInTimeInput

SetDBName sets the DBName field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetDBParameterGroupName

func (s *RestoreDBInstanceToPointInTimeInput) SetDBParameterGroupName(v string) *RestoreDBInstanceToPointInTimeInput

SetDBParameterGroupName sets the DBParameterGroupName field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetDBSubnetGroupName

func (s *RestoreDBInstanceToPointInTimeInput) SetDBSubnetGroupName(v string) *RestoreDBInstanceToPointInTimeInput

SetDBSubnetGroupName sets the DBSubnetGroupName field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetDedicatedLogVolume

func (s *RestoreDBInstanceToPointInTimeInput) SetDedicatedLogVolume(v bool) *RestoreDBInstanceToPointInTimeInput

SetDedicatedLogVolume sets the DedicatedLogVolume field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetDeletionProtection

func (s *RestoreDBInstanceToPointInTimeInput) SetDeletionProtection(v bool) *RestoreDBInstanceToPointInTimeInput

SetDeletionProtection sets the DeletionProtection field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetDomain

func (s *RestoreDBInstanceToPointInTimeInput) SetDomain(v string) *RestoreDBInstanceToPointInTimeInput

SetDomain sets the Domain field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetDomainAuthSecretArn

func (s *RestoreDBInstanceToPointInTimeInput) SetDomainAuthSecretArn(v string) *RestoreDBInstanceToPointInTimeInput

SetDomainAuthSecretArn sets the DomainAuthSecretArn field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetDomainDnsIps

func (s *RestoreDBInstanceToPointInTimeInput) SetDomainDnsIps(v []*string) *RestoreDBInstanceToPointInTimeInput

SetDomainDnsIps sets the DomainDnsIps field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetDomainFqdn

func (s *RestoreDBInstanceToPointInTimeInput) SetDomainFqdn(v string) *RestoreDBInstanceToPointInTimeInput

SetDomainFqdn sets the DomainFqdn field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetDomainIAMRoleName

func (s *RestoreDBInstanceToPointInTimeInput) SetDomainIAMRoleName(v string) *RestoreDBInstanceToPointInTimeInput

SetDomainIAMRoleName sets the DomainIAMRoleName field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetDomainOu

func (s *RestoreDBInstanceToPointInTimeInput) SetDomainOu(v string) *RestoreDBInstanceToPointInTimeInput

SetDomainOu sets the DomainOu field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetEnableCloudwatchLogsExports

func (s *RestoreDBInstanceToPointInTimeInput) SetEnableCloudwatchLogsExports(v []*string) *RestoreDBInstanceToPointInTimeInput

SetEnableCloudwatchLogsExports sets the EnableCloudwatchLogsExports field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetEnableCustomerOwnedIp

func (s *RestoreDBInstanceToPointInTimeInput) SetEnableCustomerOwnedIp(v bool) *RestoreDBInstanceToPointInTimeInput

SetEnableCustomerOwnedIp sets the EnableCustomerOwnedIp field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetEnableIAMDatabaseAuthentication

func (s *RestoreDBInstanceToPointInTimeInput) SetEnableIAMDatabaseAuthentication(v bool) *RestoreDBInstanceToPointInTimeInput

SetEnableIAMDatabaseAuthentication sets the EnableIAMDatabaseAuthentication field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetEngine

func (s *RestoreDBInstanceToPointInTimeInput) SetEngine(v string) *RestoreDBInstanceToPointInTimeInput

SetEngine sets the Engine field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetIops

func (s *RestoreDBInstanceToPointInTimeInput) SetIops(v int64) *RestoreDBInstanceToPointInTimeInput

SetIops sets the Iops field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetLicenseModel

func (s *RestoreDBInstanceToPointInTimeInput) SetLicenseModel(v string) *RestoreDBInstanceToPointInTimeInput

SetLicenseModel sets the LicenseModel field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetMaxAllocatedStorage

func (s *RestoreDBInstanceToPointInTimeInput) SetMaxAllocatedStorage(v int64) *RestoreDBInstanceToPointInTimeInput

SetMaxAllocatedStorage sets the MaxAllocatedStorage field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetMultiAZ

func (s *RestoreDBInstanceToPointInTimeInput) SetMultiAZ(v bool) *RestoreDBInstanceToPointInTimeInput

SetMultiAZ sets the MultiAZ field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetNetworkType

func (s *RestoreDBInstanceToPointInTimeInput) SetNetworkType(v string) *RestoreDBInstanceToPointInTimeInput

SetNetworkType sets the NetworkType field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetOptionGroupName

func (s *RestoreDBInstanceToPointInTimeInput) SetOptionGroupName(v string) *RestoreDBInstanceToPointInTimeInput

SetOptionGroupName sets the OptionGroupName field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetPort

func (s *RestoreDBInstanceToPointInTimeInput) SetPort(v int64) *RestoreDBInstanceToPointInTimeInput

SetPort sets the Port field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetProcessorFeatures

func (s *RestoreDBInstanceToPointInTimeInput) SetProcessorFeatures(v []*ProcessorFeature) *RestoreDBInstanceToPointInTimeInput

SetProcessorFeatures sets the ProcessorFeatures field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetPubliclyAccessible

func (s *RestoreDBInstanceToPointInTimeInput) SetPubliclyAccessible(v bool) *RestoreDBInstanceToPointInTimeInput

SetPubliclyAccessible sets the PubliclyAccessible field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetRestoreTime

func (s *RestoreDBInstanceToPointInTimeInput) SetRestoreTime(v time.Time) *RestoreDBInstanceToPointInTimeInput

SetRestoreTime sets the RestoreTime field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetSourceDBInstanceAutomatedBackupsArn

func (s *RestoreDBInstanceToPointInTimeInput) SetSourceDBInstanceAutomatedBackupsArn(v string) *RestoreDBInstanceToPointInTimeInput

SetSourceDBInstanceAutomatedBackupsArn sets the SourceDBInstanceAutomatedBackupsArn field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetSourceDBInstanceIdentifier

func (s *RestoreDBInstanceToPointInTimeInput) SetSourceDBInstanceIdentifier(v string) *RestoreDBInstanceToPointInTimeInput

SetSourceDBInstanceIdentifier sets the SourceDBInstanceIdentifier field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetSourceDbiResourceId

func (s *RestoreDBInstanceToPointInTimeInput) SetSourceDbiResourceId(v string) *RestoreDBInstanceToPointInTimeInput

SetSourceDbiResourceId sets the SourceDbiResourceId field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetStorageThroughput

func (s *RestoreDBInstanceToPointInTimeInput) SetStorageThroughput(v int64) *RestoreDBInstanceToPointInTimeInput

SetStorageThroughput sets the StorageThroughput field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetStorageType

func (s *RestoreDBInstanceToPointInTimeInput) SetStorageType(v string) *RestoreDBInstanceToPointInTimeInput

SetStorageType sets the StorageType field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetTags

func (s *RestoreDBInstanceToPointInTimeInput) SetTags(v []*Tag) *RestoreDBInstanceToPointInTimeInput

SetTags sets the Tags field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetTargetDBInstanceIdentifier

func (s *RestoreDBInstanceToPointInTimeInput) SetTargetDBInstanceIdentifier(v string) *RestoreDBInstanceToPointInTimeInput

SetTargetDBInstanceIdentifier sets the TargetDBInstanceIdentifier field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetTdeCredentialArn

func (s *RestoreDBInstanceToPointInTimeInput) SetTdeCredentialArn(v string) *RestoreDBInstanceToPointInTimeInput

SetTdeCredentialArn sets the TdeCredentialArn field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetTdeCredentialPassword

func (s *RestoreDBInstanceToPointInTimeInput) SetTdeCredentialPassword(v string) *RestoreDBInstanceToPointInTimeInput

SetTdeCredentialPassword sets the TdeCredentialPassword field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetUseDefaultProcessorFeatures

func (s *RestoreDBInstanceToPointInTimeInput) SetUseDefaultProcessorFeatures(v bool) *RestoreDBInstanceToPointInTimeInput

SetUseDefaultProcessorFeatures sets the UseDefaultProcessorFeatures field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetUseLatestRestorableTime

func (s *RestoreDBInstanceToPointInTimeInput) SetUseLatestRestorableTime(v bool) *RestoreDBInstanceToPointInTimeInput

SetUseLatestRestorableTime sets the UseLatestRestorableTime field's value.

func (*RestoreDBInstanceToPointInTimeInput) SetVpcSecurityGroupIds

func (s *RestoreDBInstanceToPointInTimeInput) SetVpcSecurityGroupIds(v []*string) *RestoreDBInstanceToPointInTimeInput

SetVpcSecurityGroupIds sets the VpcSecurityGroupIds field's value.

func (RestoreDBInstanceToPointInTimeInput) String

func (s RestoreDBInstanceToPointInTimeInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RestoreDBInstanceToPointInTimeInput) Validate

func (s *RestoreDBInstanceToPointInTimeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RestoreDBInstanceToPointInTimeOutput

type RestoreDBInstanceToPointInTimeOutput struct {

    // Contains the details of an Amazon RDS DB instance.
    //
    // This data type is used as a response element in the operations CreateDBInstance,
    // CreateDBInstanceReadReplica, DeleteDBInstance, DescribeDBInstances, ModifyDBInstance,
    // PromoteReadReplica, RebootDBInstance, RestoreDBInstanceFromDBSnapshot, RestoreDBInstanceFromS3,
    // RestoreDBInstanceToPointInTime, StartDBInstance, and StopDBInstance.
    DBInstance *DBInstance `type:"structure"`
    // contains filtered or unexported fields
}

func (RestoreDBInstanceToPointInTimeOutput) GoString

func (s RestoreDBInstanceToPointInTimeOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RestoreDBInstanceToPointInTimeOutput) SetDBInstance

func (s *RestoreDBInstanceToPointInTimeOutput) SetDBInstance(v *DBInstance) *RestoreDBInstanceToPointInTimeOutput

SetDBInstance sets the DBInstance field's value.

func (RestoreDBInstanceToPointInTimeOutput) String

func (s RestoreDBInstanceToPointInTimeOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RestoreWindow

type RestoreWindow struct {

    // The earliest time you can restore an instance to.
    EarliestTime *time.Time `type:"timestamp"`

    // The latest time you can restore an instance to.
    LatestTime *time.Time `type:"timestamp"`
    // contains filtered or unexported fields
}

Earliest and latest time an instance can be restored to:

func (RestoreWindow) GoString

func (s RestoreWindow) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RestoreWindow) SetEarliestTime

func (s *RestoreWindow) SetEarliestTime(v time.Time) *RestoreWindow

SetEarliestTime sets the EarliestTime field's value.

func (*RestoreWindow) SetLatestTime

func (s *RestoreWindow) SetLatestTime(v time.Time) *RestoreWindow

SetLatestTime sets the LatestTime field's value.

func (RestoreWindow) String

func (s RestoreWindow) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RevokeDBSecurityGroupIngressInput

type RevokeDBSecurityGroupIngressInput struct {

    // The IP range to revoke access from. Must be a valid CIDR range. If CIDRIP
    // is specified, EC2SecurityGroupName, EC2SecurityGroupId and EC2SecurityGroupOwnerId
    // can't be provided.
    CIDRIP *string `type:"string"`

    // The name of the DB security group to revoke ingress from.
    //
    // DBSecurityGroupName is a required field
    DBSecurityGroupName *string `type:"string" required:"true"`

    // The id of the EC2 security group to revoke access from. For VPC DB security
    // groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId
    // and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.
    EC2SecurityGroupId *string `type:"string"`

    // The name of the EC2 security group to revoke access from. For VPC DB security
    // groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId
    // and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.
    EC2SecurityGroupName *string `type:"string"`

    // The Amazon Web Services account number of the owner of the EC2 security group
    // specified in the EC2SecurityGroupName parameter. The Amazon Web Services
    // access key ID isn't an acceptable value. For VPC DB security groups, EC2SecurityGroupId
    // must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName
    // or EC2SecurityGroupId must be provided.
    EC2SecurityGroupOwnerId *string `type:"string"`
    // contains filtered or unexported fields
}

func (RevokeDBSecurityGroupIngressInput) GoString

func (s RevokeDBSecurityGroupIngressInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RevokeDBSecurityGroupIngressInput) SetCIDRIP

func (s *RevokeDBSecurityGroupIngressInput) SetCIDRIP(v string) *RevokeDBSecurityGroupIngressInput

SetCIDRIP sets the CIDRIP field's value.

func (*RevokeDBSecurityGroupIngressInput) SetDBSecurityGroupName

func (s *RevokeDBSecurityGroupIngressInput) SetDBSecurityGroupName(v string) *RevokeDBSecurityGroupIngressInput

SetDBSecurityGroupName sets the DBSecurityGroupName field's value.

func (*RevokeDBSecurityGroupIngressInput) SetEC2SecurityGroupId

func (s *RevokeDBSecurityGroupIngressInput) SetEC2SecurityGroupId(v string) *RevokeDBSecurityGroupIngressInput

SetEC2SecurityGroupId sets the EC2SecurityGroupId field's value.

func (*RevokeDBSecurityGroupIngressInput) SetEC2SecurityGroupName

func (s *RevokeDBSecurityGroupIngressInput) SetEC2SecurityGroupName(v string) *RevokeDBSecurityGroupIngressInput

SetEC2SecurityGroupName sets the EC2SecurityGroupName field's value.

func (*RevokeDBSecurityGroupIngressInput) SetEC2SecurityGroupOwnerId

func (s *RevokeDBSecurityGroupIngressInput) SetEC2SecurityGroupOwnerId(v string) *RevokeDBSecurityGroupIngressInput

SetEC2SecurityGroupOwnerId sets the EC2SecurityGroupOwnerId field's value.

func (RevokeDBSecurityGroupIngressInput) String

func (s RevokeDBSecurityGroupIngressInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RevokeDBSecurityGroupIngressInput) Validate

func (s *RevokeDBSecurityGroupIngressInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RevokeDBSecurityGroupIngressOutput

type RevokeDBSecurityGroupIngressOutput struct {

    // Contains the details for an Amazon RDS DB security group.
    //
    // This data type is used as a response element in the DescribeDBSecurityGroups
    // action.
    DBSecurityGroup *DBSecurityGroup `type:"structure"`
    // contains filtered or unexported fields
}

func (RevokeDBSecurityGroupIngressOutput) GoString

func (s RevokeDBSecurityGroupIngressOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RevokeDBSecurityGroupIngressOutput) SetDBSecurityGroup

func (s *RevokeDBSecurityGroupIngressOutput) SetDBSecurityGroup(v *DBSecurityGroup) *RevokeDBSecurityGroupIngressOutput

SetDBSecurityGroup sets the DBSecurityGroup field's value.

func (RevokeDBSecurityGroupIngressOutput) String

func (s RevokeDBSecurityGroupIngressOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ScalarReferenceDetails

type ScalarReferenceDetails struct {

    // The value of a scalar reference.
    Value *float64 `type:"double"`
    // contains filtered or unexported fields
}

The metric reference details when the reference is a scalar.

func (ScalarReferenceDetails) GoString

func (s ScalarReferenceDetails) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ScalarReferenceDetails) SetValue

func (s *ScalarReferenceDetails) SetValue(v float64) *ScalarReferenceDetails

SetValue sets the Value field's value.

func (ScalarReferenceDetails) String

func (s ScalarReferenceDetails) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ScalingConfiguration

type ScalingConfiguration struct {

    // Indicates whether to allow or disallow automatic pause for an Aurora DB cluster
    // in serverless DB engine mode. A DB cluster can be paused only when it's idle
    // (it has no connections).
    //
    // If a DB cluster is paused for more than seven days, the DB cluster might
    // be backed up with a snapshot. In this case, the DB cluster is restored when
    // there is a request to connect to it.
    AutoPause *bool `type:"boolean"`

    // The maximum capacity for an Aurora DB cluster in serverless DB engine mode.
    //
    // For Aurora MySQL, valid capacity values are 1, 2, 4, 8, 16, 32, 64, 128,
    // and 256.
    //
    // For Aurora PostgreSQL, valid capacity values are 2, 4, 8, 16, 32, 64, 192,
    // and 384.
    //
    // The maximum capacity must be greater than or equal to the minimum capacity.
    MaxCapacity *int64 `type:"integer"`

    // The minimum capacity for an Aurora DB cluster in serverless DB engine mode.
    //
    // For Aurora MySQL, valid capacity values are 1, 2, 4, 8, 16, 32, 64, 128,
    // and 256.
    //
    // For Aurora PostgreSQL, valid capacity values are 2, 4, 8, 16, 32, 64, 192,
    // and 384.
    //
    // The minimum capacity must be less than or equal to the maximum capacity.
    MinCapacity *int64 `type:"integer"`

    // The amount of time, in seconds, that Aurora Serverless v1 tries to find a
    // scaling point to perform seamless scaling before enforcing the timeout action.
    // The default is 300.
    //
    // Specify a value between 60 and 600 seconds.
    SecondsBeforeTimeout *int64 `type:"integer"`

    // The time, in seconds, before an Aurora DB cluster in serverless mode is paused.
    //
    // Specify a value between 300 and 86,400 seconds.
    SecondsUntilAutoPause *int64 `type:"integer"`

    // The action to take when the timeout is reached, either ForceApplyCapacityChange
    // or RollbackCapacityChange.
    //
    // ForceApplyCapacityChange sets the capacity to the specified value as soon
    // as possible.
    //
    // RollbackCapacityChange, the default, ignores the capacity change if a scaling
    // point isn't found in the timeout period.
    //
    // If you specify ForceApplyCapacityChange, connections that prevent Aurora
    // Serverless v1 from finding a scaling point might be dropped.
    //
    // For more information, see Autoscaling for Aurora Serverless v1 (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.how-it-works.html#aurora-serverless.how-it-works.auto-scaling)
    // in the Amazon Aurora User Guide.
    TimeoutAction *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the scaling configuration of an Aurora Serverless v1 DB cluster.

For more information, see Using Amazon Aurora Serverless v1 (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html) in the Amazon Aurora User Guide.

func (ScalingConfiguration) GoString

func (s ScalingConfiguration) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ScalingConfiguration) SetAutoPause

func (s *ScalingConfiguration) SetAutoPause(v bool) *ScalingConfiguration

SetAutoPause sets the AutoPause field's value.

func (*ScalingConfiguration) SetMaxCapacity

func (s *ScalingConfiguration) SetMaxCapacity(v int64) *ScalingConfiguration

SetMaxCapacity sets the MaxCapacity field's value.

func (*ScalingConfiguration) SetMinCapacity

func (s *ScalingConfiguration) SetMinCapacity(v int64) *ScalingConfiguration

SetMinCapacity sets the MinCapacity field's value.

func (*ScalingConfiguration) SetSecondsBeforeTimeout

func (s *ScalingConfiguration) SetSecondsBeforeTimeout(v int64) *ScalingConfiguration

SetSecondsBeforeTimeout sets the SecondsBeforeTimeout field's value.

func (*ScalingConfiguration) SetSecondsUntilAutoPause

func (s *ScalingConfiguration) SetSecondsUntilAutoPause(v int64) *ScalingConfiguration

SetSecondsUntilAutoPause sets the SecondsUntilAutoPause field's value.

func (*ScalingConfiguration) SetTimeoutAction

func (s *ScalingConfiguration) SetTimeoutAction(v string) *ScalingConfiguration

SetTimeoutAction sets the TimeoutAction field's value.

func (ScalingConfiguration) String

func (s ScalingConfiguration) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ScalingConfigurationInfo

type ScalingConfigurationInfo struct {

    // Indicates whether automatic pause is allowed for the Aurora DB cluster in
    // serverless DB engine mode.
    //
    // When the value is set to false for an Aurora Serverless v1 DB cluster, the
    // DB cluster automatically resumes.
    AutoPause *bool `type:"boolean"`

    // The maximum capacity for an Aurora DB cluster in serverless DB engine mode.
    MaxCapacity *int64 `type:"integer"`

    // The minimum capacity for an Aurora DB cluster in serverless DB engine mode.
    MinCapacity *int64 `type:"integer"`

    // The number of seconds before scaling times out. What happens when an attempted
    // scaling action times out is determined by the TimeoutAction setting.
    SecondsBeforeTimeout *int64 `type:"integer"`

    // The remaining amount of time, in seconds, before the Aurora DB cluster in
    // serverless mode is paused. A DB cluster can be paused only when it's idle
    // (it has no connections).
    SecondsUntilAutoPause *int64 `type:"integer"`

    // The action that occurs when Aurora times out while attempting to change the
    // capacity of an Aurora Serverless v1 cluster. The value is either ForceApplyCapacityChange
    // or RollbackCapacityChange.
    //
    // ForceApplyCapacityChange, the default, sets the capacity to the specified
    // value as soon as possible.
    //
    // RollbackCapacityChange ignores the capacity change if a scaling point isn't
    // found in the timeout period.
    TimeoutAction *string `type:"string"`
    // contains filtered or unexported fields
}

The scaling configuration for an Aurora DB cluster in serverless DB engine mode.

For more information, see Using Amazon Aurora Serverless v1 (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html) in the Amazon Aurora User Guide.

func (ScalingConfigurationInfo) GoString

func (s ScalingConfigurationInfo) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ScalingConfigurationInfo) SetAutoPause

func (s *ScalingConfigurationInfo) SetAutoPause(v bool) *ScalingConfigurationInfo

SetAutoPause sets the AutoPause field's value.

func (*ScalingConfigurationInfo) SetMaxCapacity

func (s *ScalingConfigurationInfo) SetMaxCapacity(v int64) *ScalingConfigurationInfo

SetMaxCapacity sets the MaxCapacity field's value.

func (*ScalingConfigurationInfo) SetMinCapacity

func (s *ScalingConfigurationInfo) SetMinCapacity(v int64) *ScalingConfigurationInfo

SetMinCapacity sets the MinCapacity field's value.

func (*ScalingConfigurationInfo) SetSecondsBeforeTimeout

func (s *ScalingConfigurationInfo) SetSecondsBeforeTimeout(v int64) *ScalingConfigurationInfo

SetSecondsBeforeTimeout sets the SecondsBeforeTimeout field's value.

func (*ScalingConfigurationInfo) SetSecondsUntilAutoPause

func (s *ScalingConfigurationInfo) SetSecondsUntilAutoPause(v int64) *ScalingConfigurationInfo

SetSecondsUntilAutoPause sets the SecondsUntilAutoPause field's value.

func (*ScalingConfigurationInfo) SetTimeoutAction

func (s *ScalingConfigurationInfo) SetTimeoutAction(v string) *ScalingConfigurationInfo

SetTimeoutAction sets the TimeoutAction field's value.

func (ScalingConfigurationInfo) String

func (s ScalingConfigurationInfo) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ServerlessV2ScalingConfiguration

type ServerlessV2ScalingConfiguration struct {

    // The maximum number of Aurora capacity units (ACUs) for a DB instance in an
    // Aurora Serverless v2 cluster. You can specify ACU values in half-step increments,
    // such as 40, 40.5, 41, and so on. The largest value that you can use is 128.
    MaxCapacity *float64 `type:"double"`

    // The minimum number of Aurora capacity units (ACUs) for a DB instance in an
    // Aurora Serverless v2 cluster. You can specify ACU values in half-step increments,
    // such as 8, 8.5, 9, and so on. The smallest value that you can use is 0.5.
    MinCapacity *float64 `type:"double"`
    // contains filtered or unexported fields
}

Contains the scaling configuration of an Aurora Serverless v2 DB cluster.

For more information, see Using Amazon Aurora Serverless v2 (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html) in the Amazon Aurora User Guide.

func (ServerlessV2ScalingConfiguration) GoString

func (s ServerlessV2ScalingConfiguration) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ServerlessV2ScalingConfiguration) SetMaxCapacity

func (s *ServerlessV2ScalingConfiguration) SetMaxCapacity(v float64) *ServerlessV2ScalingConfiguration

SetMaxCapacity sets the MaxCapacity field's value.

func (*ServerlessV2ScalingConfiguration) SetMinCapacity

func (s *ServerlessV2ScalingConfiguration) SetMinCapacity(v float64) *ServerlessV2ScalingConfiguration

SetMinCapacity sets the MinCapacity field's value.

func (ServerlessV2ScalingConfiguration) String

func (s ServerlessV2ScalingConfiguration) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ServerlessV2ScalingConfigurationInfo

type ServerlessV2ScalingConfigurationInfo struct {

    // The maximum number of Aurora capacity units (ACUs) for a DB instance in an
    // Aurora Serverless v2 cluster. You can specify ACU values in half-step increments,
    // such as 40, 40.5, 41, and so on. The largest value that you can use is 128.
    MaxCapacity *float64 `type:"double"`

    // The minimum number of Aurora capacity units (ACUs) for a DB instance in an
    // Aurora Serverless v2 cluster. You can specify ACU values in half-step increments,
    // such as 8, 8.5, 9, and so on. The smallest value that you can use is 0.5.
    MinCapacity *float64 `type:"double"`
    // contains filtered or unexported fields
}

The scaling configuration for an Aurora Serverless v2 DB cluster.

For more information, see Using Amazon Aurora Serverless v2 (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html) in the Amazon Aurora User Guide.

func (ServerlessV2ScalingConfigurationInfo) GoString

func (s ServerlessV2ScalingConfigurationInfo) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ServerlessV2ScalingConfigurationInfo) SetMaxCapacity

func (s *ServerlessV2ScalingConfigurationInfo) SetMaxCapacity(v float64) *ServerlessV2ScalingConfigurationInfo

SetMaxCapacity sets the MaxCapacity field's value.

func (*ServerlessV2ScalingConfigurationInfo) SetMinCapacity

func (s *ServerlessV2ScalingConfigurationInfo) SetMinCapacity(v float64) *ServerlessV2ScalingConfigurationInfo

SetMinCapacity sets the MinCapacity field's value.

func (ServerlessV2ScalingConfigurationInfo) String

func (s ServerlessV2ScalingConfigurationInfo) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type SourceRegion

type SourceRegion struct {

    // The endpoint for the source Amazon Web Services Region endpoint.
    Endpoint *string `type:"string"`

    // The name of the source Amazon Web Services Region.
    RegionName *string `type:"string"`

    // The status of the source Amazon Web Services Region.
    Status *string `type:"string"`

    // Indicates whether the source Amazon Web Services Region supports replicating
    // automated backups to the current Amazon Web Services Region.
    SupportsDBInstanceAutomatedBackupsReplication *bool `type:"boolean"`
    // contains filtered or unexported fields
}

Contains an Amazon Web Services Region name as the result of a successful call to the DescribeSourceRegions action.

func (SourceRegion) GoString

func (s SourceRegion) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*SourceRegion) SetEndpoint

func (s *SourceRegion) SetEndpoint(v string) *SourceRegion

SetEndpoint sets the Endpoint field's value.

func (*SourceRegion) SetRegionName

func (s *SourceRegion) SetRegionName(v string) *SourceRegion

SetRegionName sets the RegionName field's value.

func (*SourceRegion) SetStatus

func (s *SourceRegion) SetStatus(v string) *SourceRegion

SetStatus sets the Status field's value.

func (*SourceRegion) SetSupportsDBInstanceAutomatedBackupsReplication

func (s *SourceRegion) SetSupportsDBInstanceAutomatedBackupsReplication(v bool) *SourceRegion

SetSupportsDBInstanceAutomatedBackupsReplication sets the SupportsDBInstanceAutomatedBackupsReplication field's value.

func (SourceRegion) String

func (s SourceRegion) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type StartActivityStreamInput

type StartActivityStreamInput struct {

    // Specifies whether or not the database activity stream is to start as soon
    // as possible, regardless of the maintenance window for the database.
    ApplyImmediately *bool `type:"boolean"`

    // Specifies whether the database activity stream includes engine-native audit
    // fields. This option applies to an Oracle or Microsoft SQL Server DB instance.
    // By default, no engine-native audit fields are included.
    EngineNativeAuditFieldsIncluded *bool `type:"boolean"`

    // The Amazon Web Services KMS key identifier for encrypting messages in the
    // database activity stream. The Amazon Web Services KMS key identifier is the
    // key ARN, key ID, alias ARN, or alias name for the KMS key.
    //
    // KmsKeyId is a required field
    KmsKeyId *string `type:"string" required:"true"`

    // Specifies the mode of the database activity stream. Database events such
    // as a change or access generate an activity stream event. The database session
    // can handle these events either synchronously or asynchronously.
    //
    // Mode is a required field
    Mode *string `type:"string" required:"true" enum:"ActivityStreamMode"`

    // The Amazon Resource Name (ARN) of the DB cluster, for example, arn:aws:rds:us-east-1:12345667890:cluster:das-cluster.
    //
    // ResourceArn is a required field
    ResourceArn *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (StartActivityStreamInput) GoString

func (s StartActivityStreamInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StartActivityStreamInput) SetApplyImmediately

func (s *StartActivityStreamInput) SetApplyImmediately(v bool) *StartActivityStreamInput

SetApplyImmediately sets the ApplyImmediately field's value.

func (*StartActivityStreamInput) SetEngineNativeAuditFieldsIncluded

func (s *StartActivityStreamInput) SetEngineNativeAuditFieldsIncluded(v bool) *StartActivityStreamInput

SetEngineNativeAuditFieldsIncluded sets the EngineNativeAuditFieldsIncluded field's value.

func (*StartActivityStreamInput) SetKmsKeyId

func (s *StartActivityStreamInput) SetKmsKeyId(v string) *StartActivityStreamInput

SetKmsKeyId sets the KmsKeyId field's value.

func (*StartActivityStreamInput) SetMode

func (s *StartActivityStreamInput) SetMode(v string) *StartActivityStreamInput

SetMode sets the Mode field's value.

func (*StartActivityStreamInput) SetResourceArn

func (s *StartActivityStreamInput) SetResourceArn(v string) *StartActivityStreamInput

SetResourceArn sets the ResourceArn field's value.

func (StartActivityStreamInput) String

func (s StartActivityStreamInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StartActivityStreamInput) Validate

func (s *StartActivityStreamInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StartActivityStreamOutput

type StartActivityStreamOutput struct {

    // Indicates whether or not the database activity stream will start as soon
    // as possible, regardless of the maintenance window for the database.
    ApplyImmediately *bool `type:"boolean"`

    // Indicates whether engine-native audit fields are included in the database
    // activity stream.
    EngineNativeAuditFieldsIncluded *bool `type:"boolean"`

    // The name of the Amazon Kinesis data stream to be used for the database activity
    // stream.
    KinesisStreamName *string `type:"string"`

    // The Amazon Web Services KMS key identifier for encryption of messages in
    // the database activity stream.
    KmsKeyId *string `type:"string"`

    // The mode of the database activity stream.
    Mode *string `type:"string" enum:"ActivityStreamMode"`

    // The status of the database activity stream.
    Status *string `type:"string" enum:"ActivityStreamStatus"`
    // contains filtered or unexported fields
}

func (StartActivityStreamOutput) GoString

func (s StartActivityStreamOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StartActivityStreamOutput) SetApplyImmediately

func (s *StartActivityStreamOutput) SetApplyImmediately(v bool) *StartActivityStreamOutput

SetApplyImmediately sets the ApplyImmediately field's value.

func (*StartActivityStreamOutput) SetEngineNativeAuditFieldsIncluded

func (s *StartActivityStreamOutput) SetEngineNativeAuditFieldsIncluded(v bool) *StartActivityStreamOutput

SetEngineNativeAuditFieldsIncluded sets the EngineNativeAuditFieldsIncluded field's value.

func (*StartActivityStreamOutput) SetKinesisStreamName

func (s *StartActivityStreamOutput) SetKinesisStreamName(v string) *StartActivityStreamOutput

SetKinesisStreamName sets the KinesisStreamName field's value.

func (*StartActivityStreamOutput) SetKmsKeyId

func (s *StartActivityStreamOutput) SetKmsKeyId(v string) *StartActivityStreamOutput

SetKmsKeyId sets the KmsKeyId field's value.

func (*StartActivityStreamOutput) SetMode

func (s *StartActivityStreamOutput) SetMode(v string) *StartActivityStreamOutput

SetMode sets the Mode field's value.

func (*StartActivityStreamOutput) SetStatus

func (s *StartActivityStreamOutput) SetStatus(v string) *StartActivityStreamOutput

SetStatus sets the Status field's value.

func (StartActivityStreamOutput) String

func (s StartActivityStreamOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type StartDBClusterInput

type StartDBClusterInput struct {

    // The DB cluster identifier of the Amazon Aurora DB cluster to be started.
    // This parameter is stored as a lowercase string.
    //
    // DBClusterIdentifier is a required field
    DBClusterIdentifier *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (StartDBClusterInput) GoString

func (s StartDBClusterInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StartDBClusterInput) SetDBClusterIdentifier

func (s *StartDBClusterInput) SetDBClusterIdentifier(v string) *StartDBClusterInput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (StartDBClusterInput) String

func (s StartDBClusterInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StartDBClusterInput) Validate

func (s *StartDBClusterInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StartDBClusterOutput

type StartDBClusterOutput struct {

    // Contains the details of an Amazon Aurora DB cluster or Multi-AZ DB cluster.
    //
    // For an Amazon Aurora DB cluster, this data type is used as a response element
    // in the operations CreateDBCluster, DeleteDBCluster, DescribeDBClusters, FailoverDBCluster,
    // ModifyDBCluster, PromoteReadReplicaDBCluster, RestoreDBClusterFromS3, RestoreDBClusterFromSnapshot,
    // RestoreDBClusterToPointInTime, StartDBCluster, and StopDBCluster.
    //
    // For a Multi-AZ DB cluster, this data type is used as a response element in
    // the operations CreateDBCluster, DeleteDBCluster, DescribeDBClusters, FailoverDBCluster,
    // ModifyDBCluster, RebootDBCluster, RestoreDBClusterFromSnapshot, and RestoreDBClusterToPointInTime.
    //
    // For more information on Amazon Aurora DB clusters, see What is Amazon Aurora?
    // (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html)
    // in the Amazon Aurora User Guide.
    //
    // For more information on Multi-AZ DB clusters, see Multi-AZ deployments with
    // two readable standby DB instances (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html)
    // in the Amazon RDS User Guide.
    DBCluster *DBCluster `type:"structure"`
    // contains filtered or unexported fields
}

func (StartDBClusterOutput) GoString

func (s StartDBClusterOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StartDBClusterOutput) SetDBCluster

func (s *StartDBClusterOutput) SetDBCluster(v *DBCluster) *StartDBClusterOutput

SetDBCluster sets the DBCluster field's value.

func (StartDBClusterOutput) String

func (s StartDBClusterOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type StartDBInstanceAutomatedBackupsReplicationInput

type StartDBInstanceAutomatedBackupsReplicationInput struct {

    // The retention period for the replicated automated backups.
    BackupRetentionPeriod *int64 `type:"integer"`

    // DestinationRegion is used for presigning the request to a given region.
    DestinationRegion *string `type:"string"`

    // The Amazon Web Services KMS key identifier for encryption of the replicated
    // automated backups. The KMS key ID is the Amazon Resource Name (ARN) for the
    // KMS encryption key in the destination Amazon Web Services Region, for example,
    // arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE.
    KmsKeyId *string `type:"string"`

    // In an Amazon Web Services GovCloud (US) Region, an URL that contains a Signature
    // Version 4 signed request for the StartDBInstanceAutomatedBackupsReplication
    // operation to call in the Amazon Web Services Region of the source DB instance.
    // The presigned URL must be a valid request for the StartDBInstanceAutomatedBackupsReplication
    // API operation that can run in the Amazon Web Services Region that contains
    // the source DB instance.
    //
    // This setting applies only to Amazon Web Services GovCloud (US) Regions. It's
    // ignored in other Amazon Web Services Regions.
    //
    // To learn how to generate a Signature Version 4 signed request, see Authenticating
    // Requests: Using Query Parameters (Amazon Web Services Signature Version 4)
    // (https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html)
    // and Signature Version 4 Signing Process (https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html).
    //
    // If you are using an Amazon Web Services SDK tool or the CLI, you can specify
    // SourceRegion (or --source-region for the CLI) instead of specifying PreSignedUrl
    // manually. Specifying SourceRegion autogenerates a presigned URL that is a
    // valid request for the operation that can run in the source Amazon Web Services
    // Region.
    PreSignedUrl *string `type:"string"`

    // The Amazon Resource Name (ARN) of the source DB instance for the replicated
    // automated backups, for example, arn:aws:rds:us-west-2:123456789012:db:mydatabase.
    //
    // SourceDBInstanceArn is a required field
    SourceDBInstanceArn *string `type:"string" required:"true"`

    // SourceRegion is the source region where the resource exists. This is not
    // sent over the wire and is only used for presigning. This value should always
    // have the same region as the source ARN.
    SourceRegion *string `type:"string" ignore:"true"`
    // contains filtered or unexported fields
}

func (StartDBInstanceAutomatedBackupsReplicationInput) GoString

func (s StartDBInstanceAutomatedBackupsReplicationInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StartDBInstanceAutomatedBackupsReplicationInput) SetBackupRetentionPeriod

func (s *StartDBInstanceAutomatedBackupsReplicationInput) SetBackupRetentionPeriod(v int64) *StartDBInstanceAutomatedBackupsReplicationInput

SetBackupRetentionPeriod sets the BackupRetentionPeriod field's value.

func (*StartDBInstanceAutomatedBackupsReplicationInput) SetDestinationRegion

func (s *StartDBInstanceAutomatedBackupsReplicationInput) SetDestinationRegion(v string) *StartDBInstanceAutomatedBackupsReplicationInput

SetDestinationRegion sets the DestinationRegion field's value.

func (*StartDBInstanceAutomatedBackupsReplicationInput) SetKmsKeyId

func (s *StartDBInstanceAutomatedBackupsReplicationInput) SetKmsKeyId(v string) *StartDBInstanceAutomatedBackupsReplicationInput

SetKmsKeyId sets the KmsKeyId field's value.

func (*StartDBInstanceAutomatedBackupsReplicationInput) SetPreSignedUrl

func (s *StartDBInstanceAutomatedBackupsReplicationInput) SetPreSignedUrl(v string) *StartDBInstanceAutomatedBackupsReplicationInput

SetPreSignedUrl sets the PreSignedUrl field's value.

func (*StartDBInstanceAutomatedBackupsReplicationInput) SetSourceDBInstanceArn

func (s *StartDBInstanceAutomatedBackupsReplicationInput) SetSourceDBInstanceArn(v string) *StartDBInstanceAutomatedBackupsReplicationInput

SetSourceDBInstanceArn sets the SourceDBInstanceArn field's value.

func (*StartDBInstanceAutomatedBackupsReplicationInput) SetSourceRegion

func (s *StartDBInstanceAutomatedBackupsReplicationInput) SetSourceRegion(v string) *StartDBInstanceAutomatedBackupsReplicationInput

SetSourceRegion sets the SourceRegion field's value.

func (StartDBInstanceAutomatedBackupsReplicationInput) String

func (s StartDBInstanceAutomatedBackupsReplicationInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StartDBInstanceAutomatedBackupsReplicationInput) Validate

func (s *StartDBInstanceAutomatedBackupsReplicationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StartDBInstanceAutomatedBackupsReplicationOutput

type StartDBInstanceAutomatedBackupsReplicationOutput struct {

    // An automated backup of a DB instance. It consists of system backups, transaction
    // logs, and the database instance properties that existed at the time you deleted
    // the source instance.
    DBInstanceAutomatedBackup *DBInstanceAutomatedBackup `type:"structure"`
    // contains filtered or unexported fields
}

func (StartDBInstanceAutomatedBackupsReplicationOutput) GoString

func (s StartDBInstanceAutomatedBackupsReplicationOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StartDBInstanceAutomatedBackupsReplicationOutput) SetDBInstanceAutomatedBackup

func (s *StartDBInstanceAutomatedBackupsReplicationOutput) SetDBInstanceAutomatedBackup(v *DBInstanceAutomatedBackup) *StartDBInstanceAutomatedBackupsReplicationOutput

SetDBInstanceAutomatedBackup sets the DBInstanceAutomatedBackup field's value.

func (StartDBInstanceAutomatedBackupsReplicationOutput) String

func (s StartDBInstanceAutomatedBackupsReplicationOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type StartDBInstanceInput

type StartDBInstanceInput struct {

    // The user-supplied instance identifier.
    //
    // DBInstanceIdentifier is a required field
    DBInstanceIdentifier *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (StartDBInstanceInput) GoString

func (s StartDBInstanceInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StartDBInstanceInput) SetDBInstanceIdentifier

func (s *StartDBInstanceInput) SetDBInstanceIdentifier(v string) *StartDBInstanceInput

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (StartDBInstanceInput) String

func (s StartDBInstanceInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StartDBInstanceInput) Validate

func (s *StartDBInstanceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StartDBInstanceOutput

type StartDBInstanceOutput struct {

    // Contains the details of an Amazon RDS DB instance.
    //
    // This data type is used as a response element in the operations CreateDBInstance,
    // CreateDBInstanceReadReplica, DeleteDBInstance, DescribeDBInstances, ModifyDBInstance,
    // PromoteReadReplica, RebootDBInstance, RestoreDBInstanceFromDBSnapshot, RestoreDBInstanceFromS3,
    // RestoreDBInstanceToPointInTime, StartDBInstance, and StopDBInstance.
    DBInstance *DBInstance `type:"structure"`
    // contains filtered or unexported fields
}

func (StartDBInstanceOutput) GoString

func (s StartDBInstanceOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StartDBInstanceOutput) SetDBInstance

func (s *StartDBInstanceOutput) SetDBInstance(v *DBInstance) *StartDBInstanceOutput

SetDBInstance sets the DBInstance field's value.

func (StartDBInstanceOutput) String

func (s StartDBInstanceOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type StartExportTaskInput

type StartExportTaskInput struct {

    // The data to be exported from the snapshot or cluster. If this parameter isn't
    // provided, all of the data is exported.
    //
    // Valid Values:
    //
    //    * database - Export all the data from a specified database.
    //
    //    * database.table table-name - Export a table of the snapshot or cluster.
    //    This format is valid only for RDS for MySQL, RDS for MariaDB, and Aurora
    //    MySQL.
    //
    //    * database.schema schema-name - Export a database schema of the snapshot
    //    or cluster. This format is valid only for RDS for PostgreSQL and Aurora
    //    PostgreSQL.
    //
    //    * database.schema.table table-name - Export a table of the database schema.
    //    This format is valid only for RDS for PostgreSQL and Aurora PostgreSQL.
    ExportOnly []*string `type:"list"`

    // A unique identifier for the export task. This ID isn't an identifier for
    // the Amazon S3 bucket where the data is to be exported.
    //
    // ExportTaskIdentifier is a required field
    ExportTaskIdentifier *string `type:"string" required:"true"`

    // The name of the IAM role to use for writing to the Amazon S3 bucket when
    // exporting a snapshot or cluster.
    //
    // In the IAM policy attached to your IAM role, include the following required
    // actions to allow the transfer of files from Amazon RDS or Amazon Aurora to
    // an S3 bucket:
    //
    //    * s3:PutObject*
    //
    //    * s3:GetObject*
    //
    //    * s3:ListBucket
    //
    //    * s3:DeleteObject*
    //
    //    * s3:GetBucketLocation
    //
    // In the policy, include the resources to identify the S3 bucket and objects
    // in the bucket. The following list of resources shows the Amazon Resource
    // Name (ARN) format for accessing S3:
    //
    //    * arn:aws:s3:::your-s3-bucket
    //
    //    * arn:aws:s3:::your-s3-bucket/*
    //
    // IamRoleArn is a required field
    IamRoleArn *string `type:"string" required:"true"`

    // The ID of the Amazon Web Services KMS key to use to encrypt the data exported
    // to Amazon S3. The Amazon Web Services KMS key identifier is the key ARN,
    // key ID, alias ARN, or alias name for the KMS key. The caller of this operation
    // must be authorized to run the following operations. These can be set in the
    // Amazon Web Services KMS key policy:
    //
    //    * kms:Encrypt
    //
    //    * kms:Decrypt
    //
    //    * kms:GenerateDataKey
    //
    //    * kms:GenerateDataKeyWithoutPlaintext
    //
    //    * kms:ReEncryptFrom
    //
    //    * kms:ReEncryptTo
    //
    //    * kms:CreateGrant
    //
    //    * kms:DescribeKey
    //
    //    * kms:RetireGrant
    //
    // KmsKeyId is a required field
    KmsKeyId *string `type:"string" required:"true"`

    // The name of the Amazon S3 bucket to export the snapshot or cluster data to.
    //
    // S3BucketName is a required field
    S3BucketName *string `type:"string" required:"true"`

    // The Amazon S3 bucket prefix to use as the file name and path of the exported
    // data.
    S3Prefix *string `type:"string"`

    // The Amazon Resource Name (ARN) of the snapshot or cluster to export to Amazon
    // S3.
    //
    // SourceArn is a required field
    SourceArn *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (StartExportTaskInput) GoString

func (s StartExportTaskInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StartExportTaskInput) SetExportOnly

func (s *StartExportTaskInput) SetExportOnly(v []*string) *StartExportTaskInput

SetExportOnly sets the ExportOnly field's value.

func (*StartExportTaskInput) SetExportTaskIdentifier

func (s *StartExportTaskInput) SetExportTaskIdentifier(v string) *StartExportTaskInput

SetExportTaskIdentifier sets the ExportTaskIdentifier field's value.

func (*StartExportTaskInput) SetIamRoleArn

func (s *StartExportTaskInput) SetIamRoleArn(v string) *StartExportTaskInput

SetIamRoleArn sets the IamRoleArn field's value.

func (*StartExportTaskInput) SetKmsKeyId

func (s *StartExportTaskInput) SetKmsKeyId(v string) *StartExportTaskInput

SetKmsKeyId sets the KmsKeyId field's value.

func (*StartExportTaskInput) SetS3BucketName

func (s *StartExportTaskInput) SetS3BucketName(v string) *StartExportTaskInput

SetS3BucketName sets the S3BucketName field's value.

func (*StartExportTaskInput) SetS3Prefix

func (s *StartExportTaskInput) SetS3Prefix(v string) *StartExportTaskInput

SetS3Prefix sets the S3Prefix field's value.

func (*StartExportTaskInput) SetSourceArn

func (s *StartExportTaskInput) SetSourceArn(v string) *StartExportTaskInput

SetSourceArn sets the SourceArn field's value.

func (StartExportTaskInput) String

func (s StartExportTaskInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StartExportTaskInput) Validate

func (s *StartExportTaskInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StartExportTaskOutput

type StartExportTaskOutput struct {

    // The data exported from the snapshot or cluster.
    //
    // Valid Values:
    //
    //    * database - Export all the data from a specified database.
    //
    //    * database.table table-name - Export a table of the snapshot or cluster.
    //    This format is valid only for RDS for MySQL, RDS for MariaDB, and Aurora
    //    MySQL.
    //
    //    * database.schema schema-name - Export a database schema of the snapshot
    //    or cluster. This format is valid only for RDS for PostgreSQL and Aurora
    //    PostgreSQL.
    //
    //    * database.schema.table table-name - Export a table of the database schema.
    //    This format is valid only for RDS for PostgreSQL and Aurora PostgreSQL.
    ExportOnly []*string `type:"list"`

    // A unique identifier for the snapshot or cluster export task. This ID isn't
    // an identifier for the Amazon S3 bucket where the data is exported.
    ExportTaskIdentifier *string `type:"string"`

    // The reason the export failed, if it failed.
    FailureCause *string `type:"string"`

    // The name of the IAM role that is used to write to Amazon S3 when exporting
    // a snapshot or cluster.
    IamRoleArn *string `type:"string"`

    // The key identifier of the Amazon Web Services KMS key that is used to encrypt
    // the data when it's exported to Amazon S3. The KMS key identifier is its key
    // ARN, key ID, alias ARN, or alias name. The IAM role used for the export must
    // have encryption and decryption permissions to use this KMS key.
    KmsKeyId *string `type:"string"`

    // The progress of the snapshot or cluster export task as a percentage.
    PercentProgress *int64 `type:"integer"`

    // The Amazon S3 bucket where the snapshot or cluster is exported to.
    S3Bucket *string `type:"string"`

    // The Amazon S3 bucket prefix that is the file name and path of the exported
    // data.
    S3Prefix *string `type:"string"`

    // The time when the snapshot was created.
    SnapshotTime *time.Time `type:"timestamp"`

    // The Amazon Resource Name (ARN) of the snapshot or cluster exported to Amazon
    // S3.
    SourceArn *string `type:"string"`

    // The type of source for the export.
    SourceType *string `type:"string" enum:"ExportSourceType"`

    // The progress status of the export task. The status can be one of the following:
    //
    //    * CANCELED
    //
    //    * CANCELING
    //
    //    * COMPLETE
    //
    //    * FAILED
    //
    //    * IN_PROGRESS
    //
    //    * STARTING
    Status *string `type:"string"`

    // The time when the snapshot or cluster export task ended.
    TaskEndTime *time.Time `type:"timestamp"`

    // The time when the snapshot or cluster export task started.
    TaskStartTime *time.Time `type:"timestamp"`

    // The total amount of data exported, in gigabytes.
    TotalExtractedDataInGB *int64 `type:"integer"`

    // A warning about the snapshot or cluster export task.
    WarningMessage *string `type:"string"`
    // contains filtered or unexported fields
}

Contains the details of a snapshot or cluster export to Amazon S3.

This data type is used as a response element in the DescribeExportTasks operation.

func (StartExportTaskOutput) GoString

func (s StartExportTaskOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StartExportTaskOutput) SetExportOnly

func (s *StartExportTaskOutput) SetExportOnly(v []*string) *StartExportTaskOutput

SetExportOnly sets the ExportOnly field's value.

func (*StartExportTaskOutput) SetExportTaskIdentifier

func (s *StartExportTaskOutput) SetExportTaskIdentifier(v string) *StartExportTaskOutput

SetExportTaskIdentifier sets the ExportTaskIdentifier field's value.

func (*StartExportTaskOutput) SetFailureCause

func (s *StartExportTaskOutput) SetFailureCause(v string) *StartExportTaskOutput

SetFailureCause sets the FailureCause field's value.

func (*StartExportTaskOutput) SetIamRoleArn

func (s *StartExportTaskOutput) SetIamRoleArn(v string) *StartExportTaskOutput

SetIamRoleArn sets the IamRoleArn field's value.

func (*StartExportTaskOutput) SetKmsKeyId

func (s *StartExportTaskOutput) SetKmsKeyId(v string) *StartExportTaskOutput

SetKmsKeyId sets the KmsKeyId field's value.

func (*StartExportTaskOutput) SetPercentProgress

func (s *StartExportTaskOutput) SetPercentProgress(v int64) *StartExportTaskOutput

SetPercentProgress sets the PercentProgress field's value.

func (*StartExportTaskOutput) SetS3Bucket

func (s *StartExportTaskOutput) SetS3Bucket(v string) *StartExportTaskOutput

SetS3Bucket sets the S3Bucket field's value.

func (*StartExportTaskOutput) SetS3Prefix

func (s *StartExportTaskOutput) SetS3Prefix(v string) *StartExportTaskOutput

SetS3Prefix sets the S3Prefix field's value.

func (*StartExportTaskOutput) SetSnapshotTime

func (s *StartExportTaskOutput) SetSnapshotTime(v time.Time) *StartExportTaskOutput

SetSnapshotTime sets the SnapshotTime field's value.

func (*StartExportTaskOutput) SetSourceArn

func (s *StartExportTaskOutput) SetSourceArn(v string) *StartExportTaskOutput

SetSourceArn sets the SourceArn field's value.

func (*StartExportTaskOutput) SetSourceType

func (s *StartExportTaskOutput) SetSourceType(v string) *StartExportTaskOutput

SetSourceType sets the SourceType field's value.

func (*StartExportTaskOutput) SetStatus

func (s *StartExportTaskOutput) SetStatus(v string) *StartExportTaskOutput

SetStatus sets the Status field's value.

func (*StartExportTaskOutput) SetTaskEndTime

func (s *StartExportTaskOutput) SetTaskEndTime(v time.Time) *StartExportTaskOutput

SetTaskEndTime sets the TaskEndTime field's value.

func (*StartExportTaskOutput) SetTaskStartTime

func (s *StartExportTaskOutput) SetTaskStartTime(v time.Time) *StartExportTaskOutput

SetTaskStartTime sets the TaskStartTime field's value.

func (*StartExportTaskOutput) SetTotalExtractedDataInGB

func (s *StartExportTaskOutput) SetTotalExtractedDataInGB(v int64) *StartExportTaskOutput

SetTotalExtractedDataInGB sets the TotalExtractedDataInGB field's value.

func (*StartExportTaskOutput) SetWarningMessage

func (s *StartExportTaskOutput) SetWarningMessage(v string) *StartExportTaskOutput

SetWarningMessage sets the WarningMessage field's value.

func (StartExportTaskOutput) String

func (s StartExportTaskOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type StopActivityStreamInput

type StopActivityStreamInput struct {

    // Specifies whether or not the database activity stream is to stop as soon
    // as possible, regardless of the maintenance window for the database.
    ApplyImmediately *bool `type:"boolean"`

    // The Amazon Resource Name (ARN) of the DB cluster for the database activity
    // stream. For example, arn:aws:rds:us-east-1:12345667890:cluster:das-cluster.
    //
    // ResourceArn is a required field
    ResourceArn *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (StopActivityStreamInput) GoString

func (s StopActivityStreamInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StopActivityStreamInput) SetApplyImmediately

func (s *StopActivityStreamInput) SetApplyImmediately(v bool) *StopActivityStreamInput

SetApplyImmediately sets the ApplyImmediately field's value.

func (*StopActivityStreamInput) SetResourceArn

func (s *StopActivityStreamInput) SetResourceArn(v string) *StopActivityStreamInput

SetResourceArn sets the ResourceArn field's value.

func (StopActivityStreamInput) String

func (s StopActivityStreamInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StopActivityStreamInput) Validate

func (s *StopActivityStreamInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StopActivityStreamOutput

type StopActivityStreamOutput struct {

    // The name of the Amazon Kinesis data stream used for the database activity
    // stream.
    KinesisStreamName *string `type:"string"`

    // The Amazon Web Services KMS key identifier used for encrypting messages in
    // the database activity stream.
    //
    // The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    // ARN, or alias name for the KMS key.
    KmsKeyId *string `type:"string"`

    // The status of the database activity stream.
    Status *string `type:"string" enum:"ActivityStreamStatus"`
    // contains filtered or unexported fields
}

func (StopActivityStreamOutput) GoString

func (s StopActivityStreamOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StopActivityStreamOutput) SetKinesisStreamName

func (s *StopActivityStreamOutput) SetKinesisStreamName(v string) *StopActivityStreamOutput

SetKinesisStreamName sets the KinesisStreamName field's value.

func (*StopActivityStreamOutput) SetKmsKeyId

func (s *StopActivityStreamOutput) SetKmsKeyId(v string) *StopActivityStreamOutput

SetKmsKeyId sets the KmsKeyId field's value.

func (*StopActivityStreamOutput) SetStatus

func (s *StopActivityStreamOutput) SetStatus(v string) *StopActivityStreamOutput

SetStatus sets the Status field's value.

func (StopActivityStreamOutput) String

func (s StopActivityStreamOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type StopDBClusterInput

type StopDBClusterInput struct {

    // The DB cluster identifier of the Amazon Aurora DB cluster to be stopped.
    // This parameter is stored as a lowercase string.
    //
    // DBClusterIdentifier is a required field
    DBClusterIdentifier *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (StopDBClusterInput) GoString

func (s StopDBClusterInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StopDBClusterInput) SetDBClusterIdentifier

func (s *StopDBClusterInput) SetDBClusterIdentifier(v string) *StopDBClusterInput

SetDBClusterIdentifier sets the DBClusterIdentifier field's value.

func (StopDBClusterInput) String

func (s StopDBClusterInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StopDBClusterInput) Validate

func (s *StopDBClusterInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StopDBClusterOutput

type StopDBClusterOutput struct {

    // Contains the details of an Amazon Aurora DB cluster or Multi-AZ DB cluster.
    //
    // For an Amazon Aurora DB cluster, this data type is used as a response element
    // in the operations CreateDBCluster, DeleteDBCluster, DescribeDBClusters, FailoverDBCluster,
    // ModifyDBCluster, PromoteReadReplicaDBCluster, RestoreDBClusterFromS3, RestoreDBClusterFromSnapshot,
    // RestoreDBClusterToPointInTime, StartDBCluster, and StopDBCluster.
    //
    // For a Multi-AZ DB cluster, this data type is used as a response element in
    // the operations CreateDBCluster, DeleteDBCluster, DescribeDBClusters, FailoverDBCluster,
    // ModifyDBCluster, RebootDBCluster, RestoreDBClusterFromSnapshot, and RestoreDBClusterToPointInTime.
    //
    // For more information on Amazon Aurora DB clusters, see What is Amazon Aurora?
    // (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html)
    // in the Amazon Aurora User Guide.
    //
    // For more information on Multi-AZ DB clusters, see Multi-AZ deployments with
    // two readable standby DB instances (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html)
    // in the Amazon RDS User Guide.
    DBCluster *DBCluster `type:"structure"`
    // contains filtered or unexported fields
}

func (StopDBClusterOutput) GoString

func (s StopDBClusterOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StopDBClusterOutput) SetDBCluster

func (s *StopDBClusterOutput) SetDBCluster(v *DBCluster) *StopDBClusterOutput

SetDBCluster sets the DBCluster field's value.

func (StopDBClusterOutput) String

func (s StopDBClusterOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type StopDBInstanceAutomatedBackupsReplicationInput

type StopDBInstanceAutomatedBackupsReplicationInput struct {

    // The Amazon Resource Name (ARN) of the source DB instance for which to stop
    // replicating automate backups, for example, arn:aws:rds:us-west-2:123456789012:db:mydatabase.
    //
    // SourceDBInstanceArn is a required field
    SourceDBInstanceArn *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (StopDBInstanceAutomatedBackupsReplicationInput) GoString

func (s StopDBInstanceAutomatedBackupsReplicationInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StopDBInstanceAutomatedBackupsReplicationInput) SetSourceDBInstanceArn

func (s *StopDBInstanceAutomatedBackupsReplicationInput) SetSourceDBInstanceArn(v string) *StopDBInstanceAutomatedBackupsReplicationInput

SetSourceDBInstanceArn sets the SourceDBInstanceArn field's value.

func (StopDBInstanceAutomatedBackupsReplicationInput) String

func (s StopDBInstanceAutomatedBackupsReplicationInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StopDBInstanceAutomatedBackupsReplicationInput) Validate

func (s *StopDBInstanceAutomatedBackupsReplicationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StopDBInstanceAutomatedBackupsReplicationOutput

type StopDBInstanceAutomatedBackupsReplicationOutput struct {

    // An automated backup of a DB instance. It consists of system backups, transaction
    // logs, and the database instance properties that existed at the time you deleted
    // the source instance.
    DBInstanceAutomatedBackup *DBInstanceAutomatedBackup `type:"structure"`
    // contains filtered or unexported fields
}

func (StopDBInstanceAutomatedBackupsReplicationOutput) GoString

func (s StopDBInstanceAutomatedBackupsReplicationOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StopDBInstanceAutomatedBackupsReplicationOutput) SetDBInstanceAutomatedBackup

func (s *StopDBInstanceAutomatedBackupsReplicationOutput) SetDBInstanceAutomatedBackup(v *DBInstanceAutomatedBackup) *StopDBInstanceAutomatedBackupsReplicationOutput

SetDBInstanceAutomatedBackup sets the DBInstanceAutomatedBackup field's value.

func (StopDBInstanceAutomatedBackupsReplicationOutput) String

func (s StopDBInstanceAutomatedBackupsReplicationOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type StopDBInstanceInput

type StopDBInstanceInput struct {

    // The user-supplied instance identifier.
    //
    // DBInstanceIdentifier is a required field
    DBInstanceIdentifier *string `type:"string" required:"true"`

    // The user-supplied instance identifier of the DB Snapshot created immediately
    // before the DB instance is stopped.
    DBSnapshotIdentifier *string `type:"string"`
    // contains filtered or unexported fields
}

func (StopDBInstanceInput) GoString

func (s StopDBInstanceInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StopDBInstanceInput) SetDBInstanceIdentifier

func (s *StopDBInstanceInput) SetDBInstanceIdentifier(v string) *StopDBInstanceInput

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*StopDBInstanceInput) SetDBSnapshotIdentifier

func (s *StopDBInstanceInput) SetDBSnapshotIdentifier(v string) *StopDBInstanceInput

SetDBSnapshotIdentifier sets the DBSnapshotIdentifier field's value.

func (StopDBInstanceInput) String

func (s StopDBInstanceInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StopDBInstanceInput) Validate

func (s *StopDBInstanceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StopDBInstanceOutput

type StopDBInstanceOutput struct {

    // Contains the details of an Amazon RDS DB instance.
    //
    // This data type is used as a response element in the operations CreateDBInstance,
    // CreateDBInstanceReadReplica, DeleteDBInstance, DescribeDBInstances, ModifyDBInstance,
    // PromoteReadReplica, RebootDBInstance, RestoreDBInstanceFromDBSnapshot, RestoreDBInstanceFromS3,
    // RestoreDBInstanceToPointInTime, StartDBInstance, and StopDBInstance.
    DBInstance *DBInstance `type:"structure"`
    // contains filtered or unexported fields
}

func (StopDBInstanceOutput) GoString

func (s StopDBInstanceOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StopDBInstanceOutput) SetDBInstance

func (s *StopDBInstanceOutput) SetDBInstance(v *DBInstance) *StopDBInstanceOutput

SetDBInstance sets the DBInstance field's value.

func (StopDBInstanceOutput) String

func (s StopDBInstanceOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type Subnet

type Subnet struct {

    // Contains Availability Zone information.
    //
    // This data type is used as an element in the OrderableDBInstanceOption data
    // type.
    SubnetAvailabilityZone *AvailabilityZone `type:"structure"`

    // The identifier of the subnet.
    SubnetIdentifier *string `type:"string"`

    // If the subnet is associated with an Outpost, this value specifies the Outpost.
    //
    // For more information about RDS on Outposts, see Amazon RDS on Amazon Web
    // Services Outposts (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html)
    // in the Amazon RDS User Guide.
    SubnetOutpost *Outpost `type:"structure"`

    // The status of the subnet.
    SubnetStatus *string `type:"string"`
    // contains filtered or unexported fields
}

This data type is used as a response element for the DescribeDBSubnetGroups operation.

func (Subnet) GoString

func (s Subnet) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Subnet) SetSubnetAvailabilityZone

func (s *Subnet) SetSubnetAvailabilityZone(v *AvailabilityZone) *Subnet

SetSubnetAvailabilityZone sets the SubnetAvailabilityZone field's value.

func (*Subnet) SetSubnetIdentifier

func (s *Subnet) SetSubnetIdentifier(v string) *Subnet

SetSubnetIdentifier sets the SubnetIdentifier field's value.

func (*Subnet) SetSubnetOutpost

func (s *Subnet) SetSubnetOutpost(v *Outpost) *Subnet

SetSubnetOutpost sets the SubnetOutpost field's value.

func (*Subnet) SetSubnetStatus

func (s *Subnet) SetSubnetStatus(v string) *Subnet

SetSubnetStatus sets the SubnetStatus field's value.

func (Subnet) String

func (s Subnet) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type SwitchoverBlueGreenDeploymentInput

type SwitchoverBlueGreenDeploymentInput struct {

    // The unique identifier of the blue/green deployment.
    //
    // Constraints:
    //
    //    * Must match an existing blue/green deployment identifier.
    //
    // BlueGreenDeploymentIdentifier is a required field
    BlueGreenDeploymentIdentifier *string `min:"1" type:"string" required:"true"`

    // The amount of time, in seconds, for the switchover to complete.
    //
    // Default: 300
    //
    // If the switchover takes longer than the specified duration, then any changes
    // are rolled back, and no changes are made to the environments.
    SwitchoverTimeout *int64 `min:"30" type:"integer"`
    // contains filtered or unexported fields
}

func (SwitchoverBlueGreenDeploymentInput) GoString

func (s SwitchoverBlueGreenDeploymentInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*SwitchoverBlueGreenDeploymentInput) SetBlueGreenDeploymentIdentifier

func (s *SwitchoverBlueGreenDeploymentInput) SetBlueGreenDeploymentIdentifier(v string) *SwitchoverBlueGreenDeploymentInput

SetBlueGreenDeploymentIdentifier sets the BlueGreenDeploymentIdentifier field's value.

func (*SwitchoverBlueGreenDeploymentInput) SetSwitchoverTimeout

func (s *SwitchoverBlueGreenDeploymentInput) SetSwitchoverTimeout(v int64) *SwitchoverBlueGreenDeploymentInput

SetSwitchoverTimeout sets the SwitchoverTimeout field's value.

func (SwitchoverBlueGreenDeploymentInput) String

func (s SwitchoverBlueGreenDeploymentInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*SwitchoverBlueGreenDeploymentInput) Validate

func (s *SwitchoverBlueGreenDeploymentInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SwitchoverBlueGreenDeploymentOutput

type SwitchoverBlueGreenDeploymentOutput struct {

    // Details about a blue/green deployment.
    //
    // For more information, see Using Amazon RDS Blue/Green Deployments for database
    // updates (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html)
    // in the Amazon RDS User Guide and Using Amazon RDS Blue/Green Deployments
    // for database updates (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html)
    // in the Amazon Aurora User Guide.
    BlueGreenDeployment *BlueGreenDeployment `type:"structure"`
    // contains filtered or unexported fields
}

func (SwitchoverBlueGreenDeploymentOutput) GoString

func (s SwitchoverBlueGreenDeploymentOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*SwitchoverBlueGreenDeploymentOutput) SetBlueGreenDeployment

func (s *SwitchoverBlueGreenDeploymentOutput) SetBlueGreenDeployment(v *BlueGreenDeployment) *SwitchoverBlueGreenDeploymentOutput

SetBlueGreenDeployment sets the BlueGreenDeployment field's value.

func (SwitchoverBlueGreenDeploymentOutput) String

func (s SwitchoverBlueGreenDeploymentOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type SwitchoverDetail

type SwitchoverDetail struct {

    // The Amazon Resource Name (ARN) of a resource in the blue environment.
    SourceMember *string `min:"1" type:"string"`

    // The switchover status of a resource in a blue/green deployment.
    //
    // Values:
    //
    //    * PROVISIONING - The resource is being prepared to switch over.
    //
    //    * AVAILABLE - The resource is ready to switch over.
    //
    //    * SWITCHOVER_IN_PROGRESS - The resource is being switched over.
    //
    //    * SWITCHOVER_COMPLETED - The resource has been switched over.
    //
    //    * SWITCHOVER_FAILED - The resource attempted to switch over but failed.
    //
    //    * MISSING_SOURCE - The source resource has been deleted.
    //
    //    * MISSING_TARGET - The target resource has been deleted.
    Status *string `type:"string"`

    // The Amazon Resource Name (ARN) of a resource in the green environment.
    TargetMember *string `min:"1" type:"string"`
    // contains filtered or unexported fields
}

Contains the details about a blue/green deployment.

For more information, see Using Amazon RDS Blue/Green Deployments for database updates (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html) in the Amazon RDS User Guide and Using Amazon RDS Blue/Green Deployments for database updates (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html) in the Amazon Aurora User Guide.

func (SwitchoverDetail) GoString

func (s SwitchoverDetail) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*SwitchoverDetail) SetSourceMember

func (s *SwitchoverDetail) SetSourceMember(v string) *SwitchoverDetail

SetSourceMember sets the SourceMember field's value.

func (*SwitchoverDetail) SetStatus

func (s *SwitchoverDetail) SetStatus(v string) *SwitchoverDetail

SetStatus sets the Status field's value.

func (*SwitchoverDetail) SetTargetMember

func (s *SwitchoverDetail) SetTargetMember(v string) *SwitchoverDetail

SetTargetMember sets the TargetMember field's value.

func (SwitchoverDetail) String

func (s SwitchoverDetail) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type SwitchoverGlobalClusterInput

type SwitchoverGlobalClusterInput struct {

    // The identifier of the global database cluster to switch over. This parameter
    // isn't case-sensitive.
    //
    // Constraints:
    //
    //    * Must match the identifier of an existing global database cluster (Aurora
    //    global database).
    //
    // GlobalClusterIdentifier is a required field
    GlobalClusterIdentifier *string `min:"1" type:"string" required:"true"`

    // The identifier of the secondary Aurora DB cluster to promote to the new primary
    // for the global database cluster. Use the Amazon Resource Name (ARN) for the
    // identifier so that Aurora can locate the cluster in its Amazon Web Services
    // Region.
    //
    // TargetDbClusterIdentifier is a required field
    TargetDbClusterIdentifier *string `min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (SwitchoverGlobalClusterInput) GoString

func (s SwitchoverGlobalClusterInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*SwitchoverGlobalClusterInput) SetGlobalClusterIdentifier

func (s *SwitchoverGlobalClusterInput) SetGlobalClusterIdentifier(v string) *SwitchoverGlobalClusterInput

SetGlobalClusterIdentifier sets the GlobalClusterIdentifier field's value.

func (*SwitchoverGlobalClusterInput) SetTargetDbClusterIdentifier

func (s *SwitchoverGlobalClusterInput) SetTargetDbClusterIdentifier(v string) *SwitchoverGlobalClusterInput

SetTargetDbClusterIdentifier sets the TargetDbClusterIdentifier field's value.

func (SwitchoverGlobalClusterInput) String

func (s SwitchoverGlobalClusterInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*SwitchoverGlobalClusterInput) Validate

func (s *SwitchoverGlobalClusterInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SwitchoverGlobalClusterOutput

type SwitchoverGlobalClusterOutput struct {

    // A data type representing an Aurora global database.
    GlobalCluster *GlobalCluster `type:"structure"`
    // contains filtered or unexported fields
}

func (SwitchoverGlobalClusterOutput) GoString

func (s SwitchoverGlobalClusterOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*SwitchoverGlobalClusterOutput) SetGlobalCluster

func (s *SwitchoverGlobalClusterOutput) SetGlobalCluster(v *GlobalCluster) *SwitchoverGlobalClusterOutput

SetGlobalCluster sets the GlobalCluster field's value.

func (SwitchoverGlobalClusterOutput) String

func (s SwitchoverGlobalClusterOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type SwitchoverReadReplicaInput

type SwitchoverReadReplicaInput struct {

    // The DB instance identifier of the current standby database. This value is
    // stored as a lowercase string.
    //
    // Constraints:
    //
    //    * Must match the identifier of an existing Oracle read replica DB instance.
    //
    // DBInstanceIdentifier is a required field
    DBInstanceIdentifier *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (SwitchoverReadReplicaInput) GoString

func (s SwitchoverReadReplicaInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*SwitchoverReadReplicaInput) SetDBInstanceIdentifier

func (s *SwitchoverReadReplicaInput) SetDBInstanceIdentifier(v string) *SwitchoverReadReplicaInput

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (SwitchoverReadReplicaInput) String

func (s SwitchoverReadReplicaInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*SwitchoverReadReplicaInput) Validate

func (s *SwitchoverReadReplicaInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SwitchoverReadReplicaOutput

type SwitchoverReadReplicaOutput struct {

    // Contains the details of an Amazon RDS DB instance.
    //
    // This data type is used as a response element in the operations CreateDBInstance,
    // CreateDBInstanceReadReplica, DeleteDBInstance, DescribeDBInstances, ModifyDBInstance,
    // PromoteReadReplica, RebootDBInstance, RestoreDBInstanceFromDBSnapshot, RestoreDBInstanceFromS3,
    // RestoreDBInstanceToPointInTime, StartDBInstance, and StopDBInstance.
    DBInstance *DBInstance `type:"structure"`
    // contains filtered or unexported fields
}

func (SwitchoverReadReplicaOutput) GoString

func (s SwitchoverReadReplicaOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*SwitchoverReadReplicaOutput) SetDBInstance

func (s *SwitchoverReadReplicaOutput) SetDBInstance(v *DBInstance) *SwitchoverReadReplicaOutput

SetDBInstance sets the DBInstance field's value.

func (SwitchoverReadReplicaOutput) String

func (s SwitchoverReadReplicaOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type Tag

type Tag struct {

    // A key is the required name of the tag. The string value can be from 1 to
    // 128 Unicode characters in length and can't be prefixed with aws: or rds:.
    // The string can only contain only the set of Unicode letters, digits, white-space,
    // '_', '.', ':', '/', '=', '+', '-', '@' (Java regex: "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$").
    Key *string `type:"string"`

    // A value is the optional value of the tag. The string value can be from 1
    // to 256 Unicode characters in length and can't be prefixed with aws: or rds:.
    // The string can only contain only the set of Unicode letters, digits, white-space,
    // '_', '.', ':', '/', '=', '+', '-', '@' (Java regex: "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$").
    Value *string `type:"string"`
    // contains filtered or unexported fields
}

Metadata assigned to an Amazon RDS resource consisting of a key-value pair.

For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html) in the Amazon RDS User Guide.

func (Tag) GoString

func (s Tag) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Tag) SetKey

func (s *Tag) SetKey(v string) *Tag

SetKey sets the Key field's value.

func (*Tag) SetValue

func (s *Tag) SetValue(v string) *Tag

SetValue sets the Value field's value.

func (Tag) String

func (s Tag) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type TargetHealth

type TargetHealth struct {

    // A description of the health of the RDS Proxy target. If the State is AVAILABLE,
    // a description is not included.
    Description *string `type:"string"`

    // The reason for the current health State of the RDS Proxy target.
    Reason *string `type:"string" enum:"TargetHealthReason"`

    // The current state of the connection health lifecycle for the RDS Proxy target.
    // The following is a typical lifecycle example for the states of an RDS Proxy
    // target:
    //
    // registering > unavailable > available > unavailable > available
    State *string `type:"string" enum:"TargetState"`
    // contains filtered or unexported fields
}

Information about the connection health of an RDS Proxy target.

func (TargetHealth) GoString

func (s TargetHealth) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TargetHealth) SetDescription

func (s *TargetHealth) SetDescription(v string) *TargetHealth

SetDescription sets the Description field's value.

func (*TargetHealth) SetReason

func (s *TargetHealth) SetReason(v string) *TargetHealth

SetReason sets the Reason field's value.

func (*TargetHealth) SetState

func (s *TargetHealth) SetState(v string) *TargetHealth

SetState sets the State field's value.

func (TargetHealth) String

func (s TargetHealth) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type TenantDatabase

type TenantDatabase struct {

    // The character set of the tenant database.
    CharacterSetName *string `type:"string"`

    // The ID of the DB instance that contains the tenant database.
    DBInstanceIdentifier *string `type:"string"`

    // The Amazon Web Services Region-unique, immutable identifier for the DB instance.
    DbiResourceId *string `type:"string"`

    // Specifies whether deletion protection is enabled for the DB instance.
    DeletionProtection *bool `type:"boolean"`

    // The master username of the tenant database.
    MasterUsername *string `type:"string"`

    // The NCHAR character set name of the tenant database.
    NcharCharacterSetName *string `type:"string"`

    // Information about pending changes for a tenant database.
    PendingModifiedValues *TenantDatabasePendingModifiedValues `type:"structure"`

    // The status of the tenant database.
    Status *string `type:"string"`

    // A list of tags. For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
    // in the Amazon RDS User Guide.
    TagList []*Tag `locationNameList:"Tag" type:"list"`

    // The database name of the tenant database.
    TenantDBName *string `type:"string"`

    // The Amazon Resource Name (ARN) for the tenant database.
    TenantDatabaseARN *string `type:"string"`

    // The creation time of the tenant database.
    TenantDatabaseCreateTime *time.Time `type:"timestamp"`

    // The Amazon Web Services Region-unique, immutable identifier for the tenant
    // database.
    TenantDatabaseResourceId *string `type:"string"`
    // contains filtered or unexported fields
}

A tenant database in the DB instance. This data type is an element in the response to the DescribeTenantDatabases action.

func (TenantDatabase) GoString

func (s TenantDatabase) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TenantDatabase) SetCharacterSetName

func (s *TenantDatabase) SetCharacterSetName(v string) *TenantDatabase

SetCharacterSetName sets the CharacterSetName field's value.

func (*TenantDatabase) SetDBInstanceIdentifier

func (s *TenantDatabase) SetDBInstanceIdentifier(v string) *TenantDatabase

SetDBInstanceIdentifier sets the DBInstanceIdentifier field's value.

func (*TenantDatabase) SetDbiResourceId

func (s *TenantDatabase) SetDbiResourceId(v string) *TenantDatabase

SetDbiResourceId sets the DbiResourceId field's value.

func (*TenantDatabase) SetDeletionProtection

func (s *TenantDatabase) SetDeletionProtection(v bool) *TenantDatabase

SetDeletionProtection sets the DeletionProtection field's value.

func (*TenantDatabase) SetMasterUsername

func (s *TenantDatabase) SetMasterUsername(v string) *TenantDatabase

SetMasterUsername sets the MasterUsername field's value.

func (*TenantDatabase) SetNcharCharacterSetName

func (s *TenantDatabase) SetNcharCharacterSetName(v string) *TenantDatabase

SetNcharCharacterSetName sets the NcharCharacterSetName field's value.

func (*TenantDatabase) SetPendingModifiedValues

func (s *TenantDatabase) SetPendingModifiedValues(v *TenantDatabasePendingModifiedValues) *TenantDatabase

SetPendingModifiedValues sets the PendingModifiedValues field's value.

func (*TenantDatabase) SetStatus

func (s *TenantDatabase) SetStatus(v string) *TenantDatabase

SetStatus sets the Status field's value.

func (*TenantDatabase) SetTagList

func (s *TenantDatabase) SetTagList(v []*Tag) *TenantDatabase

SetTagList sets the TagList field's value.

func (*TenantDatabase) SetTenantDBName

func (s *TenantDatabase) SetTenantDBName(v string) *TenantDatabase

SetTenantDBName sets the TenantDBName field's value.

func (*TenantDatabase) SetTenantDatabaseARN

func (s *TenantDatabase) SetTenantDatabaseARN(v string) *TenantDatabase

SetTenantDatabaseARN sets the TenantDatabaseARN field's value.

func (*TenantDatabase) SetTenantDatabaseCreateTime

func (s *TenantDatabase) SetTenantDatabaseCreateTime(v time.Time) *TenantDatabase

SetTenantDatabaseCreateTime sets the TenantDatabaseCreateTime field's value.

func (*TenantDatabase) SetTenantDatabaseResourceId

func (s *TenantDatabase) SetTenantDatabaseResourceId(v string) *TenantDatabase

SetTenantDatabaseResourceId sets the TenantDatabaseResourceId field's value.

func (TenantDatabase) String

func (s TenantDatabase) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type TenantDatabasePendingModifiedValues

type TenantDatabasePendingModifiedValues struct {

    // The master password for the tenant database.
    //
    // MasterUserPassword is a sensitive parameter and its value will be
    // replaced with "sensitive" in string returned by TenantDatabasePendingModifiedValues's
    // String and GoString methods.
    MasterUserPassword *string `type:"string" sensitive:"true"`

    // The name of the tenant database.
    TenantDBName *string `type:"string"`
    // contains filtered or unexported fields
}

A response element in the ModifyTenantDatabase operation that describes changes that will be applied. Specific changes are identified by subelements.

func (TenantDatabasePendingModifiedValues) GoString

func (s TenantDatabasePendingModifiedValues) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TenantDatabasePendingModifiedValues) SetMasterUserPassword

func (s *TenantDatabasePendingModifiedValues) SetMasterUserPassword(v string) *TenantDatabasePendingModifiedValues

SetMasterUserPassword sets the MasterUserPassword field's value.

func (*TenantDatabasePendingModifiedValues) SetTenantDBName

func (s *TenantDatabasePendingModifiedValues) SetTenantDBName(v string) *TenantDatabasePendingModifiedValues

SetTenantDBName sets the TenantDBName field's value.

func (TenantDatabasePendingModifiedValues) String

func (s TenantDatabasePendingModifiedValues) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type Timezone

type Timezone struct {

    // The name of the time zone.
    TimezoneName *string `type:"string"`
    // contains filtered or unexported fields
}

A time zone associated with a DBInstance or a DBSnapshot. This data type is an element in the response to the DescribeDBInstances, the DescribeDBSnapshots, and the DescribeDBEngineVersions actions.

func (Timezone) GoString

func (s Timezone) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Timezone) SetTimezoneName

func (s *Timezone) SetTimezoneName(v string) *Timezone

SetTimezoneName sets the TimezoneName field's value.

func (Timezone) String

func (s Timezone) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type UpgradeTarget

type UpgradeTarget struct {

    // Indicates whether the target version is applied to any source DB instances
    // that have AutoMinorVersionUpgrade set to true.
    AutoUpgrade *bool `type:"boolean"`

    // The version of the database engine that a DB instance can be upgraded to.
    Description *string `type:"string"`

    // The name of the upgrade target database engine.
    Engine *string `type:"string"`

    // The version number of the upgrade target database engine.
    EngineVersion *string `type:"string"`

    // Indicates whether upgrading to the target version requires upgrading the
    // major version of the database engine.
    IsMajorVersionUpgrade *bool `type:"boolean"`

    // A list of the supported DB engine modes for the target engine version.
    SupportedEngineModes []*string `type:"list"`

    // Indicates whether you can use Babelfish for Aurora PostgreSQL with the target
    // engine version.
    SupportsBabelfish *bool `type:"boolean"`

    // Indicates whether you can use Aurora global databases with the target engine
    // version.
    SupportsGlobalDatabases *bool `type:"boolean"`

    // Indicates whether the DB engine version supports zero-ETL integrations with
    // Amazon Redshift.
    SupportsIntegrations *bool `type:"boolean"`

    // Indicates whether the target engine version supports forwarding write operations
    // from reader DB instances to the writer DB instance in the DB cluster. By
    // default, write operations aren't allowed on reader DB instances.
    //
    // Valid for: Aurora DB clusters only
    SupportsLocalWriteForwarding *bool `type:"boolean"`

    // Indicates whether you can use Aurora parallel query with the target engine
    // version.
    SupportsParallelQuery *bool `type:"boolean"`
    // contains filtered or unexported fields
}

The version of the database engine that a DB instance can be upgraded to.

func (UpgradeTarget) GoString

func (s UpgradeTarget) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*UpgradeTarget) SetAutoUpgrade

func (s *UpgradeTarget) SetAutoUpgrade(v bool) *UpgradeTarget

SetAutoUpgrade sets the AutoUpgrade field's value.

func (*UpgradeTarget) SetDescription

func (s *UpgradeTarget) SetDescription(v string) *UpgradeTarget

SetDescription sets the Description field's value.

func (*UpgradeTarget) SetEngine

func (s *UpgradeTarget) SetEngine(v string) *UpgradeTarget

SetEngine sets the Engine field's value.

func (*UpgradeTarget) SetEngineVersion

func (s *UpgradeTarget) SetEngineVersion(v string) *UpgradeTarget

SetEngineVersion sets the EngineVersion field's value.

func (*UpgradeTarget) SetIsMajorVersionUpgrade

func (s *UpgradeTarget) SetIsMajorVersionUpgrade(v bool) *UpgradeTarget

SetIsMajorVersionUpgrade sets the IsMajorVersionUpgrade field's value.

func (*UpgradeTarget) SetSupportedEngineModes

func (s *UpgradeTarget) SetSupportedEngineModes(v []*string) *UpgradeTarget

SetSupportedEngineModes sets the SupportedEngineModes field's value.

func (*UpgradeTarget) SetSupportsBabelfish

func (s *UpgradeTarget) SetSupportsBabelfish(v bool) *UpgradeTarget

SetSupportsBabelfish sets the SupportsBabelfish field's value.

func (*UpgradeTarget) SetSupportsGlobalDatabases

func (s *UpgradeTarget) SetSupportsGlobalDatabases(v bool) *UpgradeTarget

SetSupportsGlobalDatabases sets the SupportsGlobalDatabases field's value.

func (*UpgradeTarget) SetSupportsIntegrations

func (s *UpgradeTarget) SetSupportsIntegrations(v bool) *UpgradeTarget

SetSupportsIntegrations sets the SupportsIntegrations field's value.

func (*UpgradeTarget) SetSupportsLocalWriteForwarding

func (s *UpgradeTarget) SetSupportsLocalWriteForwarding(v bool) *UpgradeTarget

SetSupportsLocalWriteForwarding sets the SupportsLocalWriteForwarding field's value.

func (*UpgradeTarget) SetSupportsParallelQuery

func (s *UpgradeTarget) SetSupportsParallelQuery(v bool) *UpgradeTarget

SetSupportsParallelQuery sets the SupportsParallelQuery field's value.

func (UpgradeTarget) String

func (s UpgradeTarget) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type UserAuthConfig

type UserAuthConfig struct {

    // The type of authentication that the proxy uses for connections from the proxy
    // to the underlying database.
    AuthScheme *string `type:"string" enum:"AuthScheme"`

    // The type of authentication the proxy uses for connections from clients.
    ClientPasswordAuthType *string `type:"string" enum:"ClientPasswordAuthType"`

    // A user-specified description about the authentication used by a proxy to
    // log in as a specific database user.
    Description *string `type:"string"`

    // A value that indicates whether to require or disallow Amazon Web Services
    // Identity and Access Management (IAM) authentication for connections to the
    // proxy. The ENABLED value is valid only for proxies with RDS for Microsoft
    // SQL Server.
    IAMAuth *string `type:"string" enum:"IAMAuthMode"`

    // The Amazon Resource Name (ARN) representing the secret that the proxy uses
    // to authenticate to the RDS DB instance or Aurora DB cluster. These secrets
    // are stored within Amazon Secrets Manager.
    SecretArn *string `type:"string"`

    // The name of the database user to which the proxy connects.
    UserName *string `type:"string"`
    // contains filtered or unexported fields
}

Specifies the details of authentication used by a proxy to log in as a specific database user.

func (UserAuthConfig) GoString

func (s UserAuthConfig) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*UserAuthConfig) SetAuthScheme

func (s *UserAuthConfig) SetAuthScheme(v string) *UserAuthConfig

SetAuthScheme sets the AuthScheme field's value.

func (*UserAuthConfig) SetClientPasswordAuthType

func (s *UserAuthConfig) SetClientPasswordAuthType(v string) *UserAuthConfig

SetClientPasswordAuthType sets the ClientPasswordAuthType field's value.

func (*UserAuthConfig) SetDescription

func (s *UserAuthConfig) SetDescription(v string) *UserAuthConfig

SetDescription sets the Description field's value.

func (*UserAuthConfig) SetIAMAuth

func (s *UserAuthConfig) SetIAMAuth(v string) *UserAuthConfig

SetIAMAuth sets the IAMAuth field's value.

func (*UserAuthConfig) SetSecretArn

func (s *UserAuthConfig) SetSecretArn(v string) *UserAuthConfig

SetSecretArn sets the SecretArn field's value.

func (*UserAuthConfig) SetUserName

func (s *UserAuthConfig) SetUserName(v string) *UserAuthConfig

SetUserName sets the UserName field's value.

func (UserAuthConfig) String

func (s UserAuthConfig) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type UserAuthConfigInfo

type UserAuthConfigInfo struct {

    // The type of authentication that the proxy uses for connections from the proxy
    // to the underlying database.
    AuthScheme *string `type:"string" enum:"AuthScheme"`

    // The type of authentication the proxy uses for connections from clients.
    ClientPasswordAuthType *string `type:"string" enum:"ClientPasswordAuthType"`

    // A user-specified description about the authentication used by a proxy to
    // log in as a specific database user.
    Description *string `type:"string"`

    // Whether to require or disallow Amazon Web Services Identity and Access Management
    // (IAM) authentication for connections to the proxy. The ENABLED value is valid
    // only for proxies with RDS for Microsoft SQL Server.
    IAMAuth *string `type:"string" enum:"IAMAuthMode"`

    // The Amazon Resource Name (ARN) representing the secret that the proxy uses
    // to authenticate to the RDS DB instance or Aurora DB cluster. These secrets
    // are stored within Amazon Secrets Manager.
    SecretArn *string `type:"string"`

    // The name of the database user to which the proxy connects.
    UserName *string `type:"string"`
    // contains filtered or unexported fields
}

Returns the details of authentication used by a proxy to log in as a specific database user.

func (UserAuthConfigInfo) GoString

func (s UserAuthConfigInfo) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*UserAuthConfigInfo) SetAuthScheme

func (s *UserAuthConfigInfo) SetAuthScheme(v string) *UserAuthConfigInfo

SetAuthScheme sets the AuthScheme field's value.

func (*UserAuthConfigInfo) SetClientPasswordAuthType

func (s *UserAuthConfigInfo) SetClientPasswordAuthType(v string) *UserAuthConfigInfo

SetClientPasswordAuthType sets the ClientPasswordAuthType field's value.

func (*UserAuthConfigInfo) SetDescription

func (s *UserAuthConfigInfo) SetDescription(v string) *UserAuthConfigInfo

SetDescription sets the Description field's value.

func (*UserAuthConfigInfo) SetIAMAuth

func (s *UserAuthConfigInfo) SetIAMAuth(v string) *UserAuthConfigInfo

SetIAMAuth sets the IAMAuth field's value.

func (*UserAuthConfigInfo) SetSecretArn

func (s *UserAuthConfigInfo) SetSecretArn(v string) *UserAuthConfigInfo

SetSecretArn sets the SecretArn field's value.

func (*UserAuthConfigInfo) SetUserName

func (s *UserAuthConfigInfo) SetUserName(v string) *UserAuthConfigInfo

SetUserName sets the UserName field's value.

func (UserAuthConfigInfo) String

func (s UserAuthConfigInfo) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ValidDBInstanceModificationsMessage

type ValidDBInstanceModificationsMessage struct {

    // Valid storage options for your DB instance.
    Storage []*ValidStorageOptions `locationNameList:"ValidStorageOptions" type:"list"`

    // Indicates whether a DB instance supports using a dedicated log volume (DLV).
    SupportsDedicatedLogVolume *bool `type:"boolean"`

    // Valid processor features for your DB instance.
    ValidProcessorFeatures []*AvailableProcessorFeature `locationNameList:"AvailableProcessorFeature" type:"list"`
    // contains filtered or unexported fields
}

Information about valid modifications that you can make to your DB instance. Contains the result of a successful call to the DescribeValidDBInstanceModifications action. You can use this information when you call ModifyDBInstance.

func (ValidDBInstanceModificationsMessage) GoString

func (s ValidDBInstanceModificationsMessage) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ValidDBInstanceModificationsMessage) SetStorage

func (s *ValidDBInstanceModificationsMessage) SetStorage(v []*ValidStorageOptions) *ValidDBInstanceModificationsMessage

SetStorage sets the Storage field's value.

func (*ValidDBInstanceModificationsMessage) SetSupportsDedicatedLogVolume

func (s *ValidDBInstanceModificationsMessage) SetSupportsDedicatedLogVolume(v bool) *ValidDBInstanceModificationsMessage

SetSupportsDedicatedLogVolume sets the SupportsDedicatedLogVolume field's value.

func (*ValidDBInstanceModificationsMessage) SetValidProcessorFeatures

func (s *ValidDBInstanceModificationsMessage) SetValidProcessorFeatures(v []*AvailableProcessorFeature) *ValidDBInstanceModificationsMessage

SetValidProcessorFeatures sets the ValidProcessorFeatures field's value.

func (ValidDBInstanceModificationsMessage) String

func (s ValidDBInstanceModificationsMessage) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ValidStorageOptions

type ValidStorageOptions struct {

    // The valid range of Provisioned IOPS to gibibytes of storage multiplier. For
    // example, 3-10, which means that provisioned IOPS can be between 3 and 10
    // times storage.
    IopsToStorageRatio []*DoubleRange `locationNameList:"DoubleRange" type:"list"`

    // The valid range of provisioned IOPS. For example, 1000-256,000.
    ProvisionedIops []*Range `locationNameList:"Range" type:"list"`

    // The valid range of provisioned storage throughput. For example, 500-4,000
    // mebibytes per second (MiBps).
    ProvisionedStorageThroughput []*Range `locationNameList:"Range" type:"list"`

    // The valid range of storage in gibibytes (GiB). For example, 100 to 16,384.
    StorageSize []*Range `locationNameList:"Range" type:"list"`

    // The valid range of storage throughput to provisioned IOPS ratios. For example,
    // 0-0.25.
    StorageThroughputToIopsRatio []*DoubleRange `locationNameList:"DoubleRange" type:"list"`

    // The valid storage types for your DB instance. For example: gp2, gp3, io1,
    // io2.
    StorageType *string `type:"string"`

    // Indicates whether or not Amazon RDS can automatically scale storage for DB
    // instances that use the new instance class.
    SupportsStorageAutoscaling *bool `type:"boolean"`
    // contains filtered or unexported fields
}

Information about valid modifications that you can make to your DB instance. Contains the result of a successful call to the DescribeValidDBInstanceModifications action.

func (ValidStorageOptions) GoString

func (s ValidStorageOptions) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ValidStorageOptions) SetIopsToStorageRatio

func (s *ValidStorageOptions) SetIopsToStorageRatio(v []*DoubleRange) *ValidStorageOptions

SetIopsToStorageRatio sets the IopsToStorageRatio field's value.

func (*ValidStorageOptions) SetProvisionedIops

func (s *ValidStorageOptions) SetProvisionedIops(v []*Range) *ValidStorageOptions

SetProvisionedIops sets the ProvisionedIops field's value.

func (*ValidStorageOptions) SetProvisionedStorageThroughput

func (s *ValidStorageOptions) SetProvisionedStorageThroughput(v []*Range) *ValidStorageOptions

SetProvisionedStorageThroughput sets the ProvisionedStorageThroughput field's value.

func (*ValidStorageOptions) SetStorageSize

func (s *ValidStorageOptions) SetStorageSize(v []*Range) *ValidStorageOptions

SetStorageSize sets the StorageSize field's value.

func (*ValidStorageOptions) SetStorageThroughputToIopsRatio

func (s *ValidStorageOptions) SetStorageThroughputToIopsRatio(v []*DoubleRange) *ValidStorageOptions

SetStorageThroughputToIopsRatio sets the StorageThroughputToIopsRatio field's value.

func (*ValidStorageOptions) SetStorageType

func (s *ValidStorageOptions) SetStorageType(v string) *ValidStorageOptions

SetStorageType sets the StorageType field's value.

func (*ValidStorageOptions) SetSupportsStorageAutoscaling

func (s *ValidStorageOptions) SetSupportsStorageAutoscaling(v bool) *ValidStorageOptions

SetSupportsStorageAutoscaling sets the SupportsStorageAutoscaling field's value.

func (ValidStorageOptions) String

func (s ValidStorageOptions) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type VpcSecurityGroupMembership

type VpcSecurityGroupMembership struct {

    // The membership status of the VPC security group.
    //
    // Currently, the only valid status is active.
    Status *string `type:"string"`

    // The name of the VPC security group.
    VpcSecurityGroupId *string `type:"string"`
    // contains filtered or unexported fields
}

This data type is used as a response element for queries on VPC security group membership.

func (VpcSecurityGroupMembership) GoString

func (s VpcSecurityGroupMembership) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*VpcSecurityGroupMembership) SetStatus

func (s *VpcSecurityGroupMembership) SetStatus(v string) *VpcSecurityGroupMembership

SetStatus sets the Status field's value.

func (*VpcSecurityGroupMembership) SetVpcSecurityGroupId

func (s *VpcSecurityGroupMembership) SetVpcSecurityGroupId(v string) *VpcSecurityGroupMembership

SetVpcSecurityGroupId sets the VpcSecurityGroupId field's value.

func (VpcSecurityGroupMembership) String

func (s VpcSecurityGroupMembership) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".