Beispiel #1
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"]
	// }
}
Beispiel #2
0
// String returns the string representation
func (s DeleteRepositoryOutput) String() string {
	return awsutil.Prettify(s)
}
Beispiel #3
0
// String returns the string representation
func (s CreateRepositoryInput) String() string {
	return awsutil.Prettify(s)
}
Beispiel #4
0
// String returns the string representation
func (s CompleteLayerUploadOutput) String() string {
	return awsutil.Prettify(s)
}
Beispiel #5
0
// String returns the string representation
func (s BatchGetImageOutput) String() string {
	return awsutil.Prettify(s)
}
Beispiel #6
0
// String returns the string representation
func (s ImageIdentifier) String() string {
	return awsutil.Prettify(s)
}
Beispiel #7
0
// String returns the string representation
func (s GetRepositoryPolicyOutput) String() string {
	return awsutil.Prettify(s)
}
Beispiel #8
0
// String returns the string representation
func (s GetAuthorizationTokenOutput) String() string {
	return awsutil.Prettify(s)
}
Beispiel #9
0
// String returns the string representation
func (s UploadLayerPartOutput) String() string {
	return awsutil.Prettify(s)
}
Beispiel #10
0
// String returns the string representation
func (s Repository) String() string {
	return awsutil.Prettify(s)
}
Beispiel #11
0
// String returns the string representation
func (s PutImageInput) String() string {
	return awsutil.Prettify(s)
}
Beispiel #12
0
// String returns the string representation
func (s ListImagesOutput) String() string {
	return awsutil.Prettify(s)
}
Beispiel #13
0
// String returns the string representation
func (s LayerFailure) String() string {
	return awsutil.Prettify(s)
}
Beispiel #14
0
// String returns the string representation
func (s InitiateLayerUploadOutput) String() string {
	return awsutil.Prettify(s)
}
Beispiel #15
0
// String returns the string representation
func (s DeleteRepositoryPolicyInput) String() string {
	return awsutil.Prettify(s)
}
Beispiel #16
0
// String returns the string representation
func (s DescribeRepositoriesOutput) String() string {
	return awsutil.Prettify(s)
}
Beispiel #17
0
// String returns the string representation
func (s AuthorizationData) String() string {
	return awsutil.Prettify(s)
}
Beispiel #18
0
// String returns the string representation
func (s GetDownloadUrlForLayerOutput) String() string {
	return awsutil.Prettify(s)
}
Beispiel #19
0
// String returns the string representation
func (s BatchCheckLayerAvailabilityOutput) String() string {
	return awsutil.Prettify(s)
}
Beispiel #20
0
// String returns the string representation
func (s BatchDeleteImageInput) String() string {
	return awsutil.Prettify(s)
}
Beispiel #21
0
// String returns the string representation
func (s ImageFailure) String() string {
	return awsutil.Prettify(s)
}