本文整理了Java中software.amazon.awssdk.utils.ToString
类的一些代码示例,展示了ToString
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ToString
类的具体详情如下:
包路径:software.amazon.awssdk.utils.ToString
类名称:ToString
[英]A class to standardize implementations of Object#toString() across the SDK.
ToString.builder("Person")
[中]
代码示例来源:origin: aws/aws-sdk-java-v2
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public String toString() {
return ToString.builder("UpdateJobResponse").add("JobName", jobName()).build();
}
代码示例来源:origin: aws/aws-sdk-java-v2
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public String toString() {
return ToString.builder("AssociateResolverRuleResponse").add("ResolverRuleAssociation", resolverRuleAssociation())
.build();
}
代码示例来源:origin: aws/aws-sdk-java-v2
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public String toString() {
return ToString.builder("GetBucketTaggingResponse").add("TagSet", tagSet()).build();
}
代码示例来源:origin: aws/aws-sdk-java-v2
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public String toString() {
return ToString.builder("DisassociateResolverEndpointIpAddressResponse").add("ResolverEndpoint", resolverEndpoint())
.build();
}
代码示例来源:origin: aws/aws-sdk-java-v2
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public String toString() {
return ToString.builder("GetBucketPolicyRequest").add("Bucket", bucket()).build();
}
代码示例来源:origin: aws/aws-sdk-java-v2
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public String toString() {
return ToString.builder("PutObjectLegalHoldResponse").add("RequestCharged", requestChargedAsString()).build();
}
代码示例来源:origin: aws/aws-sdk-java-v2
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public String toString() {
return ToString.builder("ResourceDefinitionVersion").add("Resources", resources()).build();
}
代码示例来源:origin: aws/aws-sdk-java-v2
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public String toString() {
return ToString.builder("GetLoggerDefinitionRequest").add("LoggerDefinitionId", loggerDefinitionId()).build();
}
代码示例来源:origin: aws/aws-sdk-java-v2
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public String toString() {
return ToString.builder("StopBulkDeploymentRequest").add("BulkDeploymentId", bulkDeploymentId()).build();
}
代码示例来源:origin: aws/aws-sdk-java-v2
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public String toString() {
return ToString.builder("CreateAccessKeyRequest").add("UserName", userName()).build();
}
代码示例来源:origin: aws/aws-sdk-java-v2
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public String toString() {
return ToString.builder("DeleteResourceDefinitionRequest").add("ResourceDefinitionId", resourceDefinitionId()).build();
}
代码示例来源:origin: aws/aws-sdk-java-v2
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public String toString() {
return ToString.builder("PutObjectTaggingResponse").add("VersionId", versionId()).build();
}
代码示例来源:origin: aws/aws-sdk-java-v2
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public String toString() {
return ToString.builder("ResourceRecord").add("Value", value()).build();
}
代码示例来源:origin: aws/aws-sdk-java-v2
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public String toString() {
return ToString.builder("GetConnectivityInfoRequest").add("ThingName", thingName()).build();
}
代码示例来源:origin: aws/aws-sdk-java-v2
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public String toString() {
return ToString.builder("CheckDomainTransferabilityResponse").add("Transferability", transferability()).build();
}
代码示例来源:origin: aws/aws-sdk-java-v2
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public String toString() {
return ToString.builder("RegisterDomainResponse").add("OperationId", operationId()).build();
}
代码示例来源:origin: aws/aws-sdk-java-v2
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public String toString() {
return ToString.builder("AssociateRoleToGroupResponse").add("AssociatedAt", associatedAt()).build();
}
代码示例来源:origin: aws/aws-sdk-java-v2
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public String toString() {
return ToString.builder("DisableDomainTransferLockResponse").add("OperationId", operationId()).build();
}
代码示例来源:origin: aws/aws-sdk-java-v2
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public String toString() {
return ToString.builder("GetSearchSuggestionsResponse").add("PropertyNameSuggestions", propertyNameSuggestions()).build();
}
代码示例来源:origin: aws/aws-sdk-java-v2
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public String toString() {
return ToString.builder("CreateAccountAliasRequest").add("AccountAlias", accountAlias()).build();
}
内容来源于网络,如有侵权,请联系作者删除!