88
99class PublishLayerVersionResponse extends Result
1010{
11- /**
12- * Details about the layer version.
13- */
1411 private $ Content ;
1512
16- /**
17- * The ARN of the layer.
18- */
1913 private $ LayerArn ;
2014
21- /**
22- * The ARN of the layer version.
23- */
2415 private $ LayerVersionArn ;
2516
26- /**
27- * The description of the version.
28- */
2917 private $ Description ;
3018
31- /**
32- * The date that the layer version was created, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
33- *
34- * @see https://www.w3.org/TR/NOTE-datetime
35- */
3619 private $ CreatedDate ;
3720
38- /**
39- * The version number.
40- */
4121 private $ Version ;
4222
43- /**
44- * The layer's compatible runtimes.
45- */
4623 private $ CompatibleRuntimes = [];
4724
48- /**
49- * The layer's software license.
50- */
5125 private $ LicenseInfo ;
5226
5327 /**
@@ -60,48 +34,71 @@ public function getCompatibleRuntimes(): array
6034 return $ this ->CompatibleRuntimes ;
6135 }
6236
37+ /**
38+ * Details about the layer version.
39+ */
6340 public function getContent (): ?LayerVersionContentOutput
6441 {
6542 $ this ->initialize ();
6643
6744 return $ this ->Content ;
6845 }
6946
47+ /**
48+ * The date that the layer version was created, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
49+ *
50+ * @see https://www.w3.org/TR/NOTE-datetime
51+ */
7052 public function getCreatedDate (): ?string
7153 {
7254 $ this ->initialize ();
7355
7456 return $ this ->CreatedDate ;
7557 }
7658
59+ /**
60+ * The description of the version.
61+ */
7762 public function getDescription (): ?string
7863 {
7964 $ this ->initialize ();
8065
8166 return $ this ->Description ;
8267 }
8368
69+ /**
70+ * The ARN of the layer.
71+ */
8472 public function getLayerArn (): ?string
8573 {
8674 $ this ->initialize ();
8775
8876 return $ this ->LayerArn ;
8977 }
9078
79+ /**
80+ * The ARN of the layer version.
81+ */
9182 public function getLayerVersionArn (): ?string
9283 {
9384 $ this ->initialize ();
9485
9586 return $ this ->LayerVersionArn ;
9687 }
9788
89+ /**
90+ * The layer's software license.
91+ */
9892 public function getLicenseInfo (): ?string
9993 {
10094 $ this ->initialize ();
10195
10296 return $ this ->LicenseInfo ;
10397 }
10498
99+ /**
100+ * The version number.
101+ */
105102 public function getVersion (): ?string
106103 {
107104 $ this ->initialize ();
0 commit comments