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) }
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) }
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) }
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) }
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) }
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) }
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) }
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) }
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) }
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) }
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) }
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) }
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) }
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) }
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) }
func ExampleDatabaseMigrationService_StopReplicationTask() { svc := databasemigrationservice.New(session.New()) params := &databasemigrationservice.StopReplicationTaskInput{ ReplicationTaskArn: aws.String("String"), // Required } resp, err := svc.StopReplicationTask(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) }
func ExampleDatabaseMigrationService_DescribeRefreshSchemasStatus() { svc := databasemigrationservice.New(session.New()) params := &databasemigrationservice.DescribeRefreshSchemasStatusInput{ EndpointArn: aws.String("String"), // Required } resp, err := svc.DescribeRefreshSchemasStatus(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) }
func ExampleDatabaseMigrationService_DescribeOrderableReplicationInstances() { svc := databasemigrationservice.New(session.New()) params := &databasemigrationservice.DescribeOrderableReplicationInstancesInput{ Marker: aws.String("String"), MaxRecords: aws.Int64(1), } resp, err := svc.DescribeOrderableReplicationInstances(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) }