本文整理匯總了Golang中github.com/aws/aws-sdk-go/service/databasemigrationservice.New函數的典型用法代碼示例。如果您正苦於以下問題:Golang New函數的具體用法?Golang New怎麽用?Golang New使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了New函數的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: ExampleDatabaseMigrationService_AddTagsToResource
func ExampleDatabaseMigrationService_AddTagsToResource() {
svc := databasemigrationservice.New(session.New())
params := &databasemigrationservice.AddTagsToResourceInput{
ResourceArn: aws.String("String"), // Required
Tags: []*databasemigrationservice.Tag{ // Required
{ // Required
Key: aws.String("String"),
Value: aws.String("String"),
},
// More values...
},
}
resp, err := svc.AddTagsToResource(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例2: ExampleDatabaseMigrationService_CreateReplicationTask
func ExampleDatabaseMigrationService_CreateReplicationTask() {
svc := databasemigrationservice.New(session.New())
params := &databasemigrationservice.CreateReplicationTaskInput{
MigrationType: aws.String("MigrationTypeValue"), // Required
ReplicationInstanceArn: aws.String("String"), // Required
ReplicationTaskIdentifier: aws.String("String"), // Required
SourceEndpointArn: aws.String("String"), // Required
TableMappings: aws.String("String"), // Required
TargetEndpointArn: aws.String("String"), // Required
CdcStartTime: aws.Time(time.Now()),
ReplicationTaskSettings: aws.String("String"),
Tags: []*databasemigrationservice.Tag{
{ // Required
Key: aws.String("String"),
Value: aws.String("String"),
},
// More values...
},
}
resp, err := svc.CreateReplicationTask(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例3: ExampleDatabaseMigrationService_TestConnection
func ExampleDatabaseMigrationService_TestConnection() {
sess, err := session.NewSession()
if err != nil {
fmt.Println("failed to create session,", err)
return
}
svc := databasemigrationservice.New(sess)
params := &databasemigrationservice.TestConnectionInput{
EndpointArn: aws.String("String"), // Required
ReplicationInstanceArn: aws.String("String"), // Required
}
resp, err := svc.TestConnection(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例4: ExampleDatabaseMigrationService_CreateReplicationInstance
func ExampleDatabaseMigrationService_CreateReplicationInstance() {
svc := databasemigrationservice.New(session.New())
params := &databasemigrationservice.CreateReplicationInstanceInput{
ReplicationInstanceClass: aws.String("String"), // Required
ReplicationInstanceIdentifier: aws.String("String"), // Required
AllocatedStorage: aws.Int64(1),
AutoMinorVersionUpgrade: aws.Bool(true),
AvailabilityZone: aws.String("String"),
EngineVersion: aws.String("String"),
KmsKeyId: aws.String("String"),
PreferredMaintenanceWindow: aws.String("String"),
PubliclyAccessible: aws.Bool(true),
ReplicationSubnetGroupIdentifier: aws.String("String"),
Tags: []*databasemigrationservice.Tag{
{ // Required
Key: aws.String("String"),
Value: aws.String("String"),
},
// More values...
},
}
resp, err := svc.CreateReplicationInstance(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例5: ExampleDatabaseMigrationService_RemoveTagsFromResource
func ExampleDatabaseMigrationService_RemoveTagsFromResource() {
sess, err := session.NewSession()
if err != nil {
fmt.Println("failed to create session,", err)
return
}
svc := databasemigrationservice.New(sess)
params := &databasemigrationservice.RemoveTagsFromResourceInput{
ResourceArn: aws.String("String"), // Required
TagKeys: []*string{ // Required
aws.String("String"), // Required
// More values...
},
}
resp, err := svc.RemoveTagsFromResource(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例6: ExampleDatabaseMigrationService_StartReplicationTask
func ExampleDatabaseMigrationService_StartReplicationTask() {
sess, err := session.NewSession()
if err != nil {
fmt.Println("failed to create session,", err)
return
}
svc := databasemigrationservice.New(sess)
params := &databasemigrationservice.StartReplicationTaskInput{
ReplicationTaskArn: aws.String("String"), // Required
StartReplicationTaskType: aws.String("StartReplicationTaskTypeValue"), // Required
CdcStartTime: aws.Time(time.Now()),
}
resp, err := svc.StartReplicationTask(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例7: ExampleDatabaseMigrationService_ModifyEndpoint
func ExampleDatabaseMigrationService_ModifyEndpoint() {
sess, err := session.NewSession()
if err != nil {
fmt.Println("failed to create session,", err)
return
}
svc := databasemigrationservice.New(sess)
params := &databasemigrationservice.ModifyEndpointInput{
EndpointArn: aws.String("String"), // Required
CertificateArn: aws.String("String"),
DatabaseName: aws.String("String"),
EndpointIdentifier: aws.String("String"),
EndpointType: aws.String("ReplicationEndpointTypeValue"),
EngineName: aws.String("String"),
ExtraConnectionAttributes: aws.String("String"),
Password: aws.String("SecretString"),
Port: aws.Int64(1),
ServerName: aws.String("String"),
SslMode: aws.String("DmsSslModeValue"),
Username: aws.String("String"),
}
resp, err := svc.ModifyEndpoint(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例8: ExampleDatabaseMigrationService_ModifyReplicationSubnetGroup
func ExampleDatabaseMigrationService_ModifyReplicationSubnetGroup() {
sess, err := session.NewSession()
if err != nil {
fmt.Println("failed to create session,", err)
return
}
svc := databasemigrationservice.New(sess)
params := &databasemigrationservice.ModifyReplicationSubnetGroupInput{
ReplicationSubnetGroupIdentifier: aws.String("String"), // Required
SubnetIds: []*string{ // Required
aws.String("String"), // Required
// More values...
},
ReplicationSubnetGroupDescription: aws.String("String"),
}
resp, err := svc.ModifyReplicationSubnetGroup(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例9: ExampleDatabaseMigrationService_DescribeTableStatistics
func ExampleDatabaseMigrationService_DescribeTableStatistics() {
sess, err := session.NewSession()
if err != nil {
fmt.Println("failed to create session,", err)
return
}
svc := databasemigrationservice.New(sess)
params := &databasemigrationservice.DescribeTableStatisticsInput{
ReplicationTaskArn: aws.String("String"), // Required
Marker: aws.String("String"),
MaxRecords: aws.Int64(1),
}
resp, err := svc.DescribeTableStatistics(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例10: ExampleDatabaseMigrationService_ImportCertificate
func ExampleDatabaseMigrationService_ImportCertificate() {
sess, err := session.NewSession()
if err != nil {
fmt.Println("failed to create session,", err)
return
}
svc := databasemigrationservice.New(sess)
params := &databasemigrationservice.ImportCertificateInput{
CertificateIdentifier: aws.String("String"), // Required
CertificatePem: aws.String("String"),
}
resp, err := svc.ImportCertificate(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例11: ExampleDatabaseMigrationService_CreateReplicationSubnetGroup
func ExampleDatabaseMigrationService_CreateReplicationSubnetGroup() {
svc := databasemigrationservice.New(session.New())
params := &databasemigrationservice.CreateReplicationSubnetGroupInput{
ReplicationSubnetGroupDescription: aws.String("String"), // Required
ReplicationSubnetGroupIdentifier: aws.String("String"), // Required
SubnetIds: []*string{ // Required
aws.String("String"), // Required
// More values...
},
Tags: []*databasemigrationservice.Tag{
{ // Required
Key: aws.String("String"),
Value: aws.String("String"),
},
// More values...
},
}
resp, err := svc.CreateReplicationSubnetGroup(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例12: ExampleDatabaseMigrationService_DescribeReplicationTasks
func ExampleDatabaseMigrationService_DescribeReplicationTasks() {
sess, err := session.NewSession()
if err != nil {
fmt.Println("failed to create session,", err)
return
}
svc := databasemigrationservice.New(sess)
params := &databasemigrationservice.DescribeReplicationTasksInput{
Filters: []*databasemigrationservice.Filter{
{ // Required
Name: aws.String("String"), // Required
Values: []*string{ // Required
aws.String("String"), // Required
// More values...
},
},
// More values...
},
Marker: aws.String("String"),
MaxRecords: aws.Int64(1),
}
resp, err := svc.DescribeReplicationTasks(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例13: ExampleDatabaseMigrationService_ModifyReplicationInstance
func ExampleDatabaseMigrationService_ModifyReplicationInstance() {
svc := databasemigrationservice.New(session.New())
params := &databasemigrationservice.ModifyReplicationInstanceInput{
ReplicationInstanceArn: aws.String("String"), // Required
AllocatedStorage: aws.Int64(1),
AllowMajorVersionUpgrade: aws.Bool(true),
ApplyImmediately: aws.Bool(true),
AutoMinorVersionUpgrade: aws.Bool(true),
EngineVersion: aws.String("String"),
PreferredMaintenanceWindow: aws.String("String"),
ReplicationInstanceClass: aws.String("String"),
ReplicationInstanceIdentifier: aws.String("String"),
VpcSecurityGroupIds: []*string{
aws.String("String"), // Required
// More values...
},
}
resp, err := svc.ModifyReplicationInstance(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例14: ExampleDatabaseMigrationService_CreateEndpoint
func ExampleDatabaseMigrationService_CreateEndpoint() {
svc := databasemigrationservice.New(session.New())
params := &databasemigrationservice.CreateEndpointInput{
EndpointIdentifier: aws.String("String"), // Required
EndpointType: aws.String("ReplicationEndpointTypeValue"), // Required
EngineName: aws.String("String"), // Required
Password: aws.String("SecretString"), // Required
Port: aws.Int64(1), // Required
ServerName: aws.String("String"), // Required
Username: aws.String("String"), // Required
DatabaseName: aws.String("String"),
ExtraConnectionAttributes: aws.String("String"),
KmsKeyId: aws.String("String"),
Tags: []*databasemigrationservice.Tag{
{ // Required
Key: aws.String("String"),
Value: aws.String("String"),
},
// More values...
},
}
resp, err := svc.CreateEndpoint(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例15: ExampleDatabaseMigrationService_DescribeAccountAttributes
func ExampleDatabaseMigrationService_DescribeAccountAttributes() {
svc := databasemigrationservice.New(session.New())
var params *databasemigrationservice.DescribeAccountAttributesInput
resp, err := svc.DescribeAccountAttributes(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}