Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,13 @@ public UserIdentityEntity(String principalId) {
public String getPrincipalId() {
return principalId;
}

@Override
public String toString() {
return "UserIdentityEntity{" +
"principalId='" + principalId + '\'' +
'}';
}
}

public static class S3BucketEntity {
Expand All @@ -74,6 +81,15 @@ public UserIdentityEntity getOwnerIdentity() {
public String getArn() {
return arn;
}

@Override
public String toString() {
return "S3BucketEntity{" +
"name='" + name + '\'' +
", ownerIdentity=" + ownerIdentity +
", arn='" + arn + '\'' +
'}';
}
}

public static class S3ObjectEntity {
Expand Down Expand Up @@ -173,6 +189,17 @@ public String getVersionId() {
public String getSequencer() {
return sequencer;
}

@Override
public String toString() {
return "S3ObjectEntity{" +
"key='" + key + '\'' +
", size=" + size +
", eTag='" + eTag + '\'' +
", versionId='" + versionId + '\'' +
", sequencer='" + sequencer + '\'' +
'}';
}
}

public static class S3Entity {
Expand Down Expand Up @@ -204,6 +231,16 @@ public S3ObjectEntity getObject() {
public String getS3SchemaVersion() {
return s3SchemaVersion;
}

@Override
public String toString() {
return "S3Entity{" +
"configurationId='" + configurationId + '\'' +
", bucket=" + bucket +
", object=" + object +
", s3SchemaVersion='" + s3SchemaVersion + '\'' +
'}';
}
}

public static class RequestParametersEntity {
Expand All @@ -217,6 +254,13 @@ public RequestParametersEntity(String sourceIPAddress) {
public String getSourceIPAddress() {
return sourceIPAddress;
}

@Override
public String toString() {
return "RequestParametersEntity{" +
"sourceIPAddress='" + sourceIPAddress + '\'' +
'}';
}
}

public static class ResponseElementsEntity {
Expand All @@ -237,6 +281,14 @@ public String getxAmzId2() {
public String getxAmzRequestId() {
return xAmzRequestId;
}

@Override
public String toString() {
return "ResponseElementsEntity{" +
"xAmzId2='" + xAmzId2 + '\'' +
", xAmzRequestId='" + xAmzRequestId + '\'' +
'}';
}
}

public static class S3EventNotificationRecord {
Expand Down Expand Up @@ -306,5 +358,20 @@ public S3Entity getS3() {
public UserIdentityEntity getUserIdentity() {
return userIdentity;
}

@Override
public String toString() {
return "S3EventNotificationRecord{" +
"awsRegion='" + awsRegion + '\'' +
", eventName='" + eventName + '\'' +
", eventSource='" + eventSource + '\'' +
", eventTime=" + eventTime +
", eventVersion='" + eventVersion + '\'' +
", requestParameters=" + requestParameters +
", responseElements=" + responseElements +
", s3=" + s3 +
", userIdentity=" + userIdentity +
'}';
}
}
}