@aws-sdk/client-securityhub 3.423.0 → 3.426.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_1.js +1 -36
- package/dist-cjs/models/models_2.js +36 -1
- package/dist-cjs/protocols/Aws_restJson1.js +14 -0
- package/dist-es/models/models_1.js +0 -35
- package/dist-es/models/models_2.js +35 -0
- package/dist-es/protocols/Aws_restJson1.js +14 -0
- package/dist-types/SecurityHubClient.d.ts +2 -0
- package/dist-types/commands/BatchImportFindingsCommand.d.ts +143 -0
- package/dist-types/commands/GetFindingsCommand.d.ts +143 -0
- package/dist-types/models/models_0.d.ts +319 -148
- package/dist-types/models/models_1.d.ts +707 -1504
- package/dist-types/models/models_2.d.ts +1542 -2
- package/dist-types/ts3.4/models/models_0.d.ts +51 -28
- package/dist-types/ts3.4/models/models_1.d.ts +135 -324
- package/dist-types/ts3.4/models/models_2.d.ts +386 -9
- package/package.json +31 -31
|
@@ -5619,6 +5619,321 @@ export interface AwsCodeBuildProjectDetails {
|
|
|
5619
5619
|
*/
|
|
5620
5620
|
SecondaryArtifacts?: AwsCodeBuildProjectArtifactsDetails[];
|
|
5621
5621
|
}
|
|
5622
|
+
/**
|
|
5623
|
+
* @public
|
|
5624
|
+
* <p>
|
|
5625
|
+
* Provides details about an Database Migration Service (DMS) endpoint. An endpoint provides connection, data
|
|
5626
|
+
* store type, and location information about your data store.
|
|
5627
|
+
* </p>
|
|
5628
|
+
*/
|
|
5629
|
+
export interface AwsDmsEndpointDetails {
|
|
5630
|
+
/**
|
|
5631
|
+
* @public
|
|
5632
|
+
* <p>
|
|
5633
|
+
* The Amazon Resource Name (ARN) for the SSL certificate that encrypts connections between the DMS endpoint and the
|
|
5634
|
+
* replication instance.
|
|
5635
|
+
* </p>
|
|
5636
|
+
*/
|
|
5637
|
+
CertificateArn?: string;
|
|
5638
|
+
/**
|
|
5639
|
+
* @public
|
|
5640
|
+
* <p>
|
|
5641
|
+
* The name of the endpoint database.</p>
|
|
5642
|
+
*/
|
|
5643
|
+
DatabaseName?: string;
|
|
5644
|
+
/**
|
|
5645
|
+
* @public
|
|
5646
|
+
* <p>
|
|
5647
|
+
* The Amazon Resource Name (ARN) of the endpoint.
|
|
5648
|
+
* </p>
|
|
5649
|
+
*/
|
|
5650
|
+
EndpointArn?: string;
|
|
5651
|
+
/**
|
|
5652
|
+
* @public
|
|
5653
|
+
* <p>
|
|
5654
|
+
* The database endpoint identifier.
|
|
5655
|
+
* </p>
|
|
5656
|
+
*/
|
|
5657
|
+
EndpointIdentifier?: string;
|
|
5658
|
+
/**
|
|
5659
|
+
* @public
|
|
5660
|
+
* <p>
|
|
5661
|
+
* The type of endpoint. Valid values are source and target.
|
|
5662
|
+
* </p>
|
|
5663
|
+
*/
|
|
5664
|
+
EndpointType?: string;
|
|
5665
|
+
/**
|
|
5666
|
+
* @public
|
|
5667
|
+
* <p>
|
|
5668
|
+
* The type of engine for the endpoint, depending on the <code>EndpointType</code> value.
|
|
5669
|
+
* </p>
|
|
5670
|
+
*/
|
|
5671
|
+
EngineName?: string;
|
|
5672
|
+
/**
|
|
5673
|
+
* @public
|
|
5674
|
+
* <p>
|
|
5675
|
+
* A value that can be used for cross-account validation.
|
|
5676
|
+
* </p>
|
|
5677
|
+
*/
|
|
5678
|
+
ExternalId?: string;
|
|
5679
|
+
/**
|
|
5680
|
+
* @public
|
|
5681
|
+
* <p>
|
|
5682
|
+
* Additional attributes associated with the connection.
|
|
5683
|
+
* </p>
|
|
5684
|
+
*/
|
|
5685
|
+
ExtraConnectionAttributes?: string;
|
|
5686
|
+
/**
|
|
5687
|
+
* @public
|
|
5688
|
+
* <p>
|
|
5689
|
+
* An DMS key identifier that is used to encrypt the connection parameters for the endpoint.
|
|
5690
|
+
* If you don't specify a value for the <code>KmsKeyId</code> parameter, then DMS uses your default
|
|
5691
|
+
* encryption key. KMS creates the default encryption key for your Amazon Web Services account. Your
|
|
5692
|
+
* Amazon Web Services account has a different default encryption key for each Amazon Web Services Region.</p>
|
|
5693
|
+
*/
|
|
5694
|
+
KmsKeyId?: string;
|
|
5695
|
+
/**
|
|
5696
|
+
* @public
|
|
5697
|
+
* <p>
|
|
5698
|
+
* The port used to access the endpoint.
|
|
5699
|
+
* </p>
|
|
5700
|
+
*/
|
|
5701
|
+
Port?: number;
|
|
5702
|
+
/**
|
|
5703
|
+
* @public
|
|
5704
|
+
* <p>
|
|
5705
|
+
* The name of the server where the endpoint database resides.</p>
|
|
5706
|
+
*/
|
|
5707
|
+
ServerName?: string;
|
|
5708
|
+
/**
|
|
5709
|
+
* @public
|
|
5710
|
+
* <p>
|
|
5711
|
+
* The SSL mode used to connect to the endpoint. The default is none.</p>
|
|
5712
|
+
*/
|
|
5713
|
+
SslMode?: string;
|
|
5714
|
+
/**
|
|
5715
|
+
* @public
|
|
5716
|
+
* <p>
|
|
5717
|
+
* The user name to be used to log in to the endpoint database.
|
|
5718
|
+
* </p>
|
|
5719
|
+
*/
|
|
5720
|
+
Username?: string;
|
|
5721
|
+
}
|
|
5722
|
+
/**
|
|
5723
|
+
* @public
|
|
5724
|
+
* <p>
|
|
5725
|
+
* Provides details about the replication subnet group.</p>
|
|
5726
|
+
*/
|
|
5727
|
+
export interface AwsDmsReplicationInstanceReplicationSubnetGroupDetails {
|
|
5728
|
+
/**
|
|
5729
|
+
* @public
|
|
5730
|
+
* <p>
|
|
5731
|
+
* The identifier of the replication subnet group.
|
|
5732
|
+
* </p>
|
|
5733
|
+
*/
|
|
5734
|
+
ReplicationSubnetGroupIdentifier?: string;
|
|
5735
|
+
}
|
|
5736
|
+
/**
|
|
5737
|
+
* @public
|
|
5738
|
+
* <p>
|
|
5739
|
+
* Provides details about the virtual private cloud (VPC) security group that’s associated with the replication instance.</p>
|
|
5740
|
+
*/
|
|
5741
|
+
export interface AwsDmsReplicationInstanceVpcSecurityGroupsDetails {
|
|
5742
|
+
/**
|
|
5743
|
+
* @public
|
|
5744
|
+
* <p>
|
|
5745
|
+
* The identifier of the VPC security group that’s associated with the replication instance.
|
|
5746
|
+
* </p>
|
|
5747
|
+
*/
|
|
5748
|
+
VpcSecurityGroupId?: string;
|
|
5749
|
+
}
|
|
5750
|
+
/**
|
|
5751
|
+
* @public
|
|
5752
|
+
* <p>
|
|
5753
|
+
* Provides details about an Database Migration Service (DMS) replication instance. DMS uses a replication instance to connect to
|
|
5754
|
+
* your source data store, read the source data, and format the data for consumption by the target data store.
|
|
5755
|
+
* </p>
|
|
5756
|
+
*/
|
|
5757
|
+
export interface AwsDmsReplicationInstanceDetails {
|
|
5758
|
+
/**
|
|
5759
|
+
* @public
|
|
5760
|
+
* <p>
|
|
5761
|
+
* The amount of storage (in gigabytes) that is allocated for the replication instance.
|
|
5762
|
+
* </p>
|
|
5763
|
+
*/
|
|
5764
|
+
AllocatedStorage?: number;
|
|
5765
|
+
/**
|
|
5766
|
+
* @public
|
|
5767
|
+
* <p>
|
|
5768
|
+
* Indicates whether minor engine upgrades are applied automatically to the replication instance during the maintenance
|
|
5769
|
+
* window.
|
|
5770
|
+
* </p>
|
|
5771
|
+
*/
|
|
5772
|
+
AutoMinorVersionUpgrade?: boolean;
|
|
5773
|
+
/**
|
|
5774
|
+
* @public
|
|
5775
|
+
* <p>
|
|
5776
|
+
* The Availability Zone that the replication instance is created in. The default value is a random, system-chosen
|
|
5777
|
+
* Availability Zone in the endpoint's Amazon Web Services Region, such as <code>us-east-1d</code>.</p>
|
|
5778
|
+
*/
|
|
5779
|
+
AvailabilityZone?: string;
|
|
5780
|
+
/**
|
|
5781
|
+
* @public
|
|
5782
|
+
* <p>
|
|
5783
|
+
* The engine version number of the replication instance. If an engine version number is not specified when a
|
|
5784
|
+
* replication instance is created, the default is the latest engine version available.
|
|
5785
|
+
* </p>
|
|
5786
|
+
*/
|
|
5787
|
+
EngineVersion?: string;
|
|
5788
|
+
/**
|
|
5789
|
+
* @public
|
|
5790
|
+
* <p>
|
|
5791
|
+
* An KMS key identifier that is used to encrypt the data on the replication instance. If you don't
|
|
5792
|
+
* specify a value for the <code>KmsKeyId</code> parameter, DMS uses your default encryption key.
|
|
5793
|
+
* KMS creates the default encryption key for your Amazon Web Services account. Your
|
|
5794
|
+
* Amazon Web Services account has a different default encryption key for each Amazon Web Services Region.</p>
|
|
5795
|
+
*/
|
|
5796
|
+
KmsKeyId?: string;
|
|
5797
|
+
/**
|
|
5798
|
+
* @public
|
|
5799
|
+
* <p>
|
|
5800
|
+
* Specifies whether the replication instance is deployed across multiple Availability Zones (AZs). You can't set the
|
|
5801
|
+
* <code>AvailabilityZone</code> parameter if the <code>MultiAZ</code> parameter is set to <code>true</code>.</p>
|
|
5802
|
+
*/
|
|
5803
|
+
MultiAZ?: boolean;
|
|
5804
|
+
/**
|
|
5805
|
+
* @public
|
|
5806
|
+
* <p>
|
|
5807
|
+
* The maintenance window times for the replication instance. Upgrades to the replication instance are performed during
|
|
5808
|
+
* this time.</p>
|
|
5809
|
+
*/
|
|
5810
|
+
PreferredMaintenanceWindow?: string;
|
|
5811
|
+
/**
|
|
5812
|
+
* @public
|
|
5813
|
+
* <p>
|
|
5814
|
+
* Specifies the accessibility options for the replication instance. A value of <code>true</code> represents an instance
|
|
5815
|
+
* with a public IP address. A value of <code>false</code> represents an instance with a private IP address. The default
|
|
5816
|
+
* value is <code>true</code>.</p>
|
|
5817
|
+
*/
|
|
5818
|
+
PubliclyAccessible?: boolean;
|
|
5819
|
+
/**
|
|
5820
|
+
* @public
|
|
5821
|
+
* <p>
|
|
5822
|
+
* The compute and memory capacity of the replication instance as defined for the specified replication instance class. </p>
|
|
5823
|
+
*/
|
|
5824
|
+
ReplicationInstanceClass?: string;
|
|
5825
|
+
/**
|
|
5826
|
+
* @public
|
|
5827
|
+
* <p>
|
|
5828
|
+
* The replication instance identifier.</p>
|
|
5829
|
+
*/
|
|
5830
|
+
ReplicationInstanceIdentifier?: string;
|
|
5831
|
+
/**
|
|
5832
|
+
* @public
|
|
5833
|
+
* <p>
|
|
5834
|
+
* The subnet group for the replication instance.</p>
|
|
5835
|
+
*/
|
|
5836
|
+
ReplicationSubnetGroup?: AwsDmsReplicationInstanceReplicationSubnetGroupDetails;
|
|
5837
|
+
/**
|
|
5838
|
+
* @public
|
|
5839
|
+
* <p>
|
|
5840
|
+
* The virtual private cloud (VPC) security group for the replication instance.</p>
|
|
5841
|
+
*/
|
|
5842
|
+
VpcSecurityGroups?: AwsDmsReplicationInstanceVpcSecurityGroupsDetails[];
|
|
5843
|
+
}
|
|
5844
|
+
/**
|
|
5845
|
+
* @public
|
|
5846
|
+
* <p>
|
|
5847
|
+
* Provides details about an Database Migration Service (DMS) replication task. A replication task moves a set of data from the
|
|
5848
|
+
* source endpoint to the target endpoint.</p>
|
|
5849
|
+
*/
|
|
5850
|
+
export interface AwsDmsReplicationTaskDetails {
|
|
5851
|
+
/**
|
|
5852
|
+
* @public
|
|
5853
|
+
* <p>
|
|
5854
|
+
* Indicates when you want a change data capture (CDC) operation to start. <code>CCdcStartPosition</code> or
|
|
5855
|
+
* <code>CCdcStartTime</code> specifies when you want a CDC operation to start. Only a value for one of these fields
|
|
5856
|
+
* is included.</p>
|
|
5857
|
+
*/
|
|
5858
|
+
CdcStartPosition?: string;
|
|
5859
|
+
/**
|
|
5860
|
+
* @public
|
|
5861
|
+
* <p>
|
|
5862
|
+
* Indicates the start time for a CDC operation. <code>CdcStartPosition</code> or <code>CCdcStartTime</code> specifies
|
|
5863
|
+
* when you want a CDC operation to start. Only a value for one of these fields is included.</p>
|
|
5864
|
+
*/
|
|
5865
|
+
CdcStartTime?: string;
|
|
5866
|
+
/**
|
|
5867
|
+
* @public
|
|
5868
|
+
* <p>
|
|
5869
|
+
* Indicates when you want a CDC operation to stop. The value can be either server time or commit time.</p>
|
|
5870
|
+
*/
|
|
5871
|
+
CdcStopPosition?: string;
|
|
5872
|
+
/**
|
|
5873
|
+
* @public
|
|
5874
|
+
* <p>
|
|
5875
|
+
* The migration type.
|
|
5876
|
+
* </p>
|
|
5877
|
+
*/
|
|
5878
|
+
MigrationType?: string;
|
|
5879
|
+
/**
|
|
5880
|
+
* @public
|
|
5881
|
+
* <p>
|
|
5882
|
+
* The identifier of the replication task.</p>
|
|
5883
|
+
*/
|
|
5884
|
+
Id?: string;
|
|
5885
|
+
/**
|
|
5886
|
+
* @public
|
|
5887
|
+
* <p>
|
|
5888
|
+
* A display name for the resource identifier at the end of the <code>EndpointArn</code> response parameter.
|
|
5889
|
+
* If you don't specify a <code>ResourceIdentifier</code> value, DMS generates a default identifier value for
|
|
5890
|
+
* the end of <code>EndpointArn</code>.</p>
|
|
5891
|
+
*/
|
|
5892
|
+
ResourceIdentifier?: string;
|
|
5893
|
+
/**
|
|
5894
|
+
* @public
|
|
5895
|
+
* <p>
|
|
5896
|
+
* The Amazon Resource Name (ARN) of a replication instance.
|
|
5897
|
+
* </p>
|
|
5898
|
+
*/
|
|
5899
|
+
ReplicationInstanceArn?: string;
|
|
5900
|
+
/**
|
|
5901
|
+
* @public
|
|
5902
|
+
* <p>
|
|
5903
|
+
* The user-defined replication task identifier or name.</p>
|
|
5904
|
+
*/
|
|
5905
|
+
ReplicationTaskIdentifier?: string;
|
|
5906
|
+
/**
|
|
5907
|
+
* @public
|
|
5908
|
+
* <p>
|
|
5909
|
+
* The settings for the replication task.</p>
|
|
5910
|
+
*/
|
|
5911
|
+
ReplicationTaskSettings?: string;
|
|
5912
|
+
/**
|
|
5913
|
+
* @public
|
|
5914
|
+
* <p>
|
|
5915
|
+
* The ARN of the source endpoint.</p>
|
|
5916
|
+
*/
|
|
5917
|
+
SourceEndpointArn?: string;
|
|
5918
|
+
/**
|
|
5919
|
+
* @public
|
|
5920
|
+
* <p>
|
|
5921
|
+
* The table mappings for the replication task, in JSON format.</p>
|
|
5922
|
+
*/
|
|
5923
|
+
TableMappings?: string;
|
|
5924
|
+
/**
|
|
5925
|
+
* @public
|
|
5926
|
+
* <p>
|
|
5927
|
+
* The ARN of the target endpoint.</p>
|
|
5928
|
+
*/
|
|
5929
|
+
TargetEndpointArn?: string;
|
|
5930
|
+
/**
|
|
5931
|
+
* @public
|
|
5932
|
+
* <p>
|
|
5933
|
+
* Supplemental information that the task requires to migrate the data for certain source and target endpoints.</p>
|
|
5934
|
+
*/
|
|
5935
|
+
TaskData?: string;
|
|
5936
|
+
}
|
|
5622
5937
|
/**
|
|
5623
5938
|
* @public
|
|
5624
5939
|
* <p>Contains a definition of an attribute for the table.</p>
|
|
@@ -11142,155 +11457,11 @@ export interface AwsEcsTaskDefinitionDetails {
|
|
|
11142
11457
|
* <p>The data volume definitions for the task.</p>
|
|
11143
11458
|
*/
|
|
11144
11459
|
Volumes?: AwsEcsTaskDefinitionVolumesDetails[];
|
|
11145
|
-
}
|
|
11146
|
-
/**
|
|
11147
|
-
* @public
|
|
11148
|
-
* <p>Provides details on a container instance bind mount host volume.
|
|
11149
|
-
* </p>
|
|
11150
|
-
*/
|
|
11151
|
-
export interface AwsEcsTaskVolumeHostDetails {
|
|
11152
11460
|
/**
|
|
11153
11461
|
* @public
|
|
11154
|
-
* <p>
|
|
11155
|
-
*
|
|
11156
|
-
*
|
|
11157
|
-
*/
|
|
11158
|
-
SourcePath?: string;
|
|
11159
|
-
}
|
|
11160
|
-
/**
|
|
11161
|
-
* @public
|
|
11162
|
-
* <p>Provides information about a data volume that's used in a task definition.
|
|
11163
|
-
* </p>
|
|
11164
|
-
*/
|
|
11165
|
-
export interface AwsEcsTaskVolumeDetails {
|
|
11166
|
-
/**
|
|
11167
|
-
* @public
|
|
11168
|
-
* <p>The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, underscores, and
|
|
11169
|
-
* hyphens are allowed. This name is referenced in the <code>sourceVolume</code> parameter of container definition <code>mountPoints</code>.
|
|
11170
|
-
* </p>
|
|
11171
|
-
*/
|
|
11172
|
-
Name?: string;
|
|
11173
|
-
/**
|
|
11174
|
-
* @public
|
|
11175
|
-
* <p>This parameter is specified when you use bind mount host volumes. The contents of the <code>host</code> parameter
|
|
11176
|
-
* determine whether your bind mount host volume persists on the host container instance and where it's stored.
|
|
11177
|
-
* </p>
|
|
11178
|
-
*/
|
|
11179
|
-
Host?: AwsEcsTaskVolumeHostDetails;
|
|
11180
|
-
}
|
|
11181
|
-
/**
|
|
11182
|
-
* @public
|
|
11183
|
-
* <p>Provides details about a task in a cluster.
|
|
11184
|
-
* </p>
|
|
11185
|
-
*/
|
|
11186
|
-
export interface AwsEcsTaskDetails {
|
|
11187
|
-
/**
|
|
11188
|
-
* @public
|
|
11189
|
-
* <p>The Amazon Resource Name (ARN) of the cluster that hosts the task.
|
|
11190
|
-
* </p>
|
|
11191
|
-
*/
|
|
11192
|
-
ClusterArn?: string;
|
|
11193
|
-
/**
|
|
11194
|
-
* @public
|
|
11195
|
-
* <p>The ARN of the task definition that creates the task.
|
|
11196
|
-
* </p>
|
|
11197
|
-
*/
|
|
11198
|
-
TaskDefinitionArn?: string;
|
|
11199
|
-
/**
|
|
11200
|
-
* @public
|
|
11201
|
-
* <p>The version counter for the task.
|
|
11202
|
-
* </p>
|
|
11203
|
-
*/
|
|
11204
|
-
Version?: string;
|
|
11205
|
-
/**
|
|
11206
|
-
* @public
|
|
11207
|
-
* <p>The Unix timestamp for the time when the task was created. More specifically, it's for the time when
|
|
11208
|
-
* the task entered the <code>PENDING</code> state.
|
|
11209
|
-
* </p>
|
|
11210
|
-
*/
|
|
11211
|
-
CreatedAt?: string;
|
|
11212
|
-
/**
|
|
11213
|
-
* @public
|
|
11214
|
-
* <p>The Unix timestamp for the time when the task started. More specifically, it's for the time when the
|
|
11215
|
-
* task transitioned from the <code>PENDING</code> state to the <code>RUNNING</code> state.
|
|
11216
|
-
* </p>
|
|
11217
|
-
*/
|
|
11218
|
-
StartedAt?: string;
|
|
11219
|
-
/**
|
|
11220
|
-
* @public
|
|
11221
|
-
* <p>The tag specified when a task is started. If an Amazon ECS service started the task, the
|
|
11222
|
-
* <code>startedBy</code> parameter contains the deployment ID of that service.
|
|
11223
|
-
* </p>
|
|
11224
|
-
*/
|
|
11225
|
-
StartedBy?: string;
|
|
11226
|
-
/**
|
|
11227
|
-
* @public
|
|
11228
|
-
* <p>The name of the task group that's associated with the task.
|
|
11229
|
-
* </p>
|
|
11230
|
-
*/
|
|
11231
|
-
Group?: string;
|
|
11232
|
-
/**
|
|
11233
|
-
* @public
|
|
11234
|
-
* <p>Details about the data volume that is used in a task definition.
|
|
11235
|
-
* </p>
|
|
11236
|
-
*/
|
|
11237
|
-
Volumes?: AwsEcsTaskVolumeDetails[];
|
|
11238
|
-
/**
|
|
11239
|
-
* @public
|
|
11240
|
-
* <p>The containers that are associated with the task.
|
|
11241
|
-
* </p>
|
|
11242
|
-
*/
|
|
11243
|
-
Containers?: AwsEcsContainerDetails[];
|
|
11244
|
-
}
|
|
11245
|
-
/**
|
|
11246
|
-
* @public
|
|
11247
|
-
* <p>Provides details for all file system operations using this Amazon EFS access point.
|
|
11248
|
-
* </p>
|
|
11249
|
-
*/
|
|
11250
|
-
export interface AwsEfsAccessPointPosixUserDetails {
|
|
11251
|
-
/**
|
|
11252
|
-
* @public
|
|
11253
|
-
* <p>The POSIX group ID used for all file system operations using this access point.
|
|
11254
|
-
* </p>
|
|
11255
|
-
*/
|
|
11256
|
-
Gid?: string;
|
|
11257
|
-
/**
|
|
11258
|
-
* @public
|
|
11259
|
-
* <p>Secondary POSIX group IDs used for all file system operations using this access point.
|
|
11260
|
-
* </p>
|
|
11261
|
-
*/
|
|
11262
|
-
SecondaryGids?: string[];
|
|
11263
|
-
/**
|
|
11264
|
-
* @public
|
|
11265
|
-
* <p>The POSIX user ID used for all file system operations using this access point.
|
|
11266
|
-
* </p>
|
|
11267
|
-
*/
|
|
11268
|
-
Uid?: string;
|
|
11269
|
-
}
|
|
11270
|
-
/**
|
|
11271
|
-
* @public
|
|
11272
|
-
* <p>Provides information about the settings that Amazon EFS uses to create the root directory
|
|
11273
|
-
* when a client connects to an access point.
|
|
11274
|
-
* </p>
|
|
11275
|
-
*/
|
|
11276
|
-
export interface AwsEfsAccessPointRootDirectoryCreationInfoDetails {
|
|
11277
|
-
/**
|
|
11278
|
-
* @public
|
|
11279
|
-
* <p>Specifies the POSIX group ID to apply to the root directory.
|
|
11280
|
-
* </p>
|
|
11281
|
-
*/
|
|
11282
|
-
OwnerGid?: string;
|
|
11283
|
-
/**
|
|
11284
|
-
* @public
|
|
11285
|
-
* <p>Specifies the POSIX user ID to apply to the root directory.
|
|
11286
|
-
* </p>
|
|
11287
|
-
*/
|
|
11288
|
-
OwnerUid?: string;
|
|
11289
|
-
/**
|
|
11290
|
-
* @public
|
|
11291
|
-
* <p>Specifies the POSIX permissions to apply to the root directory, in the format of an octal number
|
|
11292
|
-
* representing the file's mode bits.
|
|
11293
|
-
* </p>
|
|
11462
|
+
* <p>
|
|
11463
|
+
* The status of the task definition.
|
|
11464
|
+
* </p>
|
|
11294
11465
|
*/
|
|
11295
|
-
|
|
11466
|
+
Status?: string;
|
|
11296
11467
|
}
|