ContainerDatasetAction
public struct ContainerDatasetAction : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The ARN of the role which gives permission to the system to access needed resources in order to run the “containerAction”. This includes, at minimum, permission to retrieve the data set contents which are the input to the containerized application.
Declaration
Swift
public let executionRoleArn: String
-
The ARN of the Docker container stored in your account. The Docker container contains an application and needed support libraries and is used to generate data set contents.
Declaration
Swift
public let image: String
-
Configuration of the resource which executes the “containerAction”.
Declaration
Swift
public let resourceConfiguration: ResourceConfiguration
-
The values of variables used within the context of the execution of the containerized application (basically, parameters passed to the application). Each variable must have a name and a value given by one of “stringValue”, “datasetContentVersionValue”, or “outputFileUriValue”.
Declaration
Swift
public let variables: [Variable]?
-
Undocumented
Declaration
Swift
public init(executionRoleArn: String, image: String, resourceConfiguration: ResourceConfiguration, variables: [Variable]? = nil)
-
Declaration
Swift
public func validate(name: String) throws