예제 #1
0
func compareObjects(t *testing.T, expected interface{}, actual interface{}) {
	if !reflect.DeepEqual(expected, actual) {
		t.Errorf("\nExpected %s:\n%s\nActual %s:\n%s\n",
			reflect.ValueOf(expected).Kind(),
			awsutil.Prettify(expected),
			reflect.ValueOf(actual).Kind(),
			awsutil.Prettify(actual))
	}
}
예제 #2
0
func ExampleCopyOf() {
	type Foo struct {
		A int
		B []*string
	}

	// Create the initial value
	str1 := "hello"
	str2 := "bye bye"
	f1 := &Foo{A: 1, B: []*string{&str1, &str2}}

	// Do the copy
	v := awsutil.CopyOf(f1)
	var f2 *Foo = v.(*Foo)

	// Print the result
	fmt.Println(awsutil.Prettify(f2))

	// Output:
	// {
	//   A: 1,
	//   B: ["hello","bye bye"]
	// }
}
예제 #3
0
파일: api.go 프로젝트: marcosvm/aws-sdk-go
// String returns the string representation
func (s CreateAssociationBatchRequestEntry) String() string {
	return awsutil.Prettify(s)
}
예제 #4
0
파일: api.go 프로젝트: marcosvm/aws-sdk-go
// String returns the string representation
func (s ListAssociationsOutput) String() string {
	return awsutil.Prettify(s)
}
예제 #5
0
파일: api.go 프로젝트: marcosvm/aws-sdk-go
// String returns the string representation
func (s FailedCreateWorkspaceRequest) String() string {
	return awsutil.Prettify(s)
}
예제 #6
0
파일: api.go 프로젝트: marcosvm/aws-sdk-go
// String returns the string representation
func (s DocumentFilter) String() string {
	return awsutil.Prettify(s)
}
예제 #7
0
파일: api.go 프로젝트: marcosvm/aws-sdk-go
// String returns the string representation
func (s FailedCreateAssociation) String() string {
	return awsutil.Prettify(s)
}
예제 #8
0
파일: api.go 프로젝트: marcosvm/aws-sdk-go
// String returns the string representation
func (s DeleteDocumentInput) String() string {
	return awsutil.Prettify(s)
}
예제 #9
0
파일: api.go 프로젝트: marcosvm/aws-sdk-go
// String returns the string representation
func (s DescribeDocumentOutput) String() string {
	return awsutil.Prettify(s)
}
예제 #10
0
파일: api.go 프로젝트: marcosvm/aws-sdk-go
// String returns the string representation
func (s TerminateWorkspacesOutput) String() string {
	return awsutil.Prettify(s)
}
예제 #11
0
파일: api.go 프로젝트: marcosvm/aws-sdk-go
// String returns the string representation
func (s UserStorage) String() string {
	return awsutil.Prettify(s)
}
예제 #12
0
파일: api.go 프로젝트: marcosvm/aws-sdk-go
// String returns the string representation
func (s RebuildWorkspacesOutput) String() string {
	return awsutil.Prettify(s)
}
예제 #13
0
파일: api.go 프로젝트: marcosvm/aws-sdk-go
// String returns the string representation
func (s TerminateRequest) String() string {
	return awsutil.Prettify(s)
}
예제 #14
0
파일: api.go 프로젝트: marcosvm/aws-sdk-go
// String returns the string representation
func (s RebuildRequest) String() string {
	return awsutil.Prettify(s)
}
예제 #15
0
파일: api.go 프로젝트: marcosvm/aws-sdk-go
// String returns the string representation
func (s RebootWorkspacesInput) String() string {
	return awsutil.Prettify(s)
}
예제 #16
0
파일: api.go 프로젝트: marcosvm/aws-sdk-go
// String returns the string representation
func (s FailedWorkspaceChangeRequest) String() string {
	return awsutil.Prettify(s)
}
예제 #17
0
파일: api.go 프로젝트: marcosvm/aws-sdk-go
// String returns the string representation
func (s CreateAssociationOutput) String() string {
	return awsutil.Prettify(s)
}
예제 #18
0
파일: api.go 프로젝트: marcosvm/aws-sdk-go
// String returns the string representation
func (s WorkspaceBundle) String() string {
	return awsutil.Prettify(s)
}
예제 #19
0
파일: api.go 프로젝트: marcosvm/aws-sdk-go
// String returns the string representation
func (s DeleteAssociationInput) String() string {
	return awsutil.Prettify(s)
}
예제 #20
0
파일: api.go 프로젝트: marcosvm/aws-sdk-go
// String returns the string representation
func (s ListDocumentsOutput) String() string {
	return awsutil.Prettify(s)
}
예제 #21
0
파일: api.go 프로젝트: marcosvm/aws-sdk-go
// String returns the string representation
func (s DescribeAssociationOutput) String() string {
	return awsutil.Prettify(s)
}
예제 #22
0
파일: api.go 프로젝트: marcosvm/aws-sdk-go
// String returns the string representation
func (s UpdateAssociationStatusOutput) String() string {
	return awsutil.Prettify(s)
}
예제 #23
0
파일: api.go 프로젝트: marcosvm/aws-sdk-go
// String returns the string representation
func (s DocumentDescription) String() string {
	return awsutil.Prettify(s)
}
예제 #24
0
파일: api.go 프로젝트: marcosvm/aws-sdk-go
// String returns the string representation
func (s AssociationDescription) String() string {
	return awsutil.Prettify(s)
}
예제 #25
0
파일: api.go 프로젝트: marcosvm/aws-sdk-go
// String returns the string representation
func (s DocumentIdentifier) String() string {
	return awsutil.Prettify(s)
}
예제 #26
0
파일: api.go 프로젝트: marcosvm/aws-sdk-go
// String returns the string representation
func (s DescribeWorkspaceDirectoriesInput) String() string {
	return awsutil.Prettify(s)
}
예제 #27
0
파일: api.go 프로젝트: marcosvm/aws-sdk-go
// String returns the string representation
func (s GetDocumentOutput) String() string {
	return awsutil.Prettify(s)
}
예제 #28
0
파일: api.go 프로젝트: marcosvm/aws-sdk-go
// String returns the string representation
func (s AssociationStatus) String() string {
	return awsutil.Prettify(s)
}
예제 #29
0
파일: api.go 프로젝트: marcosvm/aws-sdk-go
// String returns the string representation
func (s AssociationFilter) String() string {
	return awsutil.Prettify(s)
}
예제 #30
0
파일: api.go 프로젝트: marcosvm/aws-sdk-go
// String returns the string representation
func (s DescribeWorkspacesOutput) String() string {
	return awsutil.Prettify(s)
}