Class: Aws::GlueDataBrew::Types::UpdateProjectRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::UpdateProjectRequest
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
Note:
When making an API call, you may pass UpdateProjectRequest data as a hash:
{
sample: {
size: 1,
type: "FIRST_N", # required, accepts FIRST_N, LAST_N, RANDOM
},
role_arn: "Arn", # required
name: "ProjectName", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the project to be updated.
-
#role_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM role to be assumed for this request.
-
#sample ⇒ Types::Sample
Represents the sample size and sampling type for DataBrew to use for interactive data analysis.
Instance Attribute Details
#name ⇒ String
The name of the project to be updated.
5220 5221 5222 5223 5224 5225 5226 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 5220 class UpdateProjectRequest < Struct.new( :sample, :role_arn, :name) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM role to be assumed for this request.
5220 5221 5222 5223 5224 5225 5226 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 5220 class UpdateProjectRequest < Struct.new( :sample, :role_arn, :name) SENSITIVE = [] include Aws::Structure end |
#sample ⇒ Types::Sample
Represents the sample size and sampling type for DataBrew to use for interactive data analysis.
5220 5221 5222 5223 5224 5225 5226 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 5220 class UpdateProjectRequest < Struct.new( :sample, :role_arn, :name) SENSITIVE = [] include Aws::Structure end |