Class: Aws::Lightsail::Types::ContainerServiceRegistryLogin
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Lightsail::Types::ContainerServiceRegistryLogin
 
- Defined in:
- gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb
Overview
Describes the sign-in credentials for the container image registry of an Amazon Lightsail account.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #expires_at  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The timestamp of when the container image registry sign-in credentials expire. 
- 
  
    
      #password  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The container service registry password to use to push container images to the container image registry of a Lightsail account. 
- 
  
    
      #registry  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The address to use to push container images to the container image registry of a Lightsail account. 
- 
  
    
      #username  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The container service registry username to use to push container images to the container image registry of a Lightsail account. 
Instance Attribute Details
#expires_at ⇒ Time
The timestamp of when the container image registry sign-in credentials expire.
The log in credentials expire 12 hours after they are created, at
which point you will need to create a new set of log in credentials
using the CreateContainerServiceRegistryLogin action.
| 2722 2723 2724 2725 2726 2727 2728 2729 | # File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 2722 class ContainerServiceRegistryLogin < Struct.new( :username, :password, :expires_at, :registry) SENSITIVE = [] include Aws::Structure end | 
#password ⇒ String
The container service registry password to use to push container images to the container image registry of a Lightsail account
| 2722 2723 2724 2725 2726 2727 2728 2729 | # File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 2722 class ContainerServiceRegistryLogin < Struct.new( :username, :password, :expires_at, :registry) SENSITIVE = [] include Aws::Structure end | 
#registry ⇒ String
The address to use to push container images to the container image registry of a Lightsail account.
| 2722 2723 2724 2725 2726 2727 2728 2729 | # File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 2722 class ContainerServiceRegistryLogin < Struct.new( :username, :password, :expires_at, :registry) SENSITIVE = [] include Aws::Structure end | 
#username ⇒ String
The container service registry username to use to push container images to the container image registry of a Lightsail account.
| 2722 2723 2724 2725 2726 2727 2728 2729 | # File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 2722 class ContainerServiceRegistryLogin < Struct.new( :username, :password, :expires_at, :registry) SENSITIVE = [] include Aws::Structure end |