Class: Aws::SageMaker::Types::S3StorageConfig
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::S3StorageConfig
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
The Amazon Simple Storage (Amazon S3) location and security configuration for ‘OfflineStore`.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #kms_key_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Web Services Key Management Service (KMS) key ARN of the key used to encrypt any objects written into the ‘OfflineStore` S3 location.
 - 
  
    
      #resolved_output_s3_uri  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The S3 path where offline records are written.
 - 
  
    
      #s3_uri  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The S3 URI, or location in Amazon S3, of ‘OfflineStore`.
 
Instance Attribute Details
#kms_key_id ⇒ String
The Amazon Web Services Key Management Service (KMS) key ARN of the key used to encrypt any objects written into the ‘OfflineStore` S3 location.
The IAM ‘roleARN` that is passed as a parameter to `CreateFeatureGroup` must have below permissions to the `KmsKeyId`:
- 
‘“kms:GenerateDataKey”`
 
^
      41900 41901 41902 41903 41904 41905 41906  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 41900 class S3StorageConfig < Struct.new( :s3_uri, :kms_key_id, :resolved_output_s3_uri) SENSITIVE = [] include Aws::Structure end  | 
  
#resolved_output_s3_uri ⇒ String
The S3 path where offline records are written.
      41900 41901 41902 41903 41904 41905 41906  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 41900 class S3StorageConfig < Struct.new( :s3_uri, :kms_key_id, :resolved_output_s3_uri) SENSITIVE = [] include Aws::Structure end  | 
  
#s3_uri ⇒ String
The S3 URI, or location in Amazon S3, of ‘OfflineStore`.
S3 URIs have a format similar to the following: ‘s3://example-bucket/prefix/`.
      41900 41901 41902 41903 41904 41905 41906  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 41900 class S3StorageConfig < Struct.new( :s3_uri, :kms_key_id, :resolved_output_s3_uri) SENSITIVE = [] include Aws::Structure end  |