Class: Aws::ServiceCatalog::Types::CreatePortfolioInput

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-servicecatalog/types.rb

Overview

Note:

When making an API call, you may pass CreatePortfolioInput data as a hash:

{
  accept_language: "AcceptLanguage",
  display_name: "PortfolioDisplayName", # required
  description: "PortfolioDescription",
  provider_name: "ProviderName", # required
  tags: [
    {
      key: "TagKey", # required
      value: "TagValue", # required
    },
  ],
  idempotency_token: "IdempotencyToken", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#accept_languageString

The language code.

  • ‘en` - English (default)

  • ‘jp` - Japanese

  • ‘zh` - Chinese

Returns:

  • (String)


716
717
718
719
720
721
722
723
724
# File 'lib/aws-sdk-servicecatalog/types.rb', line 716

class CreatePortfolioInput < Struct.new(
  :accept_language,
  :display_name,
  :description,
  :provider_name,
  :tags,
  :idempotency_token)
  include Aws::Structure
end

#descriptionString

The description of the portfolio.

Returns:

  • (String)


716
717
718
719
720
721
722
723
724
# File 'lib/aws-sdk-servicecatalog/types.rb', line 716

class CreatePortfolioInput < Struct.new(
  :accept_language,
  :display_name,
  :description,
  :provider_name,
  :tags,
  :idempotency_token)
  include Aws::Structure
end

#display_nameString

The name to use for display purposes.

Returns:

  • (String)


716
717
718
719
720
721
722
723
724
# File 'lib/aws-sdk-servicecatalog/types.rb', line 716

class CreatePortfolioInput < Struct.new(
  :accept_language,
  :display_name,
  :description,
  :provider_name,
  :tags,
  :idempotency_token)
  include Aws::Structure
end

#idempotency_tokenString

A unique identifier that you provide to ensure idempotency. If multiple requests differ only by the idempotency token, the same response is returned for each repeated request.

**A suitable default value is auto-generated.** You should normally not need to pass this option.

Returns:

  • (String)


716
717
718
719
720
721
722
723
724
# File 'lib/aws-sdk-servicecatalog/types.rb', line 716

class CreatePortfolioInput < Struct.new(
  :accept_language,
  :display_name,
  :description,
  :provider_name,
  :tags,
  :idempotency_token)
  include Aws::Structure
end

#provider_nameString

The name of the portfolio provider.

Returns:

  • (String)


716
717
718
719
720
721
722
723
724
# File 'lib/aws-sdk-servicecatalog/types.rb', line 716

class CreatePortfolioInput < Struct.new(
  :accept_language,
  :display_name,
  :description,
  :provider_name,
  :tags,
  :idempotency_token)
  include Aws::Structure
end

#tagsArray<Types::Tag>

One or more tags.

Returns:



716
717
718
719
720
721
722
723
724
# File 'lib/aws-sdk-servicecatalog/types.rb', line 716

class CreatePortfolioInput < Struct.new(
  :accept_language,
  :display_name,
  :description,
  :provider_name,
  :tags,
  :idempotency_token)
  include Aws::Structure
end