Skip to content

Commit 93f8443

Browse files
author
AWS
committed
Amazon DataZone Update: Removing restriction of environment profile identifier as required field, S3 feature release
1 parent 8dfecc7 commit 93f8443

File tree

2 files changed

+84
-1
lines changed

2 files changed

+84
-1
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "Amazon DataZone",
4+
"contributor": "",
5+
"description": "Removing restriction of environment profile identifier as required field, S3 feature release"
6+
}

services/datazone/src/main/resources/codegen-resources/service-2.json

Lines changed: 78 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4635,6 +4635,10 @@
46354635
"shape":"RedshiftPropertiesInput",
46364636
"documentation":"<p>The Amazon Redshift properties of a connection.</p>"
46374637
},
4638+
"s3Properties":{
4639+
"shape":"S3PropertiesInput",
4640+
"documentation":"<p>The Amazon S3 properties of a connection.</p>"
4641+
},
46384642
"sparkEmrProperties":{
46394643
"shape":"SparkEmrPropertiesInput",
46404644
"documentation":"<p>The Spark EMR properties of a connection.</p>"
@@ -4670,6 +4674,10 @@
46704674
"shape":"RedshiftPropertiesOutput",
46714675
"documentation":"<p>The Amazon Redshift properties of a connection.</p>"
46724676
},
4677+
"s3Properties":{
4678+
"shape":"S3PropertiesOutput",
4679+
"documentation":"<p>The Amazon S3 properties of a connection.</p>"
4680+
},
46734681
"sparkEmrProperties":{
46744682
"shape":"SparkEmrPropertiesOutput",
46754683
"documentation":"<p>The Spark EMR properties of a connection.</p>"
@@ -4701,6 +4709,10 @@
47014709
"shape":"RedshiftPropertiesPatch",
47024710
"documentation":"<p>The Amazon Redshift properties of a connection properties patch.</p>"
47034711
},
4712+
"s3Properties":{
4713+
"shape":"S3PropertiesPatch",
4714+
"documentation":"<p>The Amazon S3 properties of a connection properties patch.</p>"
4715+
},
47044716
"sparkEmrProperties":{
47054717
"shape":"SparkEmrPropertiesPatch",
47064718
"documentation":"<p>The Spark EMR properties of a connection properties patch.</p>"
@@ -4796,6 +4808,7 @@
47964808
"ORACLE",
47974809
"POSTGRESQL",
47984810
"REDSHIFT",
4811+
"S3",
47994812
"SAPHANA",
48004813
"SNOWFLAKE",
48014814
"SPARK",
@@ -6071,7 +6084,6 @@
60716084
"type":"structure",
60726085
"required":[
60736086
"domainIdentifier",
6074-
"environmentProfileIdentifier",
60756087
"name",
60766088
"projectIdentifier"
60776089
],
@@ -18760,6 +18772,12 @@
1876018772
},
1876118773
"documentation":"<p>The asset statistics from the data source run.</p>"
1876218774
},
18775+
"S3AccessGrantLocationId":{
18776+
"type":"string",
18777+
"max":64,
18778+
"min":0,
18779+
"pattern":"^[a-zA-Z0-9\\-]+$"
18780+
},
1876318781
"S3Location":{
1876418782
"type":"string",
1876518783
"max":1024,
@@ -18772,6 +18790,65 @@
1877218790
"max":20,
1877318791
"min":0
1877418792
},
18793+
"S3PropertiesInput":{
18794+
"type":"structure",
18795+
"required":["s3Uri"],
18796+
"members":{
18797+
"s3AccessGrantLocationId":{
18798+
"shape":"S3AccessGrantLocationId",
18799+
"documentation":"<p>The Amazon S3 Access Grant location ID that's part of the Amazon S3 properties of a connection.</p>"
18800+
},
18801+
"s3Uri":{
18802+
"shape":"S3Uri",
18803+
"documentation":"<p>The Amazon S3 URI that's part of the Amazon S3 properties of a connection.</p>"
18804+
}
18805+
},
18806+
"documentation":"<p>The Amazon S3 properties of a connection.</p>"
18807+
},
18808+
"S3PropertiesOutput":{
18809+
"type":"structure",
18810+
"required":["s3Uri"],
18811+
"members":{
18812+
"errorMessage":{
18813+
"shape":"String",
18814+
"documentation":"<p>The error message that gets displayed.</p>"
18815+
},
18816+
"s3AccessGrantLocationId":{
18817+
"shape":"S3AccessGrantLocationId",
18818+
"documentation":"<p>The Amazon S3 Access Grant location ID that's part of the Amazon S3 properties of a connection.</p>"
18819+
},
18820+
"s3Uri":{
18821+
"shape":"S3Uri",
18822+
"documentation":"<p>The Amazon S3 URI that's part of the Amazon S3 properties of a connection.</p>"
18823+
},
18824+
"status":{
18825+
"shape":"ConnectionStatus",
18826+
"documentation":"<p>The status of the Amazon S3 connection.</p>"
18827+
}
18828+
},
18829+
"documentation":"<p>The Amazon S3 properties of a connection.</p>"
18830+
},
18831+
"S3PropertiesPatch":{
18832+
"type":"structure",
18833+
"required":["s3Uri"],
18834+
"members":{
18835+
"s3AccessGrantLocationId":{
18836+
"shape":"S3AccessGrantLocationId",
18837+
"documentation":"<p>The Amazon S3 Access Grant location ID that's part of the Amazon S3 properties patch of a connection.</p>"
18838+
},
18839+
"s3Uri":{
18840+
"shape":"S3Uri",
18841+
"documentation":"<p>The Amazon S3 URI that's part of the Amazon S3 properties patch of a connection.</p>"
18842+
}
18843+
},
18844+
"documentation":"<p>The Amazon S3 properties patch of a connection.</p>"
18845+
},
18846+
"S3Uri":{
18847+
"type":"string",
18848+
"max":2048,
18849+
"min":0,
18850+
"pattern":"^s3://.+$"
18851+
},
1877518852
"SageMakerAssetType":{
1877618853
"type":"string",
1877718854
"max":64,

0 commit comments

Comments
 (0)