Class: Aws::CodeDeploy::Types::DeploymentStyle

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb

Overview

Information about the type of deployment, either in-place or blue/green, you want to run and whether to route deployment traffic behind a load balancer.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#deployment_optionString

Indicates whether to route deployment traffic behind a load balancer.

Returns:

  • (String)


1904
1905
1906
1907
1908
1909
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 1904

class DeploymentStyle < Struct.new(
  :deployment_type,
  :deployment_option)
  SENSITIVE = []
  include Aws::Structure
end

#deployment_typeString

Indicates whether to run an in-place deployment or a blue/green deployment.

Returns:

  • (String)


1904
1905
1906
1907
1908
1909
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 1904

class DeploymentStyle < Struct.new(
  :deployment_type,
  :deployment_option)
  SENSITIVE = []
  include Aws::Structure
end