Skip to content

Commit

Permalink
feat(client-s3outposts): Updated ListOutpostsWithS3 API response to i…
Browse files Browse the repository at this point in the history
…nclude S3OutpostArn for use with AWS RAM.
  • Loading branch information
awstools committed Oct 30, 2023
1 parent 5e3dade commit 6869512
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ export interface ListOutpostsWithS3CommandOutput extends ListOutpostsWithS3Resul
* // Outposts: [ // Outposts
* // { // Outpost
* // OutpostArn: "STRING_VALUE",
* // S3OutpostArn: "STRING_VALUE",
* // OutpostId: "STRING_VALUE",
* // OwnerId: "STRING_VALUE",
* // CapacityInBytes: Number("long"),
Expand Down
6 changes: 6 additions & 0 deletions clients/client-s3outposts/src/models/models_0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -439,6 +439,12 @@ export interface Outpost {
*/
OutpostArn?: string;

/**
* @public
* <p>Specifies the unique S3 on Outposts ARN for use with Resource Access Manager (RAM).</p>
*/
S3OutpostArn?: string;

/**
* @public
* <p>Specifies the unique identifier for the outpost.</p>
Expand Down
12 changes: 12 additions & 0 deletions codegen/sdk-codegen/aws-models/s3outposts.json
Original file line number Diff line number Diff line change
Expand Up @@ -733,6 +733,12 @@
"smithy.api#documentation": "<p>Specifies the unique Amazon Resource Name (ARN) for the outpost.</p>"
}
},
"S3OutpostArn": {
"target": "com.amazonaws.s3outposts#S3OutpostArn",
"traits": {
"smithy.api#documentation": "<p>Specifies the unique S3 on Outposts ARN for use with Resource Access Manager (RAM).</p>"
}
},
"OutpostId": {
"target": "com.amazonaws.s3outposts#OutpostId",
"traits": {
Expand Down Expand Up @@ -801,6 +807,12 @@
"smithy.api#httpError": 404
}
},
"com.amazonaws.s3outposts#S3OutpostArn": {
"type": "string",
"traits": {
"smithy.api#pattern": "^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):s3-outposts:[a-z\\-0-9]*:[0-9]{12}:outpost/(op-[a-f0-9]{17}|\\d{12})/s3$"
}
},
"com.amazonaws.s3outposts#S3Outposts": {
"type": "service",
"version": "2017-07-25",
Expand Down

0 comments on commit 6869512

Please sign in to comment.