types

package
v1.1.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 10, 2021 License: Apache-2.0 Imports: 3 Imported by: 6

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ApplyMethod

type ApplyMethod string
const (
	ApplyMethodImmediate     ApplyMethod = "immediate"
	ApplyMethodPendingReboot ApplyMethod = "pending-reboot"
)

Enum values for ApplyMethod

func (ApplyMethod) Values added in v0.29.0

func (ApplyMethod) Values() []ApplyMethod

Values returns all known values for ApplyMethod. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type AuthorizationNotFoundFault

type AuthorizationNotFoundFault struct {
	Message *string
}

Specified CIDRIP or EC2 security group is not authorized for the specified DB security group. Neptune may not also be authorized via IAM to perform necessary actions on your behalf.

func (*AuthorizationNotFoundFault) Error

func (*AuthorizationNotFoundFault) ErrorCode

func (e *AuthorizationNotFoundFault) ErrorCode() string

func (*AuthorizationNotFoundFault) ErrorFault

func (*AuthorizationNotFoundFault) ErrorMessage

func (e *AuthorizationNotFoundFault) ErrorMessage() string

type AvailabilityZone

type AvailabilityZone struct {

	// The name of the availability zone.
	Name *string
}

Specifies an Availability Zone.

type CertificateNotFoundFault

type CertificateNotFoundFault struct {
	Message *string
}

CertificateIdentifier does not refer to an existing certificate.

func (*CertificateNotFoundFault) Error

func (e *CertificateNotFoundFault) Error() string

func (*CertificateNotFoundFault) ErrorCode

func (e *CertificateNotFoundFault) ErrorCode() string

func (*CertificateNotFoundFault) ErrorFault

func (e *CertificateNotFoundFault) ErrorFault() smithy.ErrorFault

func (*CertificateNotFoundFault) ErrorMessage

func (e *CertificateNotFoundFault) ErrorMessage() string

type CharacterSet

type CharacterSet struct {

	// The description of the character set.
	CharacterSetDescription *string

	// The name of the character set.
	CharacterSetName *string
}

Specifies a character set.

type CloudwatchLogsExportConfiguration

type CloudwatchLogsExportConfiguration struct {

	// The list of log types to disable.
	DisableLogTypes []string

	// The list of log types to enable.
	EnableLogTypes []string
}

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.

type DBCluster

type DBCluster struct {

	// AllocatedStorage always returns 1, because Neptune DB cluster storage size is
	// not fixed, but instead automatically adjusts as needed.
	AllocatedStorage *int32

	// Provides a list of the AWS 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 AWS services on your behalf.
	AssociatedRoles []DBClusterRole

	// Provides the list of EC2 Availability Zones that instances in the DB cluster can
	// be created in.
	AvailabilityZones []string

	// Specifies the number of days for which automatic DB snapshots are retained.
	BackupRetentionPeriod *int32

	// (Not supported by Neptune)
	CharacterSetName *string

	// Identifies the clone group to which the DB cluster is associated.
	CloneGroupId *string

	// Specifies the time when the DB cluster was created, in Universal Coordinated
	// Time (UTC).
	ClusterCreateTime *time.Time

	// The Amazon Resource Name (ARN) for the DB cluster.
	DBClusterArn *string

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

	// Provides the list of instances that make up the DB cluster.
	DBClusterMembers []DBClusterMember

	// (Not supported by Neptune)
	DBClusterOptionGroupMemberships []DBClusterOptionGroupStatus

	// Specifies the name of the DB cluster parameter group for the DB cluster.
	DBClusterParameterGroup *string

	// Specifies information on the subnet group associated with the DB cluster,
	// including the name, description, and subnets in the subnet group.
	DBSubnetGroup *string

	// Contains the name of the initial database of this DB cluster that was provided
	// at create time, if one was specified when the DB cluster was created. This same
	// name is returned for the life of the DB cluster.
	DatabaseName *string

	// The AWS Region-unique, immutable identifier for the DB cluster. This identifier
	// is found in AWS CloudTrail log entries whenever the AWS KMS key for the DB
	// cluster is accessed.
	DbClusterResourceId *string

	// Indicates whether or not the DB cluster has deletion protection enabled. The
	// database can't be deleted when deletion protection is enabled.
	DeletionProtection *bool

	// Specifies the earliest time to which a database can be restored with
	// point-in-time restore.
	EarliestRestorableTime *time.Time

	// A list of log types that this DB cluster is configured to export to CloudWatch
	// Logs.
	EnabledCloudwatchLogsExports []string

	// Specifies the connection endpoint for the primary instance of the DB cluster.
	Endpoint *string

	// Provides the name of the database engine to be used for this DB cluster.
	Engine *string

	// Indicates the database engine version.
	EngineVersion *string

	// Specifies the ID that Amazon Route 53 assigns when you create a hosted zone.
	HostedZoneId *string

	// True if mapping of AWS Identity and Access Management (IAM) accounts to database
	// accounts is enabled, and otherwise false.
	IAMDatabaseAuthenticationEnabled bool

	// If StorageEncrypted is true, the AWS KMS key identifier for the encrypted DB
	// cluster.
	KmsKeyId *string

	// Specifies the latest time to which a database can be restored with point-in-time
	// restore.
	LatestRestorableTime *time.Time

	// Contains the master username for the DB cluster.
	MasterUsername *string

	// Specifies whether the DB cluster has instances in multiple Availability Zones.
	MultiAZ bool

	// Specifies the progress of the operation as a percentage.
	PercentProgress *string

	// Specifies the port that the database engine is listening on.
	Port *int32

	// Specifies the daily time range during which automated backups are created if
	// automated backups are enabled, as determined by the BackupRetentionPeriod.
	PreferredBackupWindow *string

	// Specifies the weekly time range during which system maintenance can occur, in
	// Universal Coordinated Time (UTC).
	PreferredMaintenanceWindow *string

	// Contains one or more identifiers of the Read Replicas associated with this DB
	// cluster.
	ReadReplicaIdentifiers []string

	// The reader endpoint for the DB cluster. The reader endpoint for a DB cluster
	// load-balances connections across the Read Replicas that are available in a DB
	// cluster. As clients request new connections to the reader endpoint, Neptune
	// distributes the connection requests among the Read Replicas in the DB cluster.
	// This functionality can help balance your read workload across multiple Read
	// Replicas in your DB cluster. If a failover occurs, and the Read 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 Read Replicas in the
	// cluster, you can then reconnect to the reader endpoint.
	ReaderEndpoint *string

	// Not supported by Neptune.
	ReplicationSourceIdentifier *string

	// Specifies the current state of this DB cluster.
	Status *string

	// Specifies whether the DB cluster is encrypted.
	StorageEncrypted bool

	// Provides a list of VPC security groups that the DB cluster belongs to.
	VpcSecurityGroups []VpcSecurityGroupMembership
}

Contains the details of an Amazon Neptune DB cluster. This data type is used as a response element in the DescribeDBClusters action.

type DBClusterAlreadyExistsFault

type DBClusterAlreadyExistsFault struct {
	Message *string
}

User already has a DB cluster with the given identifier.

func (*DBClusterAlreadyExistsFault) Error

func (*DBClusterAlreadyExistsFault) ErrorCode

func (e *DBClusterAlreadyExistsFault) ErrorCode() string

func (*DBClusterAlreadyExistsFault) ErrorFault

func (*DBClusterAlreadyExistsFault) ErrorMessage

func (e *DBClusterAlreadyExistsFault) ErrorMessage() string

type DBClusterEndpoint added in v0.29.0

type DBClusterEndpoint struct {

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

	// The Amazon Resource Name (ARN) for the endpoint.
	DBClusterEndpointArn *string

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

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

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

	// The DNS address of the endpoint.
	Endpoint *string

	// The type of the endpoint. One of: READER, WRITER, CUSTOM.
	EndpointType *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

	// List of DB instance identifiers that are part of the custom endpoint group.
	StaticMembers []string

	// The current status of the endpoint. One of: creating, available, deleting,
	// inactive, modifying. The inactive state applies to an endpoint that cannot 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
}

This data type represents the information you need to connect to an Amazon Neptune 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 Neptune DB instance endpoints, see Endpoint.

type DBClusterEndpointAlreadyExistsFault added in v0.29.0

type DBClusterEndpointAlreadyExistsFault struct {
	Message *string
}

The specified custom endpoint cannot be created because it already exists.

func (*DBClusterEndpointAlreadyExistsFault) Error added in v0.29.0

func (*DBClusterEndpointAlreadyExistsFault) ErrorCode added in v0.29.0

func (*DBClusterEndpointAlreadyExistsFault) ErrorFault added in v0.29.0

func (*DBClusterEndpointAlreadyExistsFault) ErrorMessage added in v0.29.0

func (e *DBClusterEndpointAlreadyExistsFault) ErrorMessage() string

type DBClusterEndpointNotFoundFault added in v0.29.0

type DBClusterEndpointNotFoundFault struct {
	Message *string
}

The specified custom endpoint doesn't exist.

func (*DBClusterEndpointNotFoundFault) Error added in v0.29.0

func (*DBClusterEndpointNotFoundFault) ErrorCode added in v0.29.0

func (e *DBClusterEndpointNotFoundFault) ErrorCode() string

func (*DBClusterEndpointNotFoundFault) ErrorFault added in v0.29.0

func (*DBClusterEndpointNotFoundFault) ErrorMessage added in v0.29.0

func (e *DBClusterEndpointNotFoundFault) ErrorMessage() string

type DBClusterEndpointQuotaExceededFault added in v0.29.0

type DBClusterEndpointQuotaExceededFault struct {
	Message *string
}

The cluster already has the maximum number of custom endpoints.

func (*DBClusterEndpointQuotaExceededFault) Error added in v0.29.0

func (*DBClusterEndpointQuotaExceededFault) ErrorCode added in v0.29.0

func (*DBClusterEndpointQuotaExceededFault) ErrorFault added in v0.29.0

func (*DBClusterEndpointQuotaExceededFault) ErrorMessage added in v0.29.0

func (e *DBClusterEndpointQuotaExceededFault) ErrorMessage() string

type DBClusterMember

type DBClusterMember struct {

	// Specifies the status of the DB cluster parameter group for this member of the DB
	// cluster.
	DBClusterParameterGroupStatus *string

	// Specifies the instance identifier for this member of the DB cluster.
	DBInstanceIdentifier *string

	// Value that is true if the cluster member is the primary instance for the DB
	// cluster and false otherwise.
	IsClusterWriter bool

	// A value that specifies the order in which a Read Replica is promoted to the
	// primary instance after a failure of the existing primary instance.
	PromotionTier *int32
}

Contains information about an instance that is part of a DB cluster.

type DBClusterNotFoundFault

type DBClusterNotFoundFault struct {
	Message *string
}

DBClusterIdentifier does not refer to an existing DB cluster.

func (*DBClusterNotFoundFault) Error

func (e *DBClusterNotFoundFault) Error() string

func (*DBClusterNotFoundFault) ErrorCode

func (e *DBClusterNotFoundFault) ErrorCode() string

func (*DBClusterNotFoundFault) ErrorFault

func (e *DBClusterNotFoundFault) ErrorFault() smithy.ErrorFault

func (*DBClusterNotFoundFault) ErrorMessage

func (e *DBClusterNotFoundFault) ErrorMessage() string

type DBClusterOptionGroupStatus

type DBClusterOptionGroupStatus struct {

	// Specifies the name of the DB cluster option group.
	DBClusterOptionGroupName *string

	// Specifies the status of the DB cluster option group.
	Status *string
}

Contains status information for a DB cluster option group.

type DBClusterParameterGroup

type DBClusterParameterGroup struct {

	// The Amazon Resource Name (ARN) for the DB cluster parameter group.
	DBClusterParameterGroupArn *string

	// Provides the name of the DB cluster parameter group.
	DBClusterParameterGroupName *string

	// Provides the name of the DB parameter group family that this DB cluster
	// parameter group is compatible with.
	DBParameterGroupFamily *string

	// Provides the customer-specified description for this DB cluster parameter group.
	Description *string
}

Contains the details of an Amazon Neptune DB cluster parameter group. This data type is used as a response element in the DescribeDBClusterParameterGroups action.

type DBClusterParameterGroupNotFoundFault

type DBClusterParameterGroupNotFoundFault struct {
	Message *string
}

DBClusterParameterGroupName does not refer to an existing DB Cluster parameter group.

func (*DBClusterParameterGroupNotFoundFault) Error

func (*DBClusterParameterGroupNotFoundFault) ErrorCode

func (*DBClusterParameterGroupNotFoundFault) ErrorFault

func (*DBClusterParameterGroupNotFoundFault) ErrorMessage

func (e *DBClusterParameterGroupNotFoundFault) ErrorMessage() string

type DBClusterQuotaExceededFault

type DBClusterQuotaExceededFault struct {
	Message *string
}

User attempted to create a new DB cluster and the user has already reached the maximum allowed DB cluster quota.

func (*DBClusterQuotaExceededFault) Error

func (*DBClusterQuotaExceededFault) ErrorCode

func (e *DBClusterQuotaExceededFault) ErrorCode() string

func (*DBClusterQuotaExceededFault) ErrorFault

func (*DBClusterQuotaExceededFault) ErrorMessage

func (e *DBClusterQuotaExceededFault) ErrorMessage() string

type DBClusterRole

type DBClusterRole struct {

	// The name of the feature associated with the AWS Identity and Access Management
	// (IAM) role. For the list of supported feature names, see DBEngineVersion.
	FeatureName *string

	// The Amazon Resource Name (ARN) of the IAM role that is associated with the DB
	// cluster.
	RoleArn *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 AWS
	// 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 AWS
	// services on your behalf.
	Status *string
}

Describes an AWS Identity and Access Management (IAM) role that is associated with a DB cluster.

type DBClusterRoleAlreadyExistsFault

type DBClusterRoleAlreadyExistsFault struct {
	Message *string
}

The specified IAM role Amazon Resource Name (ARN) is already associated with the specified DB cluster.

func (*DBClusterRoleAlreadyExistsFault) Error

func (*DBClusterRoleAlreadyExistsFault) ErrorCode

func (e *DBClusterRoleAlreadyExistsFault) ErrorCode() string

func (*DBClusterRoleAlreadyExistsFault) ErrorFault

func (*DBClusterRoleAlreadyExistsFault) ErrorMessage

func (e *DBClusterRoleAlreadyExistsFault) ErrorMessage() string

type DBClusterRoleNotFoundFault

type DBClusterRoleNotFoundFault struct {
	Message *string
}

The specified IAM role Amazon Resource Name (ARN) is not associated with the specified DB cluster.

func (*DBClusterRoleNotFoundFault) Error

func (*DBClusterRoleNotFoundFault) ErrorCode

func (e *DBClusterRoleNotFoundFault) ErrorCode() string

func (*DBClusterRoleNotFoundFault) ErrorFault

func (*DBClusterRoleNotFoundFault) ErrorMessage

func (e *DBClusterRoleNotFoundFault) ErrorMessage() string

type DBClusterRoleQuotaExceededFault

type DBClusterRoleQuotaExceededFault struct {
	Message *string
}

You have exceeded the maximum number of IAM roles that can be associated with the specified DB cluster.

func (*DBClusterRoleQuotaExceededFault) Error

func (*DBClusterRoleQuotaExceededFault) ErrorCode

func (e *DBClusterRoleQuotaExceededFault) ErrorCode() string

func (*DBClusterRoleQuotaExceededFault) ErrorFault

func (*DBClusterRoleQuotaExceededFault) ErrorMessage

func (e *DBClusterRoleQuotaExceededFault) ErrorMessage() string

type DBClusterSnapshot

type DBClusterSnapshot struct {

	// Specifies the allocated storage size in gibibytes (GiB).
	AllocatedStorage int32

	// Provides the list of EC2 Availability Zones that instances in the DB cluster
	// snapshot can be restored in.
	AvailabilityZones []string

	// Specifies the time when the DB cluster was created, in Universal Coordinated
	// Time (UTC).
	ClusterCreateTime *time.Time

	// Specifies the DB cluster identifier of the DB cluster that this DB cluster
	// snapshot was created from.
	DBClusterIdentifier *string

	// The Amazon Resource Name (ARN) for the DB cluster snapshot.
	DBClusterSnapshotArn *string

	// Specifies the identifier for a DB cluster snapshot. Must match the identifier of
	// an existing snapshot. After you restore a DB cluster using a
	// DBClusterSnapshotIdentifier, you must specify the same
	// DBClusterSnapshotIdentifier for any future updates to the DB cluster. When you
	// specify this property for an update, the DB cluster is not restored from the
	// snapshot again, and the data in the database is not changed. However, if you
	// don't specify the DBClusterSnapshotIdentifier, an empty DB cluster is created,
	// and the original DB cluster is deleted. If you specify a property that is
	// different from the previous snapshot restore property, the DB cluster is
	// restored from the snapshot specified by the DBClusterSnapshotIdentifier, and the
	// original DB cluster is deleted.
	DBClusterSnapshotIdentifier *string

	// Specifies the name of the database engine.
	Engine *string

	// Provides the version of the database engine for this DB cluster snapshot.
	EngineVersion *string

	// True if mapping of AWS Identity and Access Management (IAM) accounts to database
	// accounts is enabled, and otherwise false.
	IAMDatabaseAuthenticationEnabled bool

	// If StorageEncrypted is true, the AWS KMS key identifier for the encrypted DB
	// cluster snapshot.
	KmsKeyId *string

	// Provides the license model information for this DB cluster snapshot.
	LicenseModel *string

	// Provides the master username for the DB cluster snapshot.
	MasterUsername *string

	// Specifies the percentage of the estimated data that has been transferred.
	PercentProgress int32

	// Specifies the port that the DB cluster was listening on at the time of the
	// snapshot.
	Port int32

	// Provides the time when the snapshot was taken, in Universal Coordinated Time
	// (UTC).
	SnapshotCreateTime *time.Time

	// Provides the type of the DB cluster snapshot.
	SnapshotType *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

	// Specifies the status of this DB cluster snapshot.
	Status *string

	// Specifies whether the DB cluster snapshot is encrypted.
	StorageEncrypted bool

	// Provides the VPC ID associated with the DB cluster snapshot.
	VpcId *string
}

Contains the details for an Amazon Neptune DB cluster snapshot This data type is used as a response element in the DescribeDBClusterSnapshots action.

type DBClusterSnapshotAlreadyExistsFault

type DBClusterSnapshotAlreadyExistsFault struct {
	Message *string
}

User already has a DB cluster snapshot with the given identifier.

func (*DBClusterSnapshotAlreadyExistsFault) Error

func (*DBClusterSnapshotAlreadyExistsFault) ErrorCode

func (*DBClusterSnapshotAlreadyExistsFault) ErrorFault

func (*DBClusterSnapshotAlreadyExistsFault) ErrorMessage

func (e *DBClusterSnapshotAlreadyExistsFault) ErrorMessage() string

type DBClusterSnapshotAttribute

type DBClusterSnapshotAttribute struct {

	// The name of the manual DB cluster snapshot attribute. The attribute named
	// restore refers to the list of AWS accounts that have permission to copy or
	// restore the manual DB cluster snapshot. For more information, see the
	// ModifyDBClusterSnapshotAttribute API action.
	AttributeName *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 AWS
	// 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 AWS account to copy or restore.
	AttributeValues []string
}

Contains the name and values of a manual DB cluster snapshot attribute. Manual DB cluster snapshot attributes are used to authorize other AWS accounts to restore a manual DB cluster snapshot. For more information, see the ModifyDBClusterSnapshotAttribute API action.

type DBClusterSnapshotAttributesResult

type DBClusterSnapshotAttributesResult struct {

	// The list of attributes and values for the manual DB cluster snapshot.
	DBClusterSnapshotAttributes []DBClusterSnapshotAttribute

	// The identifier of the manual DB cluster snapshot that the attributes apply to.
	DBClusterSnapshotIdentifier *string
}

Contains the results of a successful call to the DescribeDBClusterSnapshotAttributes API action. Manual DB cluster snapshot attributes are used to authorize other AWS accounts to copy or restore a manual DB cluster snapshot. For more information, see the ModifyDBClusterSnapshotAttribute API action.

type DBClusterSnapshotNotFoundFault

type DBClusterSnapshotNotFoundFault struct {
	Message *string
}

DBClusterSnapshotIdentifier does not refer to an existing DB cluster snapshot.

func (*DBClusterSnapshotNotFoundFault) Error

func (*DBClusterSnapshotNotFoundFault) ErrorCode

func (e *DBClusterSnapshotNotFoundFault) ErrorCode() string

func (*DBClusterSnapshotNotFoundFault) ErrorFault

func (*DBClusterSnapshotNotFoundFault) ErrorMessage

func (e *DBClusterSnapshotNotFoundFault) ErrorMessage() string

type DBEngineVersion

type DBEngineVersion struct {

	// The description of the database engine.
	DBEngineDescription *string

	// The description of the database engine version.
	DBEngineVersionDescription *string

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

	// (Not supported by Neptune)
	DefaultCharacterSet *CharacterSet

	// The name of the database engine.
	Engine *string

	// The version number of the database engine.
	EngineVersion *string

	// The types of logs that the database engine has available for export to
	// CloudWatch Logs.
	ExportableLogTypes []string

	// (Not supported by Neptune)
	SupportedCharacterSets []CharacterSet

	// A list of the time zones supported by this engine for the Timezone parameter of
	// the CreateDBInstance action.
	SupportedTimezones []Timezone

	// A value that indicates whether the engine version supports exporting the log
	// types specified by ExportableLogTypes to CloudWatch Logs.
	SupportsLogExportsToCloudwatchLogs bool

	// Indicates whether the database engine version supports read replicas.
	SupportsReadReplica bool

	// A list of engine versions that this database engine version can be upgraded to.
	ValidUpgradeTarget []UpgradeTarget
}

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

type DBInstance

type DBInstance struct {

	// Specifies the allocated storage size specified in gibibytes.
	AllocatedStorage int32

	// Indicates that minor version patches are applied automatically.
	AutoMinorVersionUpgrade bool

	// Specifies the name of the Availability Zone the DB instance is located in.
	AvailabilityZone *string

	// Specifies the number of days for which automatic DB snapshots are retained.
	BackupRetentionPeriod int32

	// The identifier of the CA certificate for this DB instance.
	CACertificateIdentifier *string

	// (Not supported by Neptune)
	CharacterSetName *string

	// Specifies whether tags are copied from the DB instance to snapshots of the DB
	// instance.
	CopyTagsToSnapshot bool

	// If the DB instance is a member of a DB cluster, contains the name of the DB
	// cluster that the DB instance is a member of.
	DBClusterIdentifier *string

	// The Amazon Resource Name (ARN) for the DB instance.
	DBInstanceArn *string

	// Contains the name of the compute and memory capacity class of the DB instance.
	DBInstanceClass *string

	// Contains a user-supplied database identifier. This identifier is the unique key
	// that identifies a DB instance.
	DBInstanceIdentifier *string

	// Specifies the current state of this database.
	DBInstanceStatus *string

	// The database name.
	DBName *string

	// Provides the list of DB parameter groups applied to this DB instance.
	DBParameterGroups []DBParameterGroupStatus

	// Provides List of DB security group elements containing only DBSecurityGroup.Name
	// and DBSecurityGroup.Status subelements.
	DBSecurityGroups []DBSecurityGroupMembership

	// Specifies information on the subnet group associated with the DB instance,
	// including the name, description, and subnets in the subnet group.
	DBSubnetGroup *DBSubnetGroup

	// Specifies 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 int32

	// The AWS Region-unique, immutable identifier for the DB instance. This identifier
	// is found in AWS CloudTrail log entries whenever the AWS KMS key for the DB
	// instance is accessed.
	DbiResourceId *string

	// Indicates whether or not the DB instance has deletion protection enabled. The
	// instance can't be deleted when deletion protection is enabled. See Deleting a DB
	// Instance
	// (https://docs.aws.amazon.com/neptune/latest/userguide/manage-console-instances-delete.html).
	DeletionProtection *bool

	// Not supported
	DomainMemberships []DomainMembership

	// A list of log types that this DB instance is configured to export to CloudWatch
	// Logs.
	EnabledCloudwatchLogsExports []string

	// Specifies the connection endpoint.
	Endpoint *Endpoint

	// Provides the name of the database engine to be used for this DB instance.
	Engine *string

	// Indicates the database engine version.
	EngineVersion *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

	// True if AWS Identity and Access Management (IAM) authentication is enabled, and
	// otherwise false.
	IAMDatabaseAuthenticationEnabled bool

	// Provides the date and time the DB instance was created.
	InstanceCreateTime *time.Time

	// Specifies the Provisioned IOPS (I/O operations per second) value.
	Iops *int32

	// Not supported: The encryption for DB instances is managed by the DB cluster.
	KmsKeyId *string

	// Specifies the latest time to which a database can be restored with point-in-time
	// restore.
	LatestRestorableTime *time.Time

	// License model information for this DB instance.
	LicenseModel *string

	// Contains the master username for the DB instance.
	MasterUsername *string

	// The interval, in seconds, between points when Enhanced Monitoring metrics are
	// collected for the DB instance.
	MonitoringInterval *int32

	// The ARN for the IAM role that permits Neptune to send Enhanced Monitoring
	// metrics to Amazon CloudWatch Logs.
	MonitoringRoleArn *string

	// Specifies if the DB instance is a Multi-AZ deployment.
	MultiAZ bool

	// (Not supported by Neptune)
	OptionGroupMemberships []OptionGroupMembership

	// Specifies that changes to the DB instance are pending. This element is only
	// included when changes are pending. Specific changes are identified by
	// subelements.
	PendingModifiedValues *PendingModifiedValues

	// (Not supported by Neptune)
	PerformanceInsightsEnabled *bool

	// (Not supported by Neptune)
	PerformanceInsightsKMSKeyId *string

	// Specifies the daily time range during which automated backups are created if
	// automated backups are enabled, as determined by the BackupRetentionPeriod.
	PreferredBackupWindow *string

	// Specifies the weekly time range during which system maintenance can occur, in
	// Universal Coordinated Time (UTC).
	PreferredMaintenanceWindow *string

	// A value that specifies the order in which a Read Replica is promoted to the
	// primary instance after a failure of the existing primary instance.
	PromotionTier *int32

	// This flag should no longer be used.
	//
	// Deprecated: This member has been deprecated.
	PubliclyAccessible bool

	// Contains one or more identifiers of DB clusters that are Read Replicas of this
	// DB instance.
	ReadReplicaDBClusterIdentifiers []string

	// Contains one or more identifiers of the Read Replicas associated with this DB
	// instance.
	ReadReplicaDBInstanceIdentifiers []string

	// Contains the identifier of the source DB instance if this DB instance is a Read
	// Replica.
	ReadReplicaSourceDBInstanceIdentifier *string

	// If present, specifies the name of the secondary Availability Zone for a DB
	// instance with multi-AZ support.
	SecondaryAvailabilityZone *string

	// The status of a Read Replica. If the instance is not a Read Replica, this is
	// blank.
	StatusInfos []DBInstanceStatusInfo

	// Not supported: The encryption for DB instances is managed by the DB cluster.
	StorageEncrypted bool

	// Specifies the storage type associated with DB instance.
	StorageType *string

	// The ARN from the key store with which the instance is associated for TDE
	// encryption.
	TdeCredentialArn *string

	// Not supported.
	Timezone *string

	// Provides a list of VPC security group elements that the DB instance belongs to.
	VpcSecurityGroups []VpcSecurityGroupMembership
}

Contains the details of an Amazon Neptune DB instance. This data type is used as a response element in the DescribeDBInstances action.

type DBInstanceAlreadyExistsFault

type DBInstanceAlreadyExistsFault struct {
	Message *string
}

User already has a DB instance with the given identifier.

func (*DBInstanceAlreadyExistsFault) Error

func (*DBInstanceAlreadyExistsFault) ErrorCode

func (e *DBInstanceAlreadyExistsFault) ErrorCode() string

func (*DBInstanceAlreadyExistsFault) ErrorFault

func (*DBInstanceAlreadyExistsFault) ErrorMessage

func (e *DBInstanceAlreadyExistsFault) ErrorMessage() string

type DBInstanceNotFoundFault

type DBInstanceNotFoundFault struct {
	Message *string
}

DBInstanceIdentifier does not refer to an existing DB instance.

func (*DBInstanceNotFoundFault) Error

func (e *DBInstanceNotFoundFault) Error() string

func (*DBInstanceNotFoundFault) ErrorCode

func (e *DBInstanceNotFoundFault) ErrorCode() string

func (*DBInstanceNotFoundFault) ErrorFault

func (e *DBInstanceNotFoundFault) ErrorFault() smithy.ErrorFault

func (*DBInstanceNotFoundFault) ErrorMessage

func (e *DBInstanceNotFoundFault) ErrorMessage() string

type DBInstanceStatusInfo

type DBInstanceStatusInfo struct {

	// Details of the error if there is an error for the instance. If the instance is
	// not in an error state, this value is blank.
	Message *string

	// Boolean value that is true if the instance is operating normally, or false if
	// the instance is in an error state.
	Normal bool

	// Status of the DB instance. For a StatusType of read replica, the values can be
	// replicating, error, stopped, or terminated.
	Status *string

	// This value is currently "read replication."
	StatusType *string
}

Provides a list of status information for a DB instance.

type DBParameterGroup

type DBParameterGroup struct {

	// The Amazon Resource Name (ARN) for the DB parameter group.
	DBParameterGroupArn *string

	// Provides the name of the DB parameter group family that this DB parameter group
	// is compatible with.
	DBParameterGroupFamily *string

	// Provides the name of the DB parameter group.
	DBParameterGroupName *string

	// Provides the customer-specified description for this DB parameter group.
	Description *string
}

Contains the details of an Amazon Neptune DB parameter group. This data type is used as a response element in the DescribeDBParameterGroups action.

type DBParameterGroupAlreadyExistsFault

type DBParameterGroupAlreadyExistsFault struct {
	Message *string
}

A DB parameter group with the same name exists.

func (*DBParameterGroupAlreadyExistsFault) Error

func (*DBParameterGroupAlreadyExistsFault) ErrorCode

func (*DBParameterGroupAlreadyExistsFault) ErrorFault

func (*DBParameterGroupAlreadyExistsFault) ErrorMessage

func (e *DBParameterGroupAlreadyExistsFault) ErrorMessage() string

type DBParameterGroupNotFoundFault

type DBParameterGroupNotFoundFault struct {
	Message *string
}

DBParameterGroupName does not refer to an existing DB parameter group.

func (*DBParameterGroupNotFoundFault) Error

func (*DBParameterGroupNotFoundFault) ErrorCode

func (e *DBParameterGroupNotFoundFault) ErrorCode() string

func (*DBParameterGroupNotFoundFault) ErrorFault

func (*DBParameterGroupNotFoundFault) ErrorMessage

func (e *DBParameterGroupNotFoundFault) ErrorMessage() string

type DBParameterGroupQuotaExceededFault

type DBParameterGroupQuotaExceededFault struct {
	Message *string
}

Request would result in user exceeding the allowed number of DB parameter groups.

func (*DBParameterGroupQuotaExceededFault) Error

func (*DBParameterGroupQuotaExceededFault) ErrorCode

func (*DBParameterGroupQuotaExceededFault) ErrorFault

func (*DBParameterGroupQuotaExceededFault) ErrorMessage

func (e *DBParameterGroupQuotaExceededFault) ErrorMessage() string

type DBParameterGroupStatus

type DBParameterGroupStatus struct {

	// The name of the DP parameter group.
	DBParameterGroupName *string

	// The status of parameter updates.
	ParameterApplyStatus *string
}

The status of the DB parameter group. This data type is used as a response element in the following actions:

* CreateDBInstance

* DeleteDBInstance

* ModifyDBInstance

* RebootDBInstance

type DBSecurityGroupMembership

type DBSecurityGroupMembership struct {

	// The name of the DB security group.
	DBSecurityGroupName *string

	// The status of the DB security group.
	Status *string
}

Specifies membership in a designated DB security group.

type DBSecurityGroupNotFoundFault

type DBSecurityGroupNotFoundFault struct {
	Message *string
}

DBSecurityGroupName does not refer to an existing DB security group.

func (*DBSecurityGroupNotFoundFault) Error

func (*DBSecurityGroupNotFoundFault) ErrorCode

func (e *DBSecurityGroupNotFoundFault) ErrorCode() string

func (*DBSecurityGroupNotFoundFault) ErrorFault

func (*DBSecurityGroupNotFoundFault) ErrorMessage

func (e *DBSecurityGroupNotFoundFault) ErrorMessage() string

type DBSnapshotAlreadyExistsFault

type DBSnapshotAlreadyExistsFault struct {
	Message *string
}

DBSnapshotIdentifier is already used by an existing snapshot.

func (*DBSnapshotAlreadyExistsFault) Error

func (*DBSnapshotAlreadyExistsFault) ErrorCode

func (e *DBSnapshotAlreadyExistsFault) ErrorCode() string

func (*DBSnapshotAlreadyExistsFault) ErrorFault

func (*DBSnapshotAlreadyExistsFault) ErrorMessage

func (e *DBSnapshotAlreadyExistsFault) ErrorMessage() string

type DBSnapshotNotFoundFault

type DBSnapshotNotFoundFault struct {
	Message *string
}

DBSnapshotIdentifier does not refer to an existing DB snapshot.

func (*DBSnapshotNotFoundFault) Error

func (e *DBSnapshotNotFoundFault) Error() string

func (*DBSnapshotNotFoundFault) ErrorCode

func (e *DBSnapshotNotFoundFault) ErrorCode() string

func (*DBSnapshotNotFoundFault) ErrorFault

func (e *DBSnapshotNotFoundFault) ErrorFault() smithy.ErrorFault

func (*DBSnapshotNotFoundFault) ErrorMessage

func (e *DBSnapshotNotFoundFault) ErrorMessage() string

type DBSubnetGroup

type DBSubnetGroup struct {

	// The Amazon Resource Name (ARN) for the DB subnet group.
	DBSubnetGroupArn *string

	// Provides the description of the DB subnet group.
	DBSubnetGroupDescription *string

	// The name of the DB subnet group.
	DBSubnetGroupName *string

	// Provides the status of the DB subnet group.
	SubnetGroupStatus *string

	// Contains a list of Subnet elements.
	Subnets []Subnet

	// Provides the VpcId of the DB subnet group.
	VpcId *string
}

Contains the details of an Amazon Neptune DB subnet group. This data type is used as a response element in the DescribeDBSubnetGroups action.

type DBSubnetGroupAlreadyExistsFault

type DBSubnetGroupAlreadyExistsFault struct {
	Message *string
}

DBSubnetGroupName is already used by an existing DB subnet group.

func (*DBSubnetGroupAlreadyExistsFault) Error

func (*DBSubnetGroupAlreadyExistsFault) ErrorCode

func (e *DBSubnetGroupAlreadyExistsFault) ErrorCode() string

func (*DBSubnetGroupAlreadyExistsFault) ErrorFault

func (*DBSubnetGroupAlreadyExistsFault) ErrorMessage

func (e *DBSubnetGroupAlreadyExistsFault) ErrorMessage() string

type DBSubnetGroupDoesNotCoverEnoughAZs

type DBSubnetGroupDoesNotCoverEnoughAZs struct {
	Message *string
}

Subnets in the DB subnet group should cover at least two Availability Zones unless there is only one Availability Zone.

func (*DBSubnetGroupDoesNotCoverEnoughAZs) Error

func (*DBSubnetGroupDoesNotCoverEnoughAZs) ErrorCode

func (*DBSubnetGroupDoesNotCoverEnoughAZs) ErrorFault

func (*DBSubnetGroupDoesNotCoverEnoughAZs) ErrorMessage

func (e *DBSubnetGroupDoesNotCoverEnoughAZs) ErrorMessage() string

type DBSubnetGroupNotFoundFault

type DBSubnetGroupNotFoundFault struct {
	Message *string
}

DBSubnetGroupName does not refer to an existing DB subnet group.

func (*DBSubnetGroupNotFoundFault) Error

func (*DBSubnetGroupNotFoundFault) ErrorCode

func (e *DBSubnetGroupNotFoundFault) ErrorCode() string

func (*DBSubnetGroupNotFoundFault) ErrorFault

func (*DBSubnetGroupNotFoundFault) ErrorMessage

func (e *DBSubnetGroupNotFoundFault) ErrorMessage() string

type DBSubnetGroupQuotaExceededFault

type DBSubnetGroupQuotaExceededFault struct {
	Message *string
}

Request would result in user exceeding the allowed number of DB subnet groups.

func (*DBSubnetGroupQuotaExceededFault) Error

func (*DBSubnetGroupQuotaExceededFault) ErrorCode

func (e *DBSubnetGroupQuotaExceededFault) ErrorCode() string

func (*DBSubnetGroupQuotaExceededFault) ErrorFault

func (*DBSubnetGroupQuotaExceededFault) ErrorMessage

func (e *DBSubnetGroupQuotaExceededFault) ErrorMessage() string

type DBSubnetQuotaExceededFault

type DBSubnetQuotaExceededFault struct {
	Message *string
}

Request would result in user exceeding the allowed number of subnets in a DB subnet groups.

func (*DBSubnetQuotaExceededFault) Error

func (*DBSubnetQuotaExceededFault) ErrorCode

func (e *DBSubnetQuotaExceededFault) ErrorCode() string

func (*DBSubnetQuotaExceededFault) ErrorFault

func (*DBSubnetQuotaExceededFault) ErrorMessage

func (e *DBSubnetQuotaExceededFault) ErrorMessage() string

type DBUpgradeDependencyFailureFault

type DBUpgradeDependencyFailureFault struct {
	Message *string
}

The DB upgrade failed because a resource the DB depends on could not be modified.

func (*DBUpgradeDependencyFailureFault) Error

func (*DBUpgradeDependencyFailureFault) ErrorCode

func (e *DBUpgradeDependencyFailureFault) ErrorCode() string

func (*DBUpgradeDependencyFailureFault) ErrorFault

func (*DBUpgradeDependencyFailureFault) ErrorMessage

func (e *DBUpgradeDependencyFailureFault) ErrorMessage() string

type DomainMembership

type DomainMembership struct {

	// The identifier of the Active Directory Domain.
	Domain *string

	// The fully qualified domain name of the Active Directory Domain.
	FQDN *string

	// The name of the IAM role to be used when making API calls to the Directory
	// Service.
	IAMRoleName *string

	// The status of the DB instance's Active Directory Domain membership, such as
	// joined, pending-join, failed etc).
	Status *string
}

An Active Directory Domain membership record associated with a DB instance.

type DomainNotFoundFault

type DomainNotFoundFault struct {
	Message *string
}

Domain does not refer to an existing Active Directory Domain.

func (*DomainNotFoundFault) Error

func (e *DomainNotFoundFault) Error() string

func (*DomainNotFoundFault) ErrorCode

func (e *DomainNotFoundFault) ErrorCode() string

func (*DomainNotFoundFault) ErrorFault

func (e *DomainNotFoundFault) ErrorFault() smithy.ErrorFault

func (*DomainNotFoundFault) ErrorMessage

func (e *DomainNotFoundFault) ErrorMessage() string

type DoubleRange

type DoubleRange struct {

	// The minimum value in the range.
	From float64

	// The maximum value in the range.
	To float64
}

A range of double values.

type Endpoint

type Endpoint struct {

	// Specifies the DNS address of the DB instance.
	Address *string

	// Specifies the ID that Amazon Route 53 assigns when you create a hosted zone.
	HostedZoneId *string

	// Specifies the port that the database engine is listening on.
	Port int32
}

Specifies a connection endpoint. For the data structure that represents Amazon Neptune DB cluster endpoints, see DBClusterEndpoint.

type EngineDefaults

type EngineDefaults struct {

	// Specifies the name of the DB parameter group family that the engine default
	// parameters apply to.
	DBParameterGroupFamily *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

	// Contains a list of engine default parameters.
	Parameters []Parameter
}

Contains the result of a successful invocation of the DescribeEngineDefaultParameters action.

type Event

type Event struct {

	// Specifies the date and time of the event.
	Date *time.Time

	// Specifies the category for the event.
	EventCategories []string

	// Provides the text of this event.
	Message *string

	// The Amazon Resource Name (ARN) for the event.
	SourceArn *string

	// Provides the identifier for the source of the event.
	SourceIdentifier *string

	// Specifies the source type for this event.
	SourceType SourceType
}

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

type EventCategoriesMap

type EventCategoriesMap struct {

	// The event categories for the specified source type
	EventCategories []string

	// The source type that the returned categories belong to
	SourceType *string
}

Contains the results of a successful invocation of the DescribeEventCategories action.

type EventSubscription

type EventSubscription struct {

	// The event notification subscription Id.
	CustSubscriptionId *string

	// The AWS customer account associated with the event notification subscription.
	CustomerAwsId *string

	// A Boolean value indicating if the subscription is enabled. True indicates the
	// subscription is enabled.
	Enabled bool

	// A list of event categories for the event notification subscription.
	EventCategoriesList []string

	// The Amazon Resource Name (ARN) for the event subscription.
	EventSubscriptionArn *string

	// The topic ARN of the event notification subscription.
	SnsTopicArn *string

	// A list of source IDs for the event notification subscription.
	SourceIdsList []string

	// The source type for the event notification subscription.
	SourceType *string

	// The status of the 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 Neptune 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

	// The time the event notification subscription was created.
	SubscriptionCreationTime *string
}

Contains the results of a successful invocation of the DescribeEventSubscriptions action.

type EventSubscriptionQuotaExceededFault

type EventSubscriptionQuotaExceededFault struct {
	Message *string
}

You have exceeded the number of events you can subscribe to.

func (*EventSubscriptionQuotaExceededFault) Error

func (*EventSubscriptionQuotaExceededFault) ErrorCode

func (*EventSubscriptionQuotaExceededFault) ErrorFault

func (*EventSubscriptionQuotaExceededFault) ErrorMessage

func (e *EventSubscriptionQuotaExceededFault) ErrorMessage() string

type Filter

type Filter struct {

	// This parameter is not currently supported.
	//
	// This member is required.
	Name *string

	// This parameter is not currently supported.
	//
	// This member is required.
	Values []string
}

This type is not currently supported.

type InstanceQuotaExceededFault

type InstanceQuotaExceededFault struct {
	Message *string
}

Request would result in user exceeding the allowed number of DB instances.

func (*InstanceQuotaExceededFault) Error

func (*InstanceQuotaExceededFault) ErrorCode

func (e *InstanceQuotaExceededFault) ErrorCode() string

func (*InstanceQuotaExceededFault) ErrorFault

func (*InstanceQuotaExceededFault) ErrorMessage

func (e *InstanceQuotaExceededFault) ErrorMessage() string

type InsufficientDBClusterCapacityFault

type InsufficientDBClusterCapacityFault struct {
	Message *string
}

The DB cluster does not have enough capacity for the current operation.

func (*InsufficientDBClusterCapacityFault) Error

func (*InsufficientDBClusterCapacityFault) ErrorCode

func (*InsufficientDBClusterCapacityFault) ErrorFault

func (*InsufficientDBClusterCapacityFault) ErrorMessage

func (e *InsufficientDBClusterCapacityFault) ErrorMessage() string

type InsufficientDBInstanceCapacityFault

type InsufficientDBInstanceCapacityFault struct {
	Message *string
}

Specified DB instance class is not available in the specified Availability Zone.

func (*InsufficientDBInstanceCapacityFault) Error

func (*InsufficientDBInstanceCapacityFault) ErrorCode

func (*InsufficientDBInstanceCapacityFault) ErrorFault

func (*InsufficientDBInstanceCapacityFault) ErrorMessage

func (e *InsufficientDBInstanceCapacityFault) ErrorMessage() string

type InsufficientStorageClusterCapacityFault

type InsufficientStorageClusterCapacityFault struct {
	Message *string
}

There is insufficient storage available for the current action. You may be able to resolve this error by updating your subnet group to use different Availability Zones that have more storage available.

func (*InsufficientStorageClusterCapacityFault) Error

func (*InsufficientStorageClusterCapacityFault) ErrorCode

func (*InsufficientStorageClusterCapacityFault) ErrorFault

func (*InsufficientStorageClusterCapacityFault) ErrorMessage

type InvalidDBClusterEndpointStateFault added in v0.29.0

type InvalidDBClusterEndpointStateFault struct {
	Message *string
}

The requested operation cannot be performed on the endpoint while the endpoint is in this state.

func (*InvalidDBClusterEndpointStateFault) Error added in v0.29.0

func (*InvalidDBClusterEndpointStateFault) ErrorCode added in v0.29.0

func (*InvalidDBClusterEndpointStateFault) ErrorFault added in v0.29.0

func (*InvalidDBClusterEndpointStateFault) ErrorMessage added in v0.29.0

func (e *InvalidDBClusterEndpointStateFault) ErrorMessage() string

type InvalidDBClusterSnapshotStateFault

type InvalidDBClusterSnapshotStateFault struct {
	Message *string
}

The supplied value is not a valid DB cluster snapshot state.

func (*InvalidDBClusterSnapshotStateFault) Error

func (*InvalidDBClusterSnapshotStateFault) ErrorCode

func (*InvalidDBClusterSnapshotStateFault) ErrorFault

func (*InvalidDBClusterSnapshotStateFault) ErrorMessage

func (e *InvalidDBClusterSnapshotStateFault) ErrorMessage() string

type InvalidDBClusterStateFault

type InvalidDBClusterStateFault struct {
	Message *string
}

The DB cluster is not in a valid state.

func (*InvalidDBClusterStateFault) Error

func (*InvalidDBClusterStateFault) ErrorCode

func (e *InvalidDBClusterStateFault) ErrorCode() string

func (*InvalidDBClusterStateFault) ErrorFault

func (*InvalidDBClusterStateFault) ErrorMessage

func (e *InvalidDBClusterStateFault) ErrorMessage() string

type InvalidDBInstanceStateFault

type InvalidDBInstanceStateFault struct {
	Message *string
}

The specified DB instance is not in the available state.

func (*InvalidDBInstanceStateFault) Error

func (*InvalidDBInstanceStateFault) ErrorCode

func (e *InvalidDBInstanceStateFault) ErrorCode() string

func (*InvalidDBInstanceStateFault) ErrorFault

func (*InvalidDBInstanceStateFault) ErrorMessage

func (e *InvalidDBInstanceStateFault) ErrorMessage() string

type InvalidDBParameterGroupStateFault

type InvalidDBParameterGroupStateFault struct {
	Message *string
}

The DB parameter group is in use or is in an invalid state. If you are attempting to delete the parameter group, you cannot delete it when the parameter group is in this state.

func (*InvalidDBParameterGroupStateFault) Error

func (*InvalidDBParameterGroupStateFault) ErrorCode

func (*InvalidDBParameterGroupStateFault) ErrorFault

func (*InvalidDBParameterGroupStateFault) ErrorMessage

func (e *InvalidDBParameterGroupStateFault) ErrorMessage() string

type InvalidDBSecurityGroupStateFault

type InvalidDBSecurityGroupStateFault struct {
	Message *string
}

The state of the DB security group does not allow deletion.

func (*InvalidDBSecurityGroupStateFault) Error

func (*InvalidDBSecurityGroupStateFault) ErrorCode

func (*InvalidDBSecurityGroupStateFault) ErrorFault

func (*InvalidDBSecurityGroupStateFault) ErrorMessage

func (e *InvalidDBSecurityGroupStateFault) ErrorMessage() string

type InvalidDBSnapshotStateFault

type InvalidDBSnapshotStateFault struct {
	Message *string
}

The state of the DB snapshot does not allow deletion.

func (*InvalidDBSnapshotStateFault) Error

func (*InvalidDBSnapshotStateFault) ErrorCode

func (e *InvalidDBSnapshotStateFault) ErrorCode() string

func (*InvalidDBSnapshotStateFault) ErrorFault

func (*InvalidDBSnapshotStateFault) ErrorMessage

func (e *InvalidDBSnapshotStateFault) ErrorMessage() string

type InvalidDBSubnetGroupStateFault

type InvalidDBSubnetGroupStateFault struct {
	Message *string
}

The DB subnet group cannot be deleted because it is in use.

func (*InvalidDBSubnetGroupStateFault) Error

func (*InvalidDBSubnetGroupStateFault) ErrorCode

func (e *InvalidDBSubnetGroupStateFault) ErrorCode() string

func (*InvalidDBSubnetGroupStateFault) ErrorFault

func (*InvalidDBSubnetGroupStateFault) ErrorMessage

func (e *InvalidDBSubnetGroupStateFault) ErrorMessage() string

type InvalidDBSubnetStateFault

type InvalidDBSubnetStateFault struct {
	Message *string
}

The DB subnet is not in the available state.

func (*InvalidDBSubnetStateFault) Error

func (e *InvalidDBSubnetStateFault) Error() string

func (*InvalidDBSubnetStateFault) ErrorCode

func (e *InvalidDBSubnetStateFault) ErrorCode() string

func (*InvalidDBSubnetStateFault) ErrorFault

func (*InvalidDBSubnetStateFault) ErrorMessage

func (e *InvalidDBSubnetStateFault) ErrorMessage() string

type InvalidEventSubscriptionStateFault

type InvalidEventSubscriptionStateFault struct {
	Message *string
}

The event subscription is in an invalid state.

func (*InvalidEventSubscriptionStateFault) Error

func (*InvalidEventSubscriptionStateFault) ErrorCode

func (*InvalidEventSubscriptionStateFault) ErrorFault

func (*InvalidEventSubscriptionStateFault) ErrorMessage

func (e *InvalidEventSubscriptionStateFault) ErrorMessage() string

type InvalidRestoreFault

type InvalidRestoreFault struct {
	Message *string
}

Cannot restore from vpc backup to non-vpc DB instance.

func (*InvalidRestoreFault) Error

func (e *InvalidRestoreFault) Error() string

func (*InvalidRestoreFault) ErrorCode

func (e *InvalidRestoreFault) ErrorCode() string

func (*InvalidRestoreFault) ErrorFault

func (e *InvalidRestoreFault) ErrorFault() smithy.ErrorFault

func (*InvalidRestoreFault) ErrorMessage

func (e *InvalidRestoreFault) ErrorMessage() string

type InvalidSubnet

type InvalidSubnet struct {
	Message *string
}

The requested subnet is invalid, or multiple subnets were requested that are not all in a common VPC.

func (*InvalidSubnet) Error

func (e *InvalidSubnet) Error() string

func (*InvalidSubnet) ErrorCode

func (e *InvalidSubnet) ErrorCode() string

func (*InvalidSubnet) ErrorFault

func (e *InvalidSubnet) ErrorFault() smithy.ErrorFault

func (*InvalidSubnet) ErrorMessage

func (e *InvalidSubnet) ErrorMessage() string

type InvalidVPCNetworkStateFault

type InvalidVPCNetworkStateFault struct {
	Message *string
}

DB subnet group does not cover all Availability Zones after it is created because users' change.

func (*InvalidVPCNetworkStateFault) Error

func (*InvalidVPCNetworkStateFault) ErrorCode

func (e *InvalidVPCNetworkStateFault) ErrorCode() string

func (*InvalidVPCNetworkStateFault) ErrorFault

func (*InvalidVPCNetworkStateFault) ErrorMessage

func (e *InvalidVPCNetworkStateFault) ErrorMessage() string

type KMSKeyNotAccessibleFault

type KMSKeyNotAccessibleFault struct {
	Message *string
}

Error accessing KMS key.

func (*KMSKeyNotAccessibleFault) Error

func (e *KMSKeyNotAccessibleFault) Error() string

func (*KMSKeyNotAccessibleFault) ErrorCode

func (e *KMSKeyNotAccessibleFault) ErrorCode() string

func (*KMSKeyNotAccessibleFault) ErrorFault

func (e *KMSKeyNotAccessibleFault) ErrorFault() smithy.ErrorFault

func (*KMSKeyNotAccessibleFault) ErrorMessage

func (e *KMSKeyNotAccessibleFault) ErrorMessage() string

type OptionGroupMembership

type OptionGroupMembership struct {

	// The name of the option group that the instance belongs to.
	OptionGroupName *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
}

Provides information on the option groups the DB instance is a member of.

type OptionGroupNotFoundFault

type OptionGroupNotFoundFault struct {
	Message *string
}

The designated option group could not be found.

func (*OptionGroupNotFoundFault) Error

func (e *OptionGroupNotFoundFault) Error() string

func (*OptionGroupNotFoundFault) ErrorCode

func (e *OptionGroupNotFoundFault) ErrorCode() string

func (*OptionGroupNotFoundFault) ErrorFault

func (e *OptionGroupNotFoundFault) ErrorFault() smithy.ErrorFault

func (*OptionGroupNotFoundFault) ErrorMessage

func (e *OptionGroupNotFoundFault) ErrorMessage() string

type OrderableDBInstanceOption

type OrderableDBInstanceOption struct {

	// A list of Availability Zones for a DB instance.
	AvailabilityZones []AvailabilityZone

	// The DB instance class for a DB instance.
	DBInstanceClass *string

	// The engine type of a DB instance.
	Engine *string

	// The engine version of a DB instance.
	EngineVersion *string

	// The license model for a DB instance.
	LicenseModel *string

	// Maximum total provisioned IOPS for a DB instance.
	MaxIopsPerDbInstance *int32

	// Maximum provisioned IOPS per GiB for a DB instance.
	MaxIopsPerGib *float64

	// Maximum storage size for a DB instance.
	MaxStorageSize *int32

	// Minimum total provisioned IOPS for a DB instance.
	MinIopsPerDbInstance *int32

	// Minimum provisioned IOPS per GiB for a DB instance.
	MinIopsPerGib *float64

	// Minimum storage size for a DB instance.
	MinStorageSize *int32

	// Indicates whether a DB instance is Multi-AZ capable.
	MultiAZCapable bool

	// Indicates whether a DB instance can have a Read Replica.
	ReadReplicaCapable bool

	// Indicates the storage type for a DB instance.
	StorageType *string

	// Indicates whether a DB instance supports Enhanced Monitoring at intervals from 1
	// to 60 seconds.
	SupportsEnhancedMonitoring bool

	// Indicates whether a DB instance supports IAM database authentication.
	SupportsIAMDatabaseAuthentication bool

	// Indicates whether a DB instance supports provisioned IOPS.
	SupportsIops bool

	// (Not supported by Neptune)
	SupportsPerformanceInsights bool

	// Indicates whether a DB instance supports encrypted storage.
	SupportsStorageEncryption bool

	// Indicates whether a DB instance is in a VPC.
	Vpc bool
}

Contains a list of available options for a DB instance. This data type is used as a response element in the DescribeOrderableDBInstanceOptions action.

type Parameter

type Parameter struct {

	// Specifies the valid range of values for the parameter.
	AllowedValues *string

	// Indicates when to apply parameter updates.
	ApplyMethod ApplyMethod

	// Specifies the engine specific parameters type.
	ApplyType *string

	// Specifies the valid data type for the parameter.
	DataType *string

	// Provides a description of the parameter.
	Description *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

	// The earliest engine version to which the parameter can apply.
	MinimumEngineVersion *string

	// Specifies the name of the parameter.
	ParameterName *string

	// Specifies the value of the parameter.
	ParameterValue *string

	// Indicates the source of the parameter value.
	Source *string
}

Specifies a parameter.

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

	// 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
}

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.

type PendingMaintenanceAction

type PendingMaintenanceAction struct {

	// The type of pending maintenance action that is available for the resource.
	Action *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. If this date is specified, any next-maintenance opt-in requests are
	// ignored.
	AutoAppliedAfterDate *time.Time

	// 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

	// A description providing more detail about the maintenance action.
	Description *string

	// The date when the maintenance action is automatically applied. The maintenance
	// action is applied to the resource on this date regardless of the maintenance
	// window for the resource. If this date is specified, any immediate opt-in
	// requests are ignored.
	ForcedApplyDate *time.Time

	// Indicates the type of opt-in request that has been received for the resource.
	OptInStatus *string
}

Provides information about a pending maintenance action for a resource.

type PendingModifiedValues

type PendingModifiedValues struct {

	// Contains the new AllocatedStorage size for the DB instance that will be applied
	// or is currently being applied.
	AllocatedStorage *int32

	// Specifies the pending number of days for which automated backups are retained.
	BackupRetentionPeriod *int32

	// Specifies the identifier of the CA certificate for the DB instance.
	CACertificateIdentifier *string

	// Contains the new DBInstanceClass for the DB instance that will be applied or is
	// currently being applied.
	DBInstanceClass *string

	// Contains the new DBInstanceIdentifier for the DB instance that will be applied
	// or is currently being applied.
	DBInstanceIdentifier *string

	// The new DB subnet group for the DB instance.
	DBSubnetGroupName *string

	// Indicates the database engine version.
	EngineVersion *string

	// Specifies the new Provisioned IOPS value for the DB instance that will be
	// applied or is currently being applied.
	Iops *int32

	// The license model for the DB instance. Valid values: license-included |
	// bring-your-own-license | general-public-license
	LicenseModel *string

	// Contains the pending or currently-in-progress change of the master credentials
	// for the DB instance.
	MasterUserPassword *string

	// Indicates that the Single-AZ DB instance is to change to a Multi-AZ deployment.
	MultiAZ *bool

	// This PendingCloudwatchLogsExports structure specifies pending changes to which
	// CloudWatch logs are enabled and which are disabled.
	PendingCloudwatchLogsExports *PendingCloudwatchLogsExports

	// Specifies the pending port for the DB instance.
	Port *int32

	// Specifies the storage type to be associated with the DB instance.
	StorageType *string
}

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

type ProvisionedIopsNotAvailableInAZFault

type ProvisionedIopsNotAvailableInAZFault struct {
	Message *string
}

Provisioned IOPS not available in the specified Availability Zone.

func (*ProvisionedIopsNotAvailableInAZFault) Error

func (*ProvisionedIopsNotAvailableInAZFault) ErrorCode

func (*ProvisionedIopsNotAvailableInAZFault) ErrorFault

func (*ProvisionedIopsNotAvailableInAZFault) ErrorMessage

func (e *ProvisionedIopsNotAvailableInAZFault) ErrorMessage() string

type Range

type Range struct {

	// The minimum value in the range.
	From int32

	// 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 *int32

	// The maximum value in the range.
	To int32
}

A range of integer values.

type ResourceNotFoundFault

type ResourceNotFoundFault struct {
	Message *string
}

The specified resource ID was not found.

func (*ResourceNotFoundFault) Error

func (e *ResourceNotFoundFault) Error() string

func (*ResourceNotFoundFault) ErrorCode

func (e *ResourceNotFoundFault) ErrorCode() string

func (*ResourceNotFoundFault) ErrorFault

func (e *ResourceNotFoundFault) ErrorFault() smithy.ErrorFault

func (*ResourceNotFoundFault) ErrorMessage

func (e *ResourceNotFoundFault) ErrorMessage() string

type ResourcePendingMaintenanceActions

type ResourcePendingMaintenanceActions struct {

	// A list that provides details about the pending maintenance actions for the
	// resource.
	PendingMaintenanceActionDetails []PendingMaintenanceAction

	// The ARN of the resource that has pending maintenance actions.
	ResourceIdentifier *string
}

Describes the pending maintenance actions for a resource.

type SNSInvalidTopicFault

type SNSInvalidTopicFault struct {
	Message *string
}

The SNS topic is invalid.

func (*SNSInvalidTopicFault) Error

func (e *SNSInvalidTopicFault) Error() string

func (*SNSInvalidTopicFault) ErrorCode

func (e *SNSInvalidTopicFault) ErrorCode() string

func (*SNSInvalidTopicFault) ErrorFault

func (e *SNSInvalidTopicFault) ErrorFault() smithy.ErrorFault

func (*SNSInvalidTopicFault) ErrorMessage

func (e *SNSInvalidTopicFault) ErrorMessage() string

type SNSNoAuthorizationFault

type SNSNoAuthorizationFault struct {
	Message *string
}

There is no SNS authorization.

func (*SNSNoAuthorizationFault) Error

func (e *SNSNoAuthorizationFault) Error() string

func (*SNSNoAuthorizationFault) ErrorCode

func (e *SNSNoAuthorizationFault) ErrorCode() string

func (*SNSNoAuthorizationFault) ErrorFault

func (e *SNSNoAuthorizationFault) ErrorFault() smithy.ErrorFault

func (*SNSNoAuthorizationFault) ErrorMessage

func (e *SNSNoAuthorizationFault) ErrorMessage() string

type SNSTopicArnNotFoundFault

type SNSTopicArnNotFoundFault struct {
	Message *string
}

The ARN of the SNS topic could not be found.

func (*SNSTopicArnNotFoundFault) Error

func (e *SNSTopicArnNotFoundFault) Error() string

func (*SNSTopicArnNotFoundFault) ErrorCode

func (e *SNSTopicArnNotFoundFault) ErrorCode() string

func (*SNSTopicArnNotFoundFault) ErrorFault

func (e *SNSTopicArnNotFoundFault) ErrorFault() smithy.ErrorFault

func (*SNSTopicArnNotFoundFault) ErrorMessage

func (e *SNSTopicArnNotFoundFault) ErrorMessage() string

type SharedSnapshotQuotaExceededFault

type SharedSnapshotQuotaExceededFault struct {
	Message *string
}

You have exceeded the maximum number of accounts that you can share a manual DB snapshot with.

func (*SharedSnapshotQuotaExceededFault) Error

func (*SharedSnapshotQuotaExceededFault) ErrorCode

func (*SharedSnapshotQuotaExceededFault) ErrorFault

func (*SharedSnapshotQuotaExceededFault) ErrorMessage

func (e *SharedSnapshotQuotaExceededFault) ErrorMessage() string

type SnapshotQuotaExceededFault

type SnapshotQuotaExceededFault struct {
	Message *string
}

Request would result in user exceeding the allowed number of DB snapshots.

func (*SnapshotQuotaExceededFault) Error

func (*SnapshotQuotaExceededFault) ErrorCode

func (e *SnapshotQuotaExceededFault) ErrorCode() string

func (*SnapshotQuotaExceededFault) ErrorFault

func (*SnapshotQuotaExceededFault) ErrorMessage

func (e *SnapshotQuotaExceededFault) ErrorMessage() string

type SourceNotFoundFault

type SourceNotFoundFault struct {
	Message *string
}

The source could not be found.

func (*SourceNotFoundFault) Error

func (e *SourceNotFoundFault) Error() string

func (*SourceNotFoundFault) ErrorCode

func (e *SourceNotFoundFault) ErrorCode() string

func (*SourceNotFoundFault) ErrorFault

func (e *SourceNotFoundFault) ErrorFault() smithy.ErrorFault

func (*SourceNotFoundFault) ErrorMessage

func (e *SourceNotFoundFault) ErrorMessage() string

type SourceType

type SourceType string
const (
	SourceTypeDbInstance        SourceType = "db-instance"
	SourceTypeDbParameterGroup  SourceType = "db-parameter-group"
	SourceTypeDbSecurityGroup   SourceType = "db-security-group"
	SourceTypeDbSnapshot        SourceType = "db-snapshot"
	SourceTypeDbCluster         SourceType = "db-cluster"
	SourceTypeDbClusterSnapshot SourceType = "db-cluster-snapshot"
)

Enum values for SourceType

func (SourceType) Values added in v0.29.0

func (SourceType) Values() []SourceType

Values returns all known values for SourceType. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type StorageQuotaExceededFault

type StorageQuotaExceededFault struct {
	Message *string
}

Request would result in user exceeding the allowed amount of storage available across all DB instances.

func (*StorageQuotaExceededFault) Error

func (e *StorageQuotaExceededFault) Error() string

func (*StorageQuotaExceededFault) ErrorCode

func (e *StorageQuotaExceededFault) ErrorCode() string

func (*StorageQuotaExceededFault) ErrorFault

func (*StorageQuotaExceededFault) ErrorMessage

func (e *StorageQuotaExceededFault) ErrorMessage() string

type StorageTypeNotSupportedFault

type StorageTypeNotSupportedFault struct {
	Message *string
}

StorageType specified cannot be associated with the DB Instance.

func (*StorageTypeNotSupportedFault) Error

func (*StorageTypeNotSupportedFault) ErrorCode

func (e *StorageTypeNotSupportedFault) ErrorCode() string

func (*StorageTypeNotSupportedFault) ErrorFault

func (*StorageTypeNotSupportedFault) ErrorMessage

func (e *StorageTypeNotSupportedFault) ErrorMessage() string

type Subnet

type Subnet struct {

	// Specifies the EC2 Availability Zone that the subnet is in.
	SubnetAvailabilityZone *AvailabilityZone

	// Specifies the identifier of the subnet.
	SubnetIdentifier *string

	// Specifies the status of the subnet.
	SubnetStatus *string
}

Specifies a subnet. This data type is used as a response element in the DescribeDBSubnetGroups action.

type SubnetAlreadyInUse

type SubnetAlreadyInUse struct {
	Message *string
}

The DB subnet is already in use in the Availability Zone.

func (*SubnetAlreadyInUse) Error

func (e *SubnetAlreadyInUse) Error() string

func (*SubnetAlreadyInUse) ErrorCode

func (e *SubnetAlreadyInUse) ErrorCode() string

func (*SubnetAlreadyInUse) ErrorFault

func (e *SubnetAlreadyInUse) ErrorFault() smithy.ErrorFault

func (*SubnetAlreadyInUse) ErrorMessage

func (e *SubnetAlreadyInUse) ErrorMessage() string

type SubscriptionAlreadyExistFault

type SubscriptionAlreadyExistFault struct {
	Message *string
}

This subscription already exists.

func (*SubscriptionAlreadyExistFault) Error

func (*SubscriptionAlreadyExistFault) ErrorCode

func (e *SubscriptionAlreadyExistFault) ErrorCode() string

func (*SubscriptionAlreadyExistFault) ErrorFault

func (*SubscriptionAlreadyExistFault) ErrorMessage

func (e *SubscriptionAlreadyExistFault) ErrorMessage() string

type SubscriptionCategoryNotFoundFault

type SubscriptionCategoryNotFoundFault struct {
	Message *string
}

The designated subscription category could not be found.

func (*SubscriptionCategoryNotFoundFault) Error

func (*SubscriptionCategoryNotFoundFault) ErrorCode

func (*SubscriptionCategoryNotFoundFault) ErrorFault

func (*SubscriptionCategoryNotFoundFault) ErrorMessage

func (e *SubscriptionCategoryNotFoundFault) ErrorMessage() string

type SubscriptionNotFoundFault

type SubscriptionNotFoundFault struct {
	Message *string
}

The designated subscription could not be found.

func (*SubscriptionNotFoundFault) Error

func (e *SubscriptionNotFoundFault) Error() string

func (*SubscriptionNotFoundFault) ErrorCode

func (e *SubscriptionNotFoundFault) ErrorCode() string

func (*SubscriptionNotFoundFault) ErrorFault

func (*SubscriptionNotFoundFault) ErrorMessage

func (e *SubscriptionNotFoundFault) ErrorMessage() string

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

	// 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
}

Metadata assigned to an Amazon Neptune resource consisting of a key-value pair.

type Timezone

type Timezone struct {

	// The name of the time zone.
	TimezoneName *string
}

A time zone associated with a DBInstance.

type UpgradeTarget

type UpgradeTarget struct {

	// A value that indicates whether the target version is applied to any source DB
	// instances that have AutoMinorVersionUpgrade set to true.
	AutoUpgrade bool

	// The version of the database engine that a DB instance can be upgraded to.
	Description *string

	// The name of the upgrade target database engine.
	Engine *string

	// The version number of the upgrade target database engine.
	EngineVersion *string

	// A value that indicates whether a database engine is upgraded to a major version.
	IsMajorVersionUpgrade bool
}

The version of the database engine that a DB instance can be upgraded to.

type ValidDBInstanceModificationsMessage

type ValidDBInstanceModificationsMessage struct {

	// Valid storage options for your DB instance.
	Storage []ValidStorageOptions
}

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.

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

	// The valid range of provisioned IOPS. For example, 1000-20000.
	ProvisionedIops []Range

	// The valid range of storage in gibibytes. For example, 100 to 16384.
	StorageSize []Range

	// The valid storage types for your DB instance. For example, gp2, io1.
	StorageType *string
}

Information about valid modifications that you can make to your DB instance. Contains the result of a successful call to the DescribeValidDBInstanceModifications action.

type VpcSecurityGroupMembership

type VpcSecurityGroupMembership struct {

	// The status of the VPC security group.
	Status *string

	// The name of the VPC security group.
	VpcSecurityGroupId *string
}

This data type is used as a response element for queries on VPC security group membership.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL