hexsha stringlengths 40 40 | repo stringlengths 7 114 | path stringlengths 4 124 | license listlengths 1 9 | language stringclasses 1
value | identifier stringlengths 1 71 | return_type stringlengths 1 749 ⌀ | original_string stringlengths 76 22.7k | original_docstring stringlengths 16 7.61k | docstring stringlengths 16 2.47k | docstring_tokens listlengths 6 477 | code stringlengths 14 10.2k | code_tokens listlengths 6 996 | short_docstring stringlengths 2 644 | short_docstring_tokens listlengths 1 116 | comment listlengths 1 89 | parameters listlengths 0 64 | docstring_params dict |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
f14374c3eb815f831fa92d82eb78aeb66b90e329 | rapzo/pulumi-aws | sdk/python/pulumi_aws/cloudformation/stack_set.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | template_url | pulumi.Output[Optional[str]] | def template_url(self) -> pulumi.Output[Optional[str]]:
"""
String containing the location of a file containing the CloudFormation template body. The URL must point to a template that is located in an Amazon S3 bucket. Maximum location file size: 460,800 bytes. Conflicts with `template_body`.
""... |
String containing the location of a file containing the CloudFormation template body. The URL must point to a template that is located in an Amazon S3 bucket. Maximum location file size: 460,800 bytes. Conflicts with `template_body`.
| String containing the location of a file containing the CloudFormation template body. The URL must point to a template that is located in an Amazon S3 bucket. Maximum location file size: 460,800 bytes. | [
"String",
"containing",
"the",
"location",
"of",
"a",
"file",
"containing",
"the",
"CloudFormation",
"template",
"body",
".",
"The",
"URL",
"must",
"point",
"to",
"a",
"template",
"that",
"is",
"located",
"in",
"an",
"Amazon",
"S3",
"bucket",
".",
"Maximum",... | def template_url(self) -> pulumi.Output[Optional[str]]:
return pulumi.get(self, "template_url") | [
"def",
"template_url",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"template_url\"",
")"
] | String containing the location of a file containing the CloudFormation template body. | [
"String",
"containing",
"the",
"location",
"of",
"a",
"file",
"containing",
"the",
"CloudFormation",
"template",
"body",
"."
] | [
"\"\"\"\n String containing the location of a file containing the CloudFormation template body. The URL must point to a template that is located in an Amazon S3 bucket. Maximum location file size: 460,800 bytes. Conflicts with `template_body`.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
a4c1205798bee8cc14f72c36f0e64deb393e0817 | rapzo/pulumi-aws | sdk/python/pulumi_aws/iam/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | policy | Optional[str] | def policy(self) -> Optional[str]:
"""
Policy document as a JSON formatted string.
"""
return pulumi.get(self, "policy") |
Policy document as a JSON formatted string.
| Policy document as a JSON formatted string. | [
"Policy",
"document",
"as",
"a",
"JSON",
"formatted",
"string",
"."
] | def policy(self) -> Optional[str]:
return pulumi.get(self, "policy") | [
"def",
"policy",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"policy\"",
")"
] | Policy document as a JSON formatted string. | [
"Policy",
"document",
"as",
"a",
"JSON",
"formatted",
"string",
"."
] | [
"\"\"\"\n Policy document as a JSON formatted string.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
a4c1205798bee8cc14f72c36f0e64deb393e0817 | rapzo/pulumi-aws | sdk/python/pulumi_aws/iam/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | conditions | Optional[Sequence['outputs.GetPolicyDocumentStatementConditionResult']] | def conditions(self) -> Optional[Sequence['outputs.GetPolicyDocumentStatementConditionResult']]:
"""
Configuration block for a condition. Detailed below.
"""
return pulumi.get(self, "conditions") |
Configuration block for a condition. Detailed below.
| Configuration block for a condition. Detailed below. | [
"Configuration",
"block",
"for",
"a",
"condition",
".",
"Detailed",
"below",
"."
] | def conditions(self) -> Optional[Sequence['outputs.GetPolicyDocumentStatementConditionResult']]:
return pulumi.get(self, "conditions") | [
"def",
"conditions",
"(",
"self",
")",
"->",
"Optional",
"[",
"Sequence",
"[",
"'outputs.GetPolicyDocumentStatementConditionResult'",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"conditions\"",
")"
] | Configuration block for a condition. | [
"Configuration",
"block",
"for",
"a",
"condition",
"."
] | [
"\"\"\"\n Configuration block for a condition. Detailed below.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
a4c1205798bee8cc14f72c36f0e64deb393e0817 | rapzo/pulumi-aws | sdk/python/pulumi_aws/iam/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | effect | Optional[str] | def effect(self) -> Optional[str]:
"""
Whether this statement allows or denies the given actions. Valid values are `Allow` and `Deny`. Defaults to `Allow`.
"""
return pulumi.get(self, "effect") |
Whether this statement allows or denies the given actions. Valid values are `Allow` and `Deny`. Defaults to `Allow`.
| Whether this statement allows or denies the given actions. Valid values are `Allow` and `Deny`. Defaults to `Allow`. | [
"Whether",
"this",
"statement",
"allows",
"or",
"denies",
"the",
"given",
"actions",
".",
"Valid",
"values",
"are",
"`",
"Allow",
"`",
"and",
"`",
"Deny",
"`",
".",
"Defaults",
"to",
"`",
"Allow",
"`",
"."
] | def effect(self) -> Optional[str]:
return pulumi.get(self, "effect") | [
"def",
"effect",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"effect\"",
")"
] | Whether this statement allows or denies the given actions. | [
"Whether",
"this",
"statement",
"allows",
"or",
"denies",
"the",
"given",
"actions",
"."
] | [
"\"\"\"\n Whether this statement allows or denies the given actions. Valid values are `Allow` and `Deny`. Defaults to `Allow`.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
a4c1205798bee8cc14f72c36f0e64deb393e0817 | rapzo/pulumi-aws | sdk/python/pulumi_aws/iam/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | not_actions | Optional[Sequence[str]] | def not_actions(self) -> Optional[Sequence[str]]:
"""
List of actions that this statement does *not* apply to. Use to apply a policy statement to all actions *except* those listed.
"""
return pulumi.get(self, "not_actions") |
List of actions that this statement does *not* apply to. Use to apply a policy statement to all actions *except* those listed.
| List of actions that this statement does *not* apply to. Use to apply a policy statement to all actions *except* those listed. | [
"List",
"of",
"actions",
"that",
"this",
"statement",
"does",
"*",
"not",
"*",
"apply",
"to",
".",
"Use",
"to",
"apply",
"a",
"policy",
"statement",
"to",
"all",
"actions",
"*",
"except",
"*",
"those",
"listed",
"."
] | def not_actions(self) -> Optional[Sequence[str]]:
return pulumi.get(self, "not_actions") | [
"def",
"not_actions",
"(",
"self",
")",
"->",
"Optional",
"[",
"Sequence",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"not_actions\"",
")"
] | List of actions that this statement does *not* apply to. | [
"List",
"of",
"actions",
"that",
"this",
"statement",
"does",
"*",
"not",
"*",
"apply",
"to",
"."
] | [
"\"\"\"\n List of actions that this statement does *not* apply to. Use to apply a policy statement to all actions *except* those listed.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
a4c1205798bee8cc14f72c36f0e64deb393e0817 | rapzo/pulumi-aws | sdk/python/pulumi_aws/iam/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | not_principals | Optional[Sequence['outputs.GetPolicyDocumentStatementNotPrincipalResult']] | def not_principals(self) -> Optional[Sequence['outputs.GetPolicyDocumentStatementNotPrincipalResult']]:
"""
Like `principals` except these are principals that the statement does *not* apply to.
"""
return pulumi.get(self, "not_principals") |
Like `principals` except these are principals that the statement does *not* apply to.
| Like `principals` except these are principals that the statement does *not* apply to. | [
"Like",
"`",
"principals",
"`",
"except",
"these",
"are",
"principals",
"that",
"the",
"statement",
"does",
"*",
"not",
"*",
"apply",
"to",
"."
] | def not_principals(self) -> Optional[Sequence['outputs.GetPolicyDocumentStatementNotPrincipalResult']]:
return pulumi.get(self, "not_principals") | [
"def",
"not_principals",
"(",
"self",
")",
"->",
"Optional",
"[",
"Sequence",
"[",
"'outputs.GetPolicyDocumentStatementNotPrincipalResult'",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"not_principals\"",
")"
] | Like `principals` except these are principals that the statement does *not* apply to. | [
"Like",
"`",
"principals",
"`",
"except",
"these",
"are",
"principals",
"that",
"the",
"statement",
"does",
"*",
"not",
"*",
"apply",
"to",
"."
] | [
"\"\"\"\n Like `principals` except these are principals that the statement does *not* apply to.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
a4c1205798bee8cc14f72c36f0e64deb393e0817 | rapzo/pulumi-aws | sdk/python/pulumi_aws/iam/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | not_resources | Optional[Sequence[str]] | def not_resources(self) -> Optional[Sequence[str]]:
"""
List of resource ARNs that this statement does *not* apply to. Use to apply a policy statement to all resources *except* those listed.
"""
return pulumi.get(self, "not_resources") |
List of resource ARNs that this statement does *not* apply to. Use to apply a policy statement to all resources *except* those listed.
| List of resource ARNs that this statement does *not* apply to. Use to apply a policy statement to all resources *except* those listed. | [
"List",
"of",
"resource",
"ARNs",
"that",
"this",
"statement",
"does",
"*",
"not",
"*",
"apply",
"to",
".",
"Use",
"to",
"apply",
"a",
"policy",
"statement",
"to",
"all",
"resources",
"*",
"except",
"*",
"those",
"listed",
"."
] | def not_resources(self) -> Optional[Sequence[str]]:
return pulumi.get(self, "not_resources") | [
"def",
"not_resources",
"(",
"self",
")",
"->",
"Optional",
"[",
"Sequence",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"not_resources\"",
")"
] | List of resource ARNs that this statement does *not* apply to. | [
"List",
"of",
"resource",
"ARNs",
"that",
"this",
"statement",
"does",
"*",
"not",
"*",
"apply",
"to",
"."
] | [
"\"\"\"\n List of resource ARNs that this statement does *not* apply to. Use to apply a policy statement to all resources *except* those listed.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
a4c1205798bee8cc14f72c36f0e64deb393e0817 | rapzo/pulumi-aws | sdk/python/pulumi_aws/iam/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | principals | Optional[Sequence['outputs.GetPolicyDocumentStatementPrincipalResult']] | def principals(self) -> Optional[Sequence['outputs.GetPolicyDocumentStatementPrincipalResult']]:
"""
Configuration block for principals. Detailed below.
"""
return pulumi.get(self, "principals") |
Configuration block for principals. Detailed below.
| Configuration block for principals. Detailed below. | [
"Configuration",
"block",
"for",
"principals",
".",
"Detailed",
"below",
"."
] | def principals(self) -> Optional[Sequence['outputs.GetPolicyDocumentStatementPrincipalResult']]:
return pulumi.get(self, "principals") | [
"def",
"principals",
"(",
"self",
")",
"->",
"Optional",
"[",
"Sequence",
"[",
"'outputs.GetPolicyDocumentStatementPrincipalResult'",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"principals\"",
")"
] | Configuration block for principals. | [
"Configuration",
"block",
"for",
"principals",
"."
] | [
"\"\"\"\n Configuration block for principals. Detailed below.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
a4c1205798bee8cc14f72c36f0e64deb393e0817 | rapzo/pulumi-aws | sdk/python/pulumi_aws/iam/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | resources | Optional[Sequence[str]] | def resources(self) -> Optional[Sequence[str]]:
"""
List of resource ARNs that this statement applies to. This is required by AWS if used for an IAM policy.
"""
return pulumi.get(self, "resources") |
List of resource ARNs that this statement applies to. This is required by AWS if used for an IAM policy.
| List of resource ARNs that this statement applies to. This is required by AWS if used for an IAM policy. | [
"List",
"of",
"resource",
"ARNs",
"that",
"this",
"statement",
"applies",
"to",
".",
"This",
"is",
"required",
"by",
"AWS",
"if",
"used",
"for",
"an",
"IAM",
"policy",
"."
] | def resources(self) -> Optional[Sequence[str]]:
return pulumi.get(self, "resources") | [
"def",
"resources",
"(",
"self",
")",
"->",
"Optional",
"[",
"Sequence",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"resources\"",
")"
] | List of resource ARNs that this statement applies to. | [
"List",
"of",
"resource",
"ARNs",
"that",
"this",
"statement",
"applies",
"to",
"."
] | [
"\"\"\"\n List of resource ARNs that this statement applies to. This is required by AWS if used for an IAM policy.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
a4c1205798bee8cc14f72c36f0e64deb393e0817 | rapzo/pulumi-aws | sdk/python/pulumi_aws/iam/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | sid | Optional[str] | def sid(self) -> Optional[str]:
"""
Sid (statement ID) is an identifier for a policy statement.
"""
return pulumi.get(self, "sid") |
Sid (statement ID) is an identifier for a policy statement.
| Sid (statement ID) is an identifier for a policy statement. | [
"Sid",
"(",
"statement",
"ID",
")",
"is",
"an",
"identifier",
"for",
"a",
"policy",
"statement",
"."
] | def sid(self) -> Optional[str]:
return pulumi.get(self, "sid") | [
"def",
"sid",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"sid\"",
")"
] | Sid (statement ID) is an identifier for a policy statement. | [
"Sid",
"(",
"statement",
"ID",
")",
"is",
"an",
"identifier",
"for",
"a",
"policy",
"statement",
"."
] | [
"\"\"\"\n Sid (statement ID) is an identifier for a policy statement.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
a4c1205798bee8cc14f72c36f0e64deb393e0817 | rapzo/pulumi-aws | sdk/python/pulumi_aws/iam/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | test | str | def test(self) -> str:
"""
Name of the [IAM condition operator](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition_operators.html) to evaluate.
"""
return pulumi.get(self, "test") |
Name of the [IAM condition operator](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition_operators.html) to evaluate.
| Name of the [IAM condition operator] to evaluate. | [
"Name",
"of",
"the",
"[",
"IAM",
"condition",
"operator",
"]",
"to",
"evaluate",
"."
] | def test(self) -> str:
return pulumi.get(self, "test") | [
"def",
"test",
"(",
"self",
")",
"->",
"str",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"test\"",
")"
] | Name of the [IAM condition operator](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition_operators.html) to evaluate. | [
"Name",
"of",
"the",
"[",
"IAM",
"condition",
"operator",
"]",
"(",
"https",
":",
"//",
"docs",
".",
"aws",
".",
"amazon",
".",
"com",
"/",
"IAM",
"/",
"latest",
"/",
"UserGuide",
"/",
"reference_policies_elements_condition_operators",
".",
"html",
")",
"t... | [
"\"\"\"\n Name of the [IAM condition operator](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition_operators.html) to evaluate.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
a4c1205798bee8cc14f72c36f0e64deb393e0817 | rapzo/pulumi-aws | sdk/python/pulumi_aws/iam/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | variable | str | def variable(self) -> str:
"""
Name of a [Context Variable](http://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements.html#AvailableKeys) to apply the condition to. Context variables may either be standard AWS variables starting with `aws:` or service-specific variables prefixed with t... |
Name of a [Context Variable](http://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements.html#AvailableKeys) to apply the condition to. Context variables may either be standard AWS variables starting with `aws:` or service-specific variables prefixed with the service name.
| Name of a [Context Variable] to apply the condition to. Context variables may either be standard AWS variables starting with `aws:` or service-specific variables prefixed with the service name. | [
"Name",
"of",
"a",
"[",
"Context",
"Variable",
"]",
"to",
"apply",
"the",
"condition",
"to",
".",
"Context",
"variables",
"may",
"either",
"be",
"standard",
"AWS",
"variables",
"starting",
"with",
"`",
"aws",
":",
"`",
"or",
"service",
"-",
"specific",
"... | def variable(self) -> str:
return pulumi.get(self, "variable") | [
"def",
"variable",
"(",
"self",
")",
"->",
"str",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"variable\"",
")"
] | Name of a [Context Variable](http://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements.html#AvailableKeys) to apply the condition to. | [
"Name",
"of",
"a",
"[",
"Context",
"Variable",
"]",
"(",
"http",
":",
"//",
"docs",
".",
"aws",
".",
"amazon",
".",
"com",
"/",
"IAM",
"/",
"latest",
"/",
"UserGuide",
"/",
"reference_policies_elements",
".",
"html#AvailableKeys",
")",
"to",
"apply",
"th... | [
"\"\"\"\n Name of a [Context Variable](http://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements.html#AvailableKeys) to apply the condition to. Context variables may either be standard AWS variables starting with `aws:` or service-specific variables prefixed with the service name.\n ... | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
eca72f07e64d3a54b277f08f92112d3c9491bcf3 | rapzo/pulumi-aws | sdk/python/pulumi_aws/ec2/vpc_dhcp_options.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | domain_name | Optional[pulumi.Input[str]] | def domain_name(self) -> Optional[pulumi.Input[str]]:
"""
the suffix domain name to use by default when resolving non Fully Qualified Domain Names. In other words, this is what ends up being the `search` value in the `/etc/resolv.conf` file.
"""
return pulumi.get(self, "domain_name") |
the suffix domain name to use by default when resolving non Fully Qualified Domain Names. In other words, this is what ends up being the `search` value in the `/etc/resolv.conf` file.
| the suffix domain name to use by default when resolving non Fully Qualified Domain Names. In other words, this is what ends up being the `search` value in the `/etc/resolv.conf` file. | [
"the",
"suffix",
"domain",
"name",
"to",
"use",
"by",
"default",
"when",
"resolving",
"non",
"Fully",
"Qualified",
"Domain",
"Names",
".",
"In",
"other",
"words",
"this",
"is",
"what",
"ends",
"up",
"being",
"the",
"`",
"search",
"`",
"value",
"in",
"the... | def domain_name(self) -> Optional[pulumi.Input[str]]:
return pulumi.get(self, "domain_name") | [
"def",
"domain_name",
"(",
"self",
")",
"->",
"Optional",
"[",
"pulumi",
".",
"Input",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"domain_name\"",
")"
] | the suffix domain name to use by default when resolving non Fully Qualified Domain Names. | [
"the",
"suffix",
"domain",
"name",
"to",
"use",
"by",
"default",
"when",
"resolving",
"non",
"Fully",
"Qualified",
"Domain",
"Names",
"."
] | [
"\"\"\"\n the suffix domain name to use by default when resolving non Fully Qualified Domain Names. In other words, this is what ends up being the `search` value in the `/etc/resolv.conf` file.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
eca72f07e64d3a54b277f08f92112d3c9491bcf3 | rapzo/pulumi-aws | sdk/python/pulumi_aws/ec2/vpc_dhcp_options.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | netbios_name_servers | Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] | def netbios_name_servers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
"""
List of NETBIOS name servers.
"""
return pulumi.get(self, "netbios_name_servers") |
List of NETBIOS name servers.
| List of NETBIOS name servers. | [
"List",
"of",
"NETBIOS",
"name",
"servers",
"."
] | def netbios_name_servers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
return pulumi.get(self, "netbios_name_servers") | [
"def",
"netbios_name_servers",
"(",
"self",
")",
"->",
"Optional",
"[",
"pulumi",
".",
"Input",
"[",
"Sequence",
"[",
"pulumi",
".",
"Input",
"[",
"str",
"]",
"]",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"netbios_name_servers\"... | List of NETBIOS name servers. | [
"List",
"of",
"NETBIOS",
"name",
"servers",
"."
] | [
"\"\"\"\n List of NETBIOS name servers.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
eca72f07e64d3a54b277f08f92112d3c9491bcf3 | rapzo/pulumi-aws | sdk/python/pulumi_aws/ec2/vpc_dhcp_options.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | netbios_node_type | Optional[pulumi.Input[str]] | def netbios_node_type(self) -> Optional[pulumi.Input[str]]:
"""
The NetBIOS node type (1, 2, 4, or 8). AWS recommends to specify 2 since broadcast and multicast are not supported in their network. For more information about these node types, see [RFC 2132](http://www.ietf.org/rfc/rfc2132.txt).
"... |
The NetBIOS node type (1, 2, 4, or 8). AWS recommends to specify 2 since broadcast and multicast are not supported in their network. For more information about these node types, see [RFC 2132](http://www.ietf.org/rfc/rfc2132.txt).
| The NetBIOS node type (1, 2, 4, or 8). AWS recommends to specify 2 since broadcast and multicast are not supported in their network. For more information about these node types, see [RFC 2132]. | [
"The",
"NetBIOS",
"node",
"type",
"(",
"1",
"2",
"4",
"or",
"8",
")",
".",
"AWS",
"recommends",
"to",
"specify",
"2",
"since",
"broadcast",
"and",
"multicast",
"are",
"not",
"supported",
"in",
"their",
"network",
".",
"For",
"more",
"information",
"about... | def netbios_node_type(self) -> Optional[pulumi.Input[str]]:
return pulumi.get(self, "netbios_node_type") | [
"def",
"netbios_node_type",
"(",
"self",
")",
"->",
"Optional",
"[",
"pulumi",
".",
"Input",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"netbios_node_type\"",
")"
] | The NetBIOS node type (1, 2, 4, or 8). | [
"The",
"NetBIOS",
"node",
"type",
"(",
"1",
"2",
"4",
"or",
"8",
")",
"."
] | [
"\"\"\"\n The NetBIOS node type (1, 2, 4, or 8). AWS recommends to specify 2 since broadcast and multicast are not supported in their network. For more information about these node types, see [RFC 2132](http://www.ietf.org/rfc/rfc2132.txt).\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
eca72f07e64d3a54b277f08f92112d3c9491bcf3 | rapzo/pulumi-aws | sdk/python/pulumi_aws/ec2/vpc_dhcp_options.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | ntp_servers | Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] | def ntp_servers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
"""
List of NTP servers to configure.
"""
return pulumi.get(self, "ntp_servers") |
List of NTP servers to configure.
| List of NTP servers to configure. | [
"List",
"of",
"NTP",
"servers",
"to",
"configure",
"."
] | def ntp_servers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
return pulumi.get(self, "ntp_servers") | [
"def",
"ntp_servers",
"(",
"self",
")",
"->",
"Optional",
"[",
"pulumi",
".",
"Input",
"[",
"Sequence",
"[",
"pulumi",
".",
"Input",
"[",
"str",
"]",
"]",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"ntp_servers\"",
")"
] | List of NTP servers to configure. | [
"List",
"of",
"NTP",
"servers",
"to",
"configure",
"."
] | [
"\"\"\"\n List of NTP servers to configure.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
eca72f07e64d3a54b277f08f92112d3c9491bcf3 | rapzo/pulumi-aws | sdk/python/pulumi_aws/ec2/vpc_dhcp_options.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | domain_name | pulumi.Output[Optional[str]] | def domain_name(self) -> pulumi.Output[Optional[str]]:
"""
the suffix domain name to use by default when resolving non Fully Qualified Domain Names. In other words, this is what ends up being the `search` value in the `/etc/resolv.conf` file.
"""
return pulumi.get(self, "domain_name") |
the suffix domain name to use by default when resolving non Fully Qualified Domain Names. In other words, this is what ends up being the `search` value in the `/etc/resolv.conf` file.
| the suffix domain name to use by default when resolving non Fully Qualified Domain Names. In other words, this is what ends up being the `search` value in the `/etc/resolv.conf` file. | [
"the",
"suffix",
"domain",
"name",
"to",
"use",
"by",
"default",
"when",
"resolving",
"non",
"Fully",
"Qualified",
"Domain",
"Names",
".",
"In",
"other",
"words",
"this",
"is",
"what",
"ends",
"up",
"being",
"the",
"`",
"search",
"`",
"value",
"in",
"the... | def domain_name(self) -> pulumi.Output[Optional[str]]:
return pulumi.get(self, "domain_name") | [
"def",
"domain_name",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"domain_name\"",
")"
] | the suffix domain name to use by default when resolving non Fully Qualified Domain Names. | [
"the",
"suffix",
"domain",
"name",
"to",
"use",
"by",
"default",
"when",
"resolving",
"non",
"Fully",
"Qualified",
"Domain",
"Names",
"."
] | [
"\"\"\"\n the suffix domain name to use by default when resolving non Fully Qualified Domain Names. In other words, this is what ends up being the `search` value in the `/etc/resolv.conf` file.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
eca72f07e64d3a54b277f08f92112d3c9491bcf3 | rapzo/pulumi-aws | sdk/python/pulumi_aws/ec2/vpc_dhcp_options.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | domain_name_servers | pulumi.Output[Optional[Sequence[str]]] | def domain_name_servers(self) -> pulumi.Output[Optional[Sequence[str]]]:
"""
List of name servers to configure in `/etc/resolv.conf`. If you want to use the default AWS nameservers you should set this to `AmazonProvidedDNS`.
"""
return pulumi.get(self, "domain_name_servers") |
List of name servers to configure in `/etc/resolv.conf`. If you want to use the default AWS nameservers you should set this to `AmazonProvidedDNS`.
| List of name servers to configure in `/etc/resolv.conf`. If you want to use the default AWS nameservers you should set this to `AmazonProvidedDNS`. | [
"List",
"of",
"name",
"servers",
"to",
"configure",
"in",
"`",
"/",
"etc",
"/",
"resolv",
".",
"conf",
"`",
".",
"If",
"you",
"want",
"to",
"use",
"the",
"default",
"AWS",
"nameservers",
"you",
"should",
"set",
"this",
"to",
"`",
"AmazonProvidedDNS",
"... | def domain_name_servers(self) -> pulumi.Output[Optional[Sequence[str]]]:
return pulumi.get(self, "domain_name_servers") | [
"def",
"domain_name_servers",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"Sequence",
"[",
"str",
"]",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"domain_name_servers\"",
")"
] | List of name servers to configure in `/etc/resolv.conf`. | [
"List",
"of",
"name",
"servers",
"to",
"configure",
"in",
"`",
"/",
"etc",
"/",
"resolv",
".",
"conf",
"`",
"."
] | [
"\"\"\"\n List of name servers to configure in `/etc/resolv.conf`. If you want to use the default AWS nameservers you should set this to `AmazonProvidedDNS`.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
eca72f07e64d3a54b277f08f92112d3c9491bcf3 | rapzo/pulumi-aws | sdk/python/pulumi_aws/ec2/vpc_dhcp_options.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | netbios_name_servers | pulumi.Output[Optional[Sequence[str]]] | def netbios_name_servers(self) -> pulumi.Output[Optional[Sequence[str]]]:
"""
List of NETBIOS name servers.
"""
return pulumi.get(self, "netbios_name_servers") |
List of NETBIOS name servers.
| List of NETBIOS name servers. | [
"List",
"of",
"NETBIOS",
"name",
"servers",
"."
] | def netbios_name_servers(self) -> pulumi.Output[Optional[Sequence[str]]]:
return pulumi.get(self, "netbios_name_servers") | [
"def",
"netbios_name_servers",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"Sequence",
"[",
"str",
"]",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"netbios_name_servers\"",
")"
] | List of NETBIOS name servers. | [
"List",
"of",
"NETBIOS",
"name",
"servers",
"."
] | [
"\"\"\"\n List of NETBIOS name servers.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
eca72f07e64d3a54b277f08f92112d3c9491bcf3 | rapzo/pulumi-aws | sdk/python/pulumi_aws/ec2/vpc_dhcp_options.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | netbios_node_type | pulumi.Output[Optional[str]] | def netbios_node_type(self) -> pulumi.Output[Optional[str]]:
"""
The NetBIOS node type (1, 2, 4, or 8). AWS recommends to specify 2 since broadcast and multicast are not supported in their network. For more information about these node types, see [RFC 2132](http://www.ietf.org/rfc/rfc2132.txt).
... |
The NetBIOS node type (1, 2, 4, or 8). AWS recommends to specify 2 since broadcast and multicast are not supported in their network. For more information about these node types, see [RFC 2132](http://www.ietf.org/rfc/rfc2132.txt).
| The NetBIOS node type (1, 2, 4, or 8). AWS recommends to specify 2 since broadcast and multicast are not supported in their network. For more information about these node types, see [RFC 2132]. | [
"The",
"NetBIOS",
"node",
"type",
"(",
"1",
"2",
"4",
"or",
"8",
")",
".",
"AWS",
"recommends",
"to",
"specify",
"2",
"since",
"broadcast",
"and",
"multicast",
"are",
"not",
"supported",
"in",
"their",
"network",
".",
"For",
"more",
"information",
"about... | def netbios_node_type(self) -> pulumi.Output[Optional[str]]:
return pulumi.get(self, "netbios_node_type") | [
"def",
"netbios_node_type",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"netbios_node_type\"",
")"
] | The NetBIOS node type (1, 2, 4, or 8). | [
"The",
"NetBIOS",
"node",
"type",
"(",
"1",
"2",
"4",
"or",
"8",
")",
"."
] | [
"\"\"\"\n The NetBIOS node type (1, 2, 4, or 8). AWS recommends to specify 2 since broadcast and multicast are not supported in their network. For more information about these node types, see [RFC 2132](http://www.ietf.org/rfc/rfc2132.txt).\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
eca72f07e64d3a54b277f08f92112d3c9491bcf3 | rapzo/pulumi-aws | sdk/python/pulumi_aws/ec2/vpc_dhcp_options.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | ntp_servers | pulumi.Output[Optional[Sequence[str]]] | def ntp_servers(self) -> pulumi.Output[Optional[Sequence[str]]]:
"""
List of NTP servers to configure.
"""
return pulumi.get(self, "ntp_servers") |
List of NTP servers to configure.
| List of NTP servers to configure. | [
"List",
"of",
"NTP",
"servers",
"to",
"configure",
"."
] | def ntp_servers(self) -> pulumi.Output[Optional[Sequence[str]]]:
return pulumi.get(self, "ntp_servers") | [
"def",
"ntp_servers",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"Sequence",
"[",
"str",
"]",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"ntp_servers\"",
")"
] | List of NTP servers to configure. | [
"List",
"of",
"NTP",
"servers",
"to",
"configure",
"."
] | [
"\"\"\"\n List of NTP servers to configure.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
e43f74d44dcc7b6fb237476b93908745aaba7db1 | rapzo/pulumi-aws | sdk/python/pulumi_aws/imagebuilder/component.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | change_description | Optional[pulumi.Input[str]] | def change_description(self) -> Optional[pulumi.Input[str]]:
"""
Change description of the component.
"""
return pulumi.get(self, "change_description") |
Change description of the component.
| Change description of the component. | [
"Change",
"description",
"of",
"the",
"component",
"."
] | def change_description(self) -> Optional[pulumi.Input[str]]:
return pulumi.get(self, "change_description") | [
"def",
"change_description",
"(",
"self",
")",
"->",
"Optional",
"[",
"pulumi",
".",
"Input",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"change_description\"",
")"
] | Change description of the component. | [
"Change",
"description",
"of",
"the",
"component",
"."
] | [
"\"\"\"\n Change description of the component.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
e43f74d44dcc7b6fb237476b93908745aaba7db1 | rapzo/pulumi-aws | sdk/python/pulumi_aws/imagebuilder/component.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | supported_os_versions | Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] | def supported_os_versions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
"""
Set of Operating Systems (OS) supported by the component.
"""
return pulumi.get(self, "supported_os_versions") |
Set of Operating Systems (OS) supported by the component.
| Set of Operating Systems (OS) supported by the component. | [
"Set",
"of",
"Operating",
"Systems",
"(",
"OS",
")",
"supported",
"by",
"the",
"component",
"."
] | def supported_os_versions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
return pulumi.get(self, "supported_os_versions") | [
"def",
"supported_os_versions",
"(",
"self",
")",
"->",
"Optional",
"[",
"pulumi",
".",
"Input",
"[",
"Sequence",
"[",
"pulumi",
".",
"Input",
"[",
"str",
"]",
"]",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"supported_os_versions... | Set of Operating Systems (OS) supported by the component. | [
"Set",
"of",
"Operating",
"Systems",
"(",
"OS",
")",
"supported",
"by",
"the",
"component",
"."
] | [
"\"\"\"\n Set of Operating Systems (OS) supported by the component.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
e43f74d44dcc7b6fb237476b93908745aaba7db1 | rapzo/pulumi-aws | sdk/python/pulumi_aws/imagebuilder/component.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | date_created | Optional[pulumi.Input[str]] | def date_created(self) -> Optional[pulumi.Input[str]]:
"""
Date the component was created.
"""
return pulumi.get(self, "date_created") |
Date the component was created.
| Date the component was created. | [
"Date",
"the",
"component",
"was",
"created",
"."
] | def date_created(self) -> Optional[pulumi.Input[str]]:
return pulumi.get(self, "date_created") | [
"def",
"date_created",
"(",
"self",
")",
"->",
"Optional",
"[",
"pulumi",
".",
"Input",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"date_created\"",
")"
] | Date the component was created. | [
"Date",
"the",
"component",
"was",
"created",
"."
] | [
"\"\"\"\n Date the component was created.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
e43f74d44dcc7b6fb237476b93908745aaba7db1 | rapzo/pulumi-aws | sdk/python/pulumi_aws/imagebuilder/component.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | change_description | pulumi.Output[Optional[str]] | def change_description(self) -> pulumi.Output[Optional[str]]:
"""
Change description of the component.
"""
return pulumi.get(self, "change_description") |
Change description of the component.
| Change description of the component. | [
"Change",
"description",
"of",
"the",
"component",
"."
] | def change_description(self) -> pulumi.Output[Optional[str]]:
return pulumi.get(self, "change_description") | [
"def",
"change_description",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"change_description\"",
")"
] | Change description of the component. | [
"Change",
"description",
"of",
"the",
"component",
"."
] | [
"\"\"\"\n Change description of the component.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
e43f74d44dcc7b6fb237476b93908745aaba7db1 | rapzo/pulumi-aws | sdk/python/pulumi_aws/imagebuilder/component.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | data | pulumi.Output[str] | def data(self) -> pulumi.Output[str]:
"""
Inline YAML string with data of the component. Exactly one of `data` and `uri` can be specified. the provider will only perform drift detection of its value when present in a configuration.
"""
return pulumi.get(self, "data") |
Inline YAML string with data of the component. Exactly one of `data` and `uri` can be specified. the provider will only perform drift detection of its value when present in a configuration.
| Inline YAML string with data of the component. Exactly one of `data` and `uri` can be specified. the provider will only perform drift detection of its value when present in a configuration. | [
"Inline",
"YAML",
"string",
"with",
"data",
"of",
"the",
"component",
".",
"Exactly",
"one",
"of",
"`",
"data",
"`",
"and",
"`",
"uri",
"`",
"can",
"be",
"specified",
".",
"the",
"provider",
"will",
"only",
"perform",
"drift",
"detection",
"of",
"its",
... | def data(self) -> pulumi.Output[str]:
return pulumi.get(self, "data") | [
"def",
"data",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"data\"",
")"
] | Inline YAML string with data of the component. | [
"Inline",
"YAML",
"string",
"with",
"data",
"of",
"the",
"component",
"."
] | [
"\"\"\"\n Inline YAML string with data of the component. Exactly one of `data` and `uri` can be specified. the provider will only perform drift detection of its value when present in a configuration.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
e43f74d44dcc7b6fb237476b93908745aaba7db1 | rapzo/pulumi-aws | sdk/python/pulumi_aws/imagebuilder/component.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | date_created | pulumi.Output[str] | def date_created(self) -> pulumi.Output[str]:
"""
Date the component was created.
"""
return pulumi.get(self, "date_created") |
Date the component was created.
| Date the component was created. | [
"Date",
"the",
"component",
"was",
"created",
"."
] | def date_created(self) -> pulumi.Output[str]:
return pulumi.get(self, "date_created") | [
"def",
"date_created",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"date_created\"",
")"
] | Date the component was created. | [
"Date",
"the",
"component",
"was",
"created",
"."
] | [
"\"\"\"\n Date the component was created.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
e43f74d44dcc7b6fb237476b93908745aaba7db1 | rapzo/pulumi-aws | sdk/python/pulumi_aws/imagebuilder/component.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | encrypted | pulumi.Output[bool] | def encrypted(self) -> pulumi.Output[bool]:
"""
Encryption status of the component.
"""
return pulumi.get(self, "encrypted") |
Encryption status of the component.
| Encryption status of the component. | [
"Encryption",
"status",
"of",
"the",
"component",
"."
] | def encrypted(self) -> pulumi.Output[bool]:
return pulumi.get(self, "encrypted") | [
"def",
"encrypted",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"bool",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"encrypted\"",
")"
] | Encryption status of the component. | [
"Encryption",
"status",
"of",
"the",
"component",
"."
] | [
"\"\"\"\n Encryption status of the component.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
e43f74d44dcc7b6fb237476b93908745aaba7db1 | rapzo/pulumi-aws | sdk/python/pulumi_aws/imagebuilder/component.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | supported_os_versions | pulumi.Output[Optional[Sequence[str]]] | def supported_os_versions(self) -> pulumi.Output[Optional[Sequence[str]]]:
"""
Set of Operating Systems (OS) supported by the component.
"""
return pulumi.get(self, "supported_os_versions") |
Set of Operating Systems (OS) supported by the component.
| Set of Operating Systems (OS) supported by the component. | [
"Set",
"of",
"Operating",
"Systems",
"(",
"OS",
")",
"supported",
"by",
"the",
"component",
"."
] | def supported_os_versions(self) -> pulumi.Output[Optional[Sequence[str]]]:
return pulumi.get(self, "supported_os_versions") | [
"def",
"supported_os_versions",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"Sequence",
"[",
"str",
"]",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"supported_os_versions\"",
")"
] | Set of Operating Systems (OS) supported by the component. | [
"Set",
"of",
"Operating",
"Systems",
"(",
"OS",
")",
"supported",
"by",
"the",
"component",
"."
] | [
"\"\"\"\n Set of Operating Systems (OS) supported by the component.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
e43f74d44dcc7b6fb237476b93908745aaba7db1 | rapzo/pulumi-aws | sdk/python/pulumi_aws/imagebuilder/component.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | uri | pulumi.Output[Optional[str]] | def uri(self) -> pulumi.Output[Optional[str]]:
"""
S3 URI with data of the component. Exactly one of `data` and `uri` can be specified.
"""
return pulumi.get(self, "uri") |
S3 URI with data of the component. Exactly one of `data` and `uri` can be specified.
| S3 URI with data of the component. Exactly one of `data` and `uri` can be specified. | [
"S3",
"URI",
"with",
"data",
"of",
"the",
"component",
".",
"Exactly",
"one",
"of",
"`",
"data",
"`",
"and",
"`",
"uri",
"`",
"can",
"be",
"specified",
"."
] | def uri(self) -> pulumi.Output[Optional[str]]:
return pulumi.get(self, "uri") | [
"def",
"uri",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"uri\"",
")"
] | S3 URI with data of the component. | [
"S3",
"URI",
"with",
"data",
"of",
"the",
"component",
"."
] | [
"\"\"\"\n S3 URI with data of the component. Exactly one of `data` and `uri` can be specified.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
9a6a0a12356308486f7e28d94cc349301844718a | rapzo/pulumi-aws | sdk/python/pulumi_aws/ec2/nat_gateway.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | allocation_id | Optional[pulumi.Input[str]] | def allocation_id(self) -> Optional[pulumi.Input[str]]:
"""
The Allocation ID of the Elastic IP address for the gateway. Required for `connectivity_type` of `public`.
"""
return pulumi.get(self, "allocation_id") |
The Allocation ID of the Elastic IP address for the gateway. Required for `connectivity_type` of `public`.
| The Allocation ID of the Elastic IP address for the gateway. Required for `connectivity_type` of `public`. | [
"The",
"Allocation",
"ID",
"of",
"the",
"Elastic",
"IP",
"address",
"for",
"the",
"gateway",
".",
"Required",
"for",
"`",
"connectivity_type",
"`",
"of",
"`",
"public",
"`",
"."
] | def allocation_id(self) -> Optional[pulumi.Input[str]]:
return pulumi.get(self, "allocation_id") | [
"def",
"allocation_id",
"(",
"self",
")",
"->",
"Optional",
"[",
"pulumi",
".",
"Input",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"allocation_id\"",
")"
] | The Allocation ID of the Elastic IP address for the gateway. | [
"The",
"Allocation",
"ID",
"of",
"the",
"Elastic",
"IP",
"address",
"for",
"the",
"gateway",
"."
] | [
"\"\"\"\n The Allocation ID of the Elastic IP address for the gateway. Required for `connectivity_type` of `public`.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
9a6a0a12356308486f7e28d94cc349301844718a | rapzo/pulumi-aws | sdk/python/pulumi_aws/ec2/nat_gateway.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | network_interface_id | Optional[pulumi.Input[str]] | def network_interface_id(self) -> Optional[pulumi.Input[str]]:
"""
The ENI ID of the network interface created by the NAT gateway.
"""
return pulumi.get(self, "network_interface_id") |
The ENI ID of the network interface created by the NAT gateway.
| The ENI ID of the network interface created by the NAT gateway. | [
"The",
"ENI",
"ID",
"of",
"the",
"network",
"interface",
"created",
"by",
"the",
"NAT",
"gateway",
"."
] | def network_interface_id(self) -> Optional[pulumi.Input[str]]:
return pulumi.get(self, "network_interface_id") | [
"def",
"network_interface_id",
"(",
"self",
")",
"->",
"Optional",
"[",
"pulumi",
".",
"Input",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"network_interface_id\"",
")"
] | The ENI ID of the network interface created by the NAT gateway. | [
"The",
"ENI",
"ID",
"of",
"the",
"network",
"interface",
"created",
"by",
"the",
"NAT",
"gateway",
"."
] | [
"\"\"\"\n The ENI ID of the network interface created by the NAT gateway.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
9a6a0a12356308486f7e28d94cc349301844718a | rapzo/pulumi-aws | sdk/python/pulumi_aws/ec2/nat_gateway.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | public_ip | Optional[pulumi.Input[str]] | def public_ip(self) -> Optional[pulumi.Input[str]]:
"""
The public IP address of the NAT Gateway.
"""
return pulumi.get(self, "public_ip") |
The public IP address of the NAT Gateway.
| The public IP address of the NAT Gateway. | [
"The",
"public",
"IP",
"address",
"of",
"the",
"NAT",
"Gateway",
"."
] | def public_ip(self) -> Optional[pulumi.Input[str]]:
return pulumi.get(self, "public_ip") | [
"def",
"public_ip",
"(",
"self",
")",
"->",
"Optional",
"[",
"pulumi",
".",
"Input",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"public_ip\"",
")"
] | The public IP address of the NAT Gateway. | [
"The",
"public",
"IP",
"address",
"of",
"the",
"NAT",
"Gateway",
"."
] | [
"\"\"\"\n The public IP address of the NAT Gateway.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
9a6a0a12356308486f7e28d94cc349301844718a | rapzo/pulumi-aws | sdk/python/pulumi_aws/ec2/nat_gateway.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | allocation_id | pulumi.Output[Optional[str]] | def allocation_id(self) -> pulumi.Output[Optional[str]]:
"""
The Allocation ID of the Elastic IP address for the gateway. Required for `connectivity_type` of `public`.
"""
return pulumi.get(self, "allocation_id") |
The Allocation ID of the Elastic IP address for the gateway. Required for `connectivity_type` of `public`.
| The Allocation ID of the Elastic IP address for the gateway. Required for `connectivity_type` of `public`. | [
"The",
"Allocation",
"ID",
"of",
"the",
"Elastic",
"IP",
"address",
"for",
"the",
"gateway",
".",
"Required",
"for",
"`",
"connectivity_type",
"`",
"of",
"`",
"public",
"`",
"."
] | def allocation_id(self) -> pulumi.Output[Optional[str]]:
return pulumi.get(self, "allocation_id") | [
"def",
"allocation_id",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"allocation_id\"",
")"
] | The Allocation ID of the Elastic IP address for the gateway. | [
"The",
"Allocation",
"ID",
"of",
"the",
"Elastic",
"IP",
"address",
"for",
"the",
"gateway",
"."
] | [
"\"\"\"\n The Allocation ID of the Elastic IP address for the gateway. Required for `connectivity_type` of `public`.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
9a6a0a12356308486f7e28d94cc349301844718a | rapzo/pulumi-aws | sdk/python/pulumi_aws/ec2/nat_gateway.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | network_interface_id | pulumi.Output[str] | def network_interface_id(self) -> pulumi.Output[str]:
"""
The ENI ID of the network interface created by the NAT gateway.
"""
return pulumi.get(self, "network_interface_id") |
The ENI ID of the network interface created by the NAT gateway.
| The ENI ID of the network interface created by the NAT gateway. | [
"The",
"ENI",
"ID",
"of",
"the",
"network",
"interface",
"created",
"by",
"the",
"NAT",
"gateway",
"."
] | def network_interface_id(self) -> pulumi.Output[str]:
return pulumi.get(self, "network_interface_id") | [
"def",
"network_interface_id",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"network_interface_id\"",
")"
] | The ENI ID of the network interface created by the NAT gateway. | [
"The",
"ENI",
"ID",
"of",
"the",
"network",
"interface",
"created",
"by",
"the",
"NAT",
"gateway",
"."
] | [
"\"\"\"\n The ENI ID of the network interface created by the NAT gateway.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
9a6a0a12356308486f7e28d94cc349301844718a | rapzo/pulumi-aws | sdk/python/pulumi_aws/ec2/nat_gateway.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | private_ip | pulumi.Output[str] | def private_ip(self) -> pulumi.Output[str]:
"""
The private IP address of the NAT Gateway.
"""
return pulumi.get(self, "private_ip") |
The private IP address of the NAT Gateway.
| The private IP address of the NAT Gateway. | [
"The",
"private",
"IP",
"address",
"of",
"the",
"NAT",
"Gateway",
"."
] | def private_ip(self) -> pulumi.Output[str]:
return pulumi.get(self, "private_ip") | [
"def",
"private_ip",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"private_ip\"",
")"
] | The private IP address of the NAT Gateway. | [
"The",
"private",
"IP",
"address",
"of",
"the",
"NAT",
"Gateway",
"."
] | [
"\"\"\"\n The private IP address of the NAT Gateway.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
4ad0430de61c05ce67597a5875c1c4121d538c68 | rapzo/pulumi-aws | sdk/python/pulumi_aws/lambda_/layer_version.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | layer_name | pulumi.Input[str] | def layer_name(self) -> pulumi.Input[str]:
"""
A unique name for your Lambda Layer
"""
return pulumi.get(self, "layer_name") |
A unique name for your Lambda Layer
| A unique name for your Lambda Layer | [
"A",
"unique",
"name",
"for",
"your",
"Lambda",
"Layer"
] | def layer_name(self) -> pulumi.Input[str]:
return pulumi.get(self, "layer_name") | [
"def",
"layer_name",
"(",
"self",
")",
"->",
"pulumi",
".",
"Input",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"layer_name\"",
")"
] | A unique name for your Lambda Layer | [
"A",
"unique",
"name",
"for",
"your",
"Lambda",
"Layer"
] | [
"\"\"\"\n A unique name for your Lambda Layer\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
4ad0430de61c05ce67597a5875c1c4121d538c68 | rapzo/pulumi-aws | sdk/python/pulumi_aws/lambda_/layer_version.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | compatible_runtimes | Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] | def compatible_runtimes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
"""
A list of [Runtimes](https://docs.aws.amazon.com/lambda/latest/dg/API_PublishLayerVersion.html#SSS-PublishLayerVersion-request-CompatibleRuntimes) this layer is compatible with. Up to 5 runtimes can be specified.
... |
A list of [Runtimes](https://docs.aws.amazon.com/lambda/latest/dg/API_PublishLayerVersion.html#SSS-PublishLayerVersion-request-CompatibleRuntimes) this layer is compatible with. Up to 5 runtimes can be specified.
| A list of [Runtimes] this layer is compatible with. Up to 5 runtimes can be specified. | [
"A",
"list",
"of",
"[",
"Runtimes",
"]",
"this",
"layer",
"is",
"compatible",
"with",
".",
"Up",
"to",
"5",
"runtimes",
"can",
"be",
"specified",
"."
] | def compatible_runtimes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
return pulumi.get(self, "compatible_runtimes") | [
"def",
"compatible_runtimes",
"(",
"self",
")",
"->",
"Optional",
"[",
"pulumi",
".",
"Input",
"[",
"Sequence",
"[",
"pulumi",
".",
"Input",
"[",
"str",
"]",
"]",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"compatible_runtimes\"",... | A list of [Runtimes](https://docs.aws.amazon.com/lambda/latest/dg/API_PublishLayerVersion.html#SSS-PublishLayerVersion-request-CompatibleRuntimes) this layer is compatible with. | [
"A",
"list",
"of",
"[",
"Runtimes",
"]",
"(",
"https",
":",
"//",
"docs",
".",
"aws",
".",
"amazon",
".",
"com",
"/",
"lambda",
"/",
"latest",
"/",
"dg",
"/",
"API_PublishLayerVersion",
".",
"html#SSS",
"-",
"PublishLayerVersion",
"-",
"request",
"-",
... | [
"\"\"\"\n A list of [Runtimes](https://docs.aws.amazon.com/lambda/latest/dg/API_PublishLayerVersion.html#SSS-PublishLayerVersion-request-CompatibleRuntimes) this layer is compatible with. Up to 5 runtimes can be specified.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
4ad0430de61c05ce67597a5875c1c4121d538c68 | rapzo/pulumi-aws | sdk/python/pulumi_aws/lambda_/layer_version.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | license_info | Optional[pulumi.Input[str]] | def license_info(self) -> Optional[pulumi.Input[str]]:
"""
License info for your Lambda Layer. See [License Info](https://docs.aws.amazon.com/lambda/latest/dg/API_PublishLayerVersion.html#SSS-PublishLayerVersion-request-LicenseInfo).
"""
return pulumi.get(self, "license_info") |
License info for your Lambda Layer. See [License Info](https://docs.aws.amazon.com/lambda/latest/dg/API_PublishLayerVersion.html#SSS-PublishLayerVersion-request-LicenseInfo).
| License info for your Lambda Layer. See [License Info]. | [
"License",
"info",
"for",
"your",
"Lambda",
"Layer",
".",
"See",
"[",
"License",
"Info",
"]",
"."
] | def license_info(self) -> Optional[pulumi.Input[str]]:
return pulumi.get(self, "license_info") | [
"def",
"license_info",
"(",
"self",
")",
"->",
"Optional",
"[",
"pulumi",
".",
"Input",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"license_info\"",
")"
] | License info for your Lambda Layer. | [
"License",
"info",
"for",
"your",
"Lambda",
"Layer",
"."
] | [
"\"\"\"\n License info for your Lambda Layer. See [License Info](https://docs.aws.amazon.com/lambda/latest/dg/API_PublishLayerVersion.html#SSS-PublishLayerVersion-request-LicenseInfo).\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
4ad0430de61c05ce67597a5875c1c4121d538c68 | rapzo/pulumi-aws | sdk/python/pulumi_aws/lambda_/layer_version.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | s3_bucket | Optional[pulumi.Input[str]] | def s3_bucket(self) -> Optional[pulumi.Input[str]]:
"""
The S3 bucket location containing the function's deployment package. Conflicts with `filename`. This bucket must reside in the same AWS region where you are creating the Lambda function.
"""
return pulumi.get(self, "s3_bucket") |
The S3 bucket location containing the function's deployment package. Conflicts with `filename`. This bucket must reside in the same AWS region where you are creating the Lambda function.
| The S3 bucket location containing the function's deployment package. Conflicts with `filename`. This bucket must reside in the same AWS region where you are creating the Lambda function. | [
"The",
"S3",
"bucket",
"location",
"containing",
"the",
"function",
"'",
"s",
"deployment",
"package",
".",
"Conflicts",
"with",
"`",
"filename",
"`",
".",
"This",
"bucket",
"must",
"reside",
"in",
"the",
"same",
"AWS",
"region",
"where",
"you",
"are",
"cr... | def s3_bucket(self) -> Optional[pulumi.Input[str]]:
return pulumi.get(self, "s3_bucket") | [
"def",
"s3_bucket",
"(",
"self",
")",
"->",
"Optional",
"[",
"pulumi",
".",
"Input",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"s3_bucket\"",
")"
] | The S3 bucket location containing the function's deployment package. | [
"The",
"S3",
"bucket",
"location",
"containing",
"the",
"function",
"'",
"s",
"deployment",
"package",
"."
] | [
"\"\"\"\n The S3 bucket location containing the function's deployment package. Conflicts with `filename`. This bucket must reside in the same AWS region where you are creating the Lambda function.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
4ad0430de61c05ce67597a5875c1c4121d538c68 | rapzo/pulumi-aws | sdk/python/pulumi_aws/lambda_/layer_version.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | s3_key | Optional[pulumi.Input[str]] | def s3_key(self) -> Optional[pulumi.Input[str]]:
"""
The S3 key of an object containing the function's deployment package. Conflicts with `filename`.
"""
return pulumi.get(self, "s3_key") |
The S3 key of an object containing the function's deployment package. Conflicts with `filename`.
| The S3 key of an object containing the function's deployment package. Conflicts with `filename`. | [
"The",
"S3",
"key",
"of",
"an",
"object",
"containing",
"the",
"function",
"'",
"s",
"deployment",
"package",
".",
"Conflicts",
"with",
"`",
"filename",
"`",
"."
] | def s3_key(self) -> Optional[pulumi.Input[str]]:
return pulumi.get(self, "s3_key") | [
"def",
"s3_key",
"(",
"self",
")",
"->",
"Optional",
"[",
"pulumi",
".",
"Input",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"s3_key\"",
")"
] | The S3 key of an object containing the function's deployment package. | [
"The",
"S3",
"key",
"of",
"an",
"object",
"containing",
"the",
"function",
"'",
"s",
"deployment",
"package",
"."
] | [
"\"\"\"\n The S3 key of an object containing the function's deployment package. Conflicts with `filename`.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
4ad0430de61c05ce67597a5875c1c4121d538c68 | rapzo/pulumi-aws | sdk/python/pulumi_aws/lambda_/layer_version.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | s3_object_version | Optional[pulumi.Input[str]] | def s3_object_version(self) -> Optional[pulumi.Input[str]]:
"""
The object version containing the function's deployment package. Conflicts with `filename`.
"""
return pulumi.get(self, "s3_object_version") |
The object version containing the function's deployment package. Conflicts with `filename`.
| The object version containing the function's deployment package. Conflicts with `filename`. | [
"The",
"object",
"version",
"containing",
"the",
"function",
"'",
"s",
"deployment",
"package",
".",
"Conflicts",
"with",
"`",
"filename",
"`",
"."
] | def s3_object_version(self) -> Optional[pulumi.Input[str]]:
return pulumi.get(self, "s3_object_version") | [
"def",
"s3_object_version",
"(",
"self",
")",
"->",
"Optional",
"[",
"pulumi",
".",
"Input",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"s3_object_version\"",
")"
] | The object version containing the function's deployment package. | [
"The",
"object",
"version",
"containing",
"the",
"function",
"'",
"s",
"deployment",
"package",
"."
] | [
"\"\"\"\n The object version containing the function's deployment package. Conflicts with `filename`.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
4ad0430de61c05ce67597a5875c1c4121d538c68 | rapzo/pulumi-aws | sdk/python/pulumi_aws/lambda_/layer_version.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | source_code_hash | Optional[pulumi.Input[str]] | def source_code_hash(self) -> Optional[pulumi.Input[str]]:
"""
Used to trigger updates. Must be set to a base64-encoded SHA256 hash of the package file specified with either `filename` or `s3_key`. The usual way to set this is `${filebase64sha256("file.zip")}` (this provider 0.11.12 or later) or `${base... |
Used to trigger updates. Must be set to a base64-encoded SHA256 hash of the package file specified with either `filename` or `s3_key`. The usual way to set this is `${filebase64sha256("file.zip")}` (this provider 0.11.12 or later) or `${base64sha256(file("file.zip"))}` (this provider 0.11.11 and earlier), wher... | Used to trigger updates. Must be set to a base64-encoded SHA256 hash of the package file specified with either `filename` or `s3_key`. | [
"Used",
"to",
"trigger",
"updates",
".",
"Must",
"be",
"set",
"to",
"a",
"base64",
"-",
"encoded",
"SHA256",
"hash",
"of",
"the",
"package",
"file",
"specified",
"with",
"either",
"`",
"filename",
"`",
"or",
"`",
"s3_key",
"`",
"."
] | def source_code_hash(self) -> Optional[pulumi.Input[str]]:
return pulumi.get(self, "source_code_hash") | [
"def",
"source_code_hash",
"(",
"self",
")",
"->",
"Optional",
"[",
"pulumi",
".",
"Input",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"source_code_hash\"",
")"
] | Used to trigger updates. | [
"Used",
"to",
"trigger",
"updates",
"."
] | [
"\"\"\"\n Used to trigger updates. Must be set to a base64-encoded SHA256 hash of the package file specified with either `filename` or `s3_key`. The usual way to set this is `${filebase64sha256(\"file.zip\")}` (this provider 0.11.12 or later) or `${base64sha256(file(\"file.zip\"))}` (this provider 0.11.11 an... | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
4ad0430de61c05ce67597a5875c1c4121d538c68 | rapzo/pulumi-aws | sdk/python/pulumi_aws/lambda_/layer_version.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | layer_arn | Optional[pulumi.Input[str]] | def layer_arn(self) -> Optional[pulumi.Input[str]]:
"""
The Amazon Resource Name (ARN) of the Lambda Layer without version.
"""
return pulumi.get(self, "layer_arn") |
The Amazon Resource Name (ARN) of the Lambda Layer without version.
| The Amazon Resource Name (ARN) of the Lambda Layer without version. | [
"The",
"Amazon",
"Resource",
"Name",
"(",
"ARN",
")",
"of",
"the",
"Lambda",
"Layer",
"without",
"version",
"."
] | def layer_arn(self) -> Optional[pulumi.Input[str]]:
return pulumi.get(self, "layer_arn") | [
"def",
"layer_arn",
"(",
"self",
")",
"->",
"Optional",
"[",
"pulumi",
".",
"Input",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"layer_arn\"",
")"
] | The Amazon Resource Name (ARN) of the Lambda Layer without version. | [
"The",
"Amazon",
"Resource",
"Name",
"(",
"ARN",
")",
"of",
"the",
"Lambda",
"Layer",
"without",
"version",
"."
] | [
"\"\"\"\n The Amazon Resource Name (ARN) of the Lambda Layer without version.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
4ad0430de61c05ce67597a5875c1c4121d538c68 | rapzo/pulumi-aws | sdk/python/pulumi_aws/lambda_/layer_version.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | layer_name | Optional[pulumi.Input[str]] | def layer_name(self) -> Optional[pulumi.Input[str]]:
"""
A unique name for your Lambda Layer
"""
return pulumi.get(self, "layer_name") |
A unique name for your Lambda Layer
| A unique name for your Lambda Layer | [
"A",
"unique",
"name",
"for",
"your",
"Lambda",
"Layer"
] | def layer_name(self) -> Optional[pulumi.Input[str]]:
return pulumi.get(self, "layer_name") | [
"def",
"layer_name",
"(",
"self",
")",
"->",
"Optional",
"[",
"pulumi",
".",
"Input",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"layer_name\"",
")"
] | A unique name for your Lambda Layer | [
"A",
"unique",
"name",
"for",
"your",
"Lambda",
"Layer"
] | [
"\"\"\"\n A unique name for your Lambda Layer\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
4ad0430de61c05ce67597a5875c1c4121d538c68 | rapzo/pulumi-aws | sdk/python/pulumi_aws/lambda_/layer_version.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | signing_job_arn | Optional[pulumi.Input[str]] | def signing_job_arn(self) -> Optional[pulumi.Input[str]]:
"""
The Amazon Resource Name (ARN) of a signing job.
"""
return pulumi.get(self, "signing_job_arn") |
The Amazon Resource Name (ARN) of a signing job.
| The Amazon Resource Name (ARN) of a signing job. | [
"The",
"Amazon",
"Resource",
"Name",
"(",
"ARN",
")",
"of",
"a",
"signing",
"job",
"."
] | def signing_job_arn(self) -> Optional[pulumi.Input[str]]:
return pulumi.get(self, "signing_job_arn") | [
"def",
"signing_job_arn",
"(",
"self",
")",
"->",
"Optional",
"[",
"pulumi",
".",
"Input",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"signing_job_arn\"",
")"
] | The Amazon Resource Name (ARN) of a signing job. | [
"The",
"Amazon",
"Resource",
"Name",
"(",
"ARN",
")",
"of",
"a",
"signing",
"job",
"."
] | [
"\"\"\"\n The Amazon Resource Name (ARN) of a signing job.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
4ad0430de61c05ce67597a5875c1c4121d538c68 | rapzo/pulumi-aws | sdk/python/pulumi_aws/lambda_/layer_version.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | signing_profile_version_arn | Optional[pulumi.Input[str]] | def signing_profile_version_arn(self) -> Optional[pulumi.Input[str]]:
"""
The Amazon Resource Name (ARN) for a signing profile version.
"""
return pulumi.get(self, "signing_profile_version_arn") |
The Amazon Resource Name (ARN) for a signing profile version.
| The Amazon Resource Name (ARN) for a signing profile version. | [
"The",
"Amazon",
"Resource",
"Name",
"(",
"ARN",
")",
"for",
"a",
"signing",
"profile",
"version",
"."
] | def signing_profile_version_arn(self) -> Optional[pulumi.Input[str]]:
return pulumi.get(self, "signing_profile_version_arn") | [
"def",
"signing_profile_version_arn",
"(",
"self",
")",
"->",
"Optional",
"[",
"pulumi",
".",
"Input",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"signing_profile_version_arn\"",
")"
] | The Amazon Resource Name (ARN) for a signing profile version. | [
"The",
"Amazon",
"Resource",
"Name",
"(",
"ARN",
")",
"for",
"a",
"signing",
"profile",
"version",
"."
] | [
"\"\"\"\n The Amazon Resource Name (ARN) for a signing profile version.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
4ad0430de61c05ce67597a5875c1c4121d538c68 | rapzo/pulumi-aws | sdk/python/pulumi_aws/lambda_/layer_version.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | source_code_size | Optional[pulumi.Input[int]] | def source_code_size(self) -> Optional[pulumi.Input[int]]:
"""
The size in bytes of the function .zip file.
"""
return pulumi.get(self, "source_code_size") |
The size in bytes of the function .zip file.
| The size in bytes of the function .zip file. | [
"The",
"size",
"in",
"bytes",
"of",
"the",
"function",
".",
"zip",
"file",
"."
] | def source_code_size(self) -> Optional[pulumi.Input[int]]:
return pulumi.get(self, "source_code_size") | [
"def",
"source_code_size",
"(",
"self",
")",
"->",
"Optional",
"[",
"pulumi",
".",
"Input",
"[",
"int",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"source_code_size\"",
")"
] | The size in bytes of the function .zip file. | [
"The",
"size",
"in",
"bytes",
"of",
"the",
"function",
".",
"zip",
"file",
"."
] | [
"\"\"\"\n The size in bytes of the function .zip file.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
4ada921ea248ea0f82709ffd5839cd85e5b786d7 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/workteam.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | member_definitions | pulumi.Input[Sequence[pulumi.Input['WorkteamMemberDefinitionArgs']]] | def member_definitions(self) -> pulumi.Input[Sequence[pulumi.Input['WorkteamMemberDefinitionArgs']]]:
"""
A list of Member Definitions that contains objects that identify the workers that make up the work team. Workforces can be created using Amazon Cognito or your own OIDC Identity Provider (IdP). For ... |
A list of Member Definitions that contains objects that identify the workers that make up the work team. Workforces can be created using Amazon Cognito or your own OIDC Identity Provider (IdP). For private workforces created using Amazon Cognito use `cognito_member_definition`. For workforces created using you... | A list of Member Definitions that contains objects that identify the workers that make up the work team. Workforces can be created using Amazon Cognito or your own OIDC Identity Provider (IdP). For private workforces created using Amazon Cognito use `cognito_member_definition`. For workforces created using your own OID... | [
"A",
"list",
"of",
"Member",
"Definitions",
"that",
"contains",
"objects",
"that",
"identify",
"the",
"workers",
"that",
"make",
"up",
"the",
"work",
"team",
".",
"Workforces",
"can",
"be",
"created",
"using",
"Amazon",
"Cognito",
"or",
"your",
"own",
"OIDC"... | def member_definitions(self) -> pulumi.Input[Sequence[pulumi.Input['WorkteamMemberDefinitionArgs']]]:
return pulumi.get(self, "member_definitions") | [
"def",
"member_definitions",
"(",
"self",
")",
"->",
"pulumi",
".",
"Input",
"[",
"Sequence",
"[",
"pulumi",
".",
"Input",
"[",
"'WorkteamMemberDefinitionArgs'",
"]",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"member_definitions\"",
... | A list of Member Definitions that contains objects that identify the workers that make up the work team. | [
"A",
"list",
"of",
"Member",
"Definitions",
"that",
"contains",
"objects",
"that",
"identify",
"the",
"workers",
"that",
"make",
"up",
"the",
"work",
"team",
"."
] | [
"\"\"\"\n A list of Member Definitions that contains objects that identify the workers that make up the work team. Workforces can be created using Amazon Cognito or your own OIDC Identity Provider (IdP). For private workforces created using Amazon Cognito use `cognito_member_definition`. For workforces creat... | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
4ada921ea248ea0f82709ffd5839cd85e5b786d7 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/workteam.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | workforce_name | pulumi.Input[str] | def workforce_name(self) -> pulumi.Input[str]:
"""
The name of the Workteam (must be unique).
"""
return pulumi.get(self, "workforce_name") |
The name of the Workteam (must be unique).
| The name of the Workteam (must be unique). | [
"The",
"name",
"of",
"the",
"Workteam",
"(",
"must",
"be",
"unique",
")",
"."
] | def workforce_name(self) -> pulumi.Input[str]:
return pulumi.get(self, "workforce_name") | [
"def",
"workforce_name",
"(",
"self",
")",
"->",
"pulumi",
".",
"Input",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"workforce_name\"",
")"
] | The name of the Workteam (must be unique). | [
"The",
"name",
"of",
"the",
"Workteam",
"(",
"must",
"be",
"unique",
")",
"."
] | [
"\"\"\"\n The name of the Workteam (must be unique).\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
4ada921ea248ea0f82709ffd5839cd85e5b786d7 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/workteam.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | workteam_name | pulumi.Input[str] | def workteam_name(self) -> pulumi.Input[str]:
"""
The name of the workforce.
"""
return pulumi.get(self, "workteam_name") |
The name of the workforce.
| The name of the workforce. | [
"The",
"name",
"of",
"the",
"workforce",
"."
] | def workteam_name(self) -> pulumi.Input[str]:
return pulumi.get(self, "workteam_name") | [
"def",
"workteam_name",
"(",
"self",
")",
"->",
"pulumi",
".",
"Input",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"workteam_name\"",
")"
] | The name of the workforce. | [
"The",
"name",
"of",
"the",
"workforce",
"."
] | [
"\"\"\"\n The name of the workforce.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
4ada921ea248ea0f82709ffd5839cd85e5b786d7 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/workteam.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | notification_configuration | Optional[pulumi.Input['WorkteamNotificationConfigurationArgs']] | def notification_configuration(self) -> Optional[pulumi.Input['WorkteamNotificationConfigurationArgs']]:
"""
Configures notification of workers regarding available or expiring work items. see Notification Configuration details below.
"""
return pulumi.get(self, "notification_configuratio... |
Configures notification of workers regarding available or expiring work items. see Notification Configuration details below.
| Configures notification of workers regarding available or expiring work items. see Notification Configuration details below. | [
"Configures",
"notification",
"of",
"workers",
"regarding",
"available",
"or",
"expiring",
"work",
"items",
".",
"see",
"Notification",
"Configuration",
"details",
"below",
"."
] | def notification_configuration(self) -> Optional[pulumi.Input['WorkteamNotificationConfigurationArgs']]:
return pulumi.get(self, "notification_configuration") | [
"def",
"notification_configuration",
"(",
"self",
")",
"->",
"Optional",
"[",
"pulumi",
".",
"Input",
"[",
"'WorkteamNotificationConfigurationArgs'",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"notification_configuration\"",
")"
] | Configures notification of workers regarding available or expiring work items. | [
"Configures",
"notification",
"of",
"workers",
"regarding",
"available",
"or",
"expiring",
"work",
"items",
"."
] | [
"\"\"\"\n Configures notification of workers regarding available or expiring work items. see Notification Configuration details below.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
4ada921ea248ea0f82709ffd5839cd85e5b786d7 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/workteam.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | member_definitions | Optional[pulumi.Input[Sequence[pulumi.Input['WorkteamMemberDefinitionArgs']]]] | def member_definitions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['WorkteamMemberDefinitionArgs']]]]:
"""
A list of Member Definitions that contains objects that identify the workers that make up the work team. Workforces can be created using Amazon Cognito or your own OIDC Identity Provider (... |
A list of Member Definitions that contains objects that identify the workers that make up the work team. Workforces can be created using Amazon Cognito or your own OIDC Identity Provider (IdP). For private workforces created using Amazon Cognito use `cognito_member_definition`. For workforces created using you... | A list of Member Definitions that contains objects that identify the workers that make up the work team. Workforces can be created using Amazon Cognito or your own OIDC Identity Provider (IdP). For private workforces created using Amazon Cognito use `cognito_member_definition`. For workforces created using your own OID... | [
"A",
"list",
"of",
"Member",
"Definitions",
"that",
"contains",
"objects",
"that",
"identify",
"the",
"workers",
"that",
"make",
"up",
"the",
"work",
"team",
".",
"Workforces",
"can",
"be",
"created",
"using",
"Amazon",
"Cognito",
"or",
"your",
"own",
"OIDC"... | def member_definitions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['WorkteamMemberDefinitionArgs']]]]:
return pulumi.get(self, "member_definitions") | [
"def",
"member_definitions",
"(",
"self",
")",
"->",
"Optional",
"[",
"pulumi",
".",
"Input",
"[",
"Sequence",
"[",
"pulumi",
".",
"Input",
"[",
"'WorkteamMemberDefinitionArgs'",
"]",
"]",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
... | A list of Member Definitions that contains objects that identify the workers that make up the work team. | [
"A",
"list",
"of",
"Member",
"Definitions",
"that",
"contains",
"objects",
"that",
"identify",
"the",
"workers",
"that",
"make",
"up",
"the",
"work",
"team",
"."
] | [
"\"\"\"\n A list of Member Definitions that contains objects that identify the workers that make up the work team. Workforces can be created using Amazon Cognito or your own OIDC Identity Provider (IdP). For private workforces created using Amazon Cognito use `cognito_member_definition`. For workforces creat... | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
4ada921ea248ea0f82709ffd5839cd85e5b786d7 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/workteam.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | workforce_name | Optional[pulumi.Input[str]] | def workforce_name(self) -> Optional[pulumi.Input[str]]:
"""
The name of the Workteam (must be unique).
"""
return pulumi.get(self, "workforce_name") |
The name of the Workteam (must be unique).
| The name of the Workteam (must be unique). | [
"The",
"name",
"of",
"the",
"Workteam",
"(",
"must",
"be",
"unique",
")",
"."
] | def workforce_name(self) -> Optional[pulumi.Input[str]]:
return pulumi.get(self, "workforce_name") | [
"def",
"workforce_name",
"(",
"self",
")",
"->",
"Optional",
"[",
"pulumi",
".",
"Input",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"workforce_name\"",
")"
] | The name of the Workteam (must be unique). | [
"The",
"name",
"of",
"the",
"Workteam",
"(",
"must",
"be",
"unique",
")",
"."
] | [
"\"\"\"\n The name of the Workteam (must be unique).\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
4ada921ea248ea0f82709ffd5839cd85e5b786d7 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/workteam.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | workteam_name | Optional[pulumi.Input[str]] | def workteam_name(self) -> Optional[pulumi.Input[str]]:
"""
The name of the workforce.
"""
return pulumi.get(self, "workteam_name") |
The name of the workforce.
| The name of the workforce. | [
"The",
"name",
"of",
"the",
"workforce",
"."
] | def workteam_name(self) -> Optional[pulumi.Input[str]]:
return pulumi.get(self, "workteam_name") | [
"def",
"workteam_name",
"(",
"self",
")",
"->",
"Optional",
"[",
"pulumi",
".",
"Input",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"workteam_name\"",
")"
] | The name of the workforce. | [
"The",
"name",
"of",
"the",
"workforce",
"."
] | [
"\"\"\"\n The name of the workforce.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
4ada921ea248ea0f82709ffd5839cd85e5b786d7 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/workteam.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | member_definitions | pulumi.Output[Sequence['outputs.WorkteamMemberDefinition']] | def member_definitions(self) -> pulumi.Output[Sequence['outputs.WorkteamMemberDefinition']]:
"""
A list of Member Definitions that contains objects that identify the workers that make up the work team. Workforces can be created using Amazon Cognito or your own OIDC Identity Provider (IdP). For private w... |
A list of Member Definitions that contains objects that identify the workers that make up the work team. Workforces can be created using Amazon Cognito or your own OIDC Identity Provider (IdP). For private workforces created using Amazon Cognito use `cognito_member_definition`. For workforces created using you... | A list of Member Definitions that contains objects that identify the workers that make up the work team. Workforces can be created using Amazon Cognito or your own OIDC Identity Provider (IdP). For private workforces created using Amazon Cognito use `cognito_member_definition`. For workforces created using your own OID... | [
"A",
"list",
"of",
"Member",
"Definitions",
"that",
"contains",
"objects",
"that",
"identify",
"the",
"workers",
"that",
"make",
"up",
"the",
"work",
"team",
".",
"Workforces",
"can",
"be",
"created",
"using",
"Amazon",
"Cognito",
"or",
"your",
"own",
"OIDC"... | def member_definitions(self) -> pulumi.Output[Sequence['outputs.WorkteamMemberDefinition']]:
return pulumi.get(self, "member_definitions") | [
"def",
"member_definitions",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Sequence",
"[",
"'outputs.WorkteamMemberDefinition'",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"member_definitions\"",
")"
] | A list of Member Definitions that contains objects that identify the workers that make up the work team. | [
"A",
"list",
"of",
"Member",
"Definitions",
"that",
"contains",
"objects",
"that",
"identify",
"the",
"workers",
"that",
"make",
"up",
"the",
"work",
"team",
"."
] | [
"\"\"\"\n A list of Member Definitions that contains objects that identify the workers that make up the work team. Workforces can be created using Amazon Cognito or your own OIDC Identity Provider (IdP). For private workforces created using Amazon Cognito use `cognito_member_definition`. For workforces creat... | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
4ada921ea248ea0f82709ffd5839cd85e5b786d7 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/workteam.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | notification_configuration | pulumi.Output[Optional['outputs.WorkteamNotificationConfiguration']] | def notification_configuration(self) -> pulumi.Output[Optional['outputs.WorkteamNotificationConfiguration']]:
"""
Configures notification of workers regarding available or expiring work items. see Notification Configuration details below.
"""
return pulumi.get(self, "notification_configu... |
Configures notification of workers regarding available or expiring work items. see Notification Configuration details below.
| Configures notification of workers regarding available or expiring work items. see Notification Configuration details below. | [
"Configures",
"notification",
"of",
"workers",
"regarding",
"available",
"or",
"expiring",
"work",
"items",
".",
"see",
"Notification",
"Configuration",
"details",
"below",
"."
] | def notification_configuration(self) -> pulumi.Output[Optional['outputs.WorkteamNotificationConfiguration']]:
return pulumi.get(self, "notification_configuration") | [
"def",
"notification_configuration",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"'outputs.WorkteamNotificationConfiguration'",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"notification_configuration\"",
")"
] | Configures notification of workers regarding available or expiring work items. | [
"Configures",
"notification",
"of",
"workers",
"regarding",
"available",
"or",
"expiring",
"work",
"items",
"."
] | [
"\"\"\"\n Configures notification of workers regarding available or expiring work items. see Notification Configuration details below.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
4ada921ea248ea0f82709ffd5839cd85e5b786d7 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/workteam.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | subdomain | pulumi.Output[str] | def subdomain(self) -> pulumi.Output[str]:
"""
The subdomain for your OIDC Identity Provider.
"""
return pulumi.get(self, "subdomain") |
The subdomain for your OIDC Identity Provider.
| The subdomain for your OIDC Identity Provider. | [
"The",
"subdomain",
"for",
"your",
"OIDC",
"Identity",
"Provider",
"."
] | def subdomain(self) -> pulumi.Output[str]:
return pulumi.get(self, "subdomain") | [
"def",
"subdomain",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"subdomain\"",
")"
] | The subdomain for your OIDC Identity Provider. | [
"The",
"subdomain",
"for",
"your",
"OIDC",
"Identity",
"Provider",
"."
] | [
"\"\"\"\n The subdomain for your OIDC Identity Provider.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
4ada921ea248ea0f82709ffd5839cd85e5b786d7 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/workteam.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | workforce_name | pulumi.Output[str] | def workforce_name(self) -> pulumi.Output[str]:
"""
The name of the Workteam (must be unique).
"""
return pulumi.get(self, "workforce_name") |
The name of the Workteam (must be unique).
| The name of the Workteam (must be unique). | [
"The",
"name",
"of",
"the",
"Workteam",
"(",
"must",
"be",
"unique",
")",
"."
] | def workforce_name(self) -> pulumi.Output[str]:
return pulumi.get(self, "workforce_name") | [
"def",
"workforce_name",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"workforce_name\"",
")"
] | The name of the Workteam (must be unique). | [
"The",
"name",
"of",
"the",
"Workteam",
"(",
"must",
"be",
"unique",
")",
"."
] | [
"\"\"\"\n The name of the Workteam (must be unique).\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
4ada921ea248ea0f82709ffd5839cd85e5b786d7 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/workteam.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | workteam_name | pulumi.Output[str] | def workteam_name(self) -> pulumi.Output[str]:
"""
The name of the workforce.
"""
return pulumi.get(self, "workteam_name") |
The name of the workforce.
| The name of the workforce. | [
"The",
"name",
"of",
"the",
"workforce",
"."
] | def workteam_name(self) -> pulumi.Output[str]:
return pulumi.get(self, "workteam_name") | [
"def",
"workteam_name",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"workteam_name\"",
")"
] | The name of the workforce. | [
"The",
"name",
"of",
"the",
"workforce",
"."
] | [
"\"\"\"\n The name of the workforce.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | kernel_spec | 'outputs.AppImageConfigKernelGatewayImageConfigKernelSpec' | def kernel_spec(self) -> 'outputs.AppImageConfigKernelGatewayImageConfigKernelSpec':
"""
The default branch for the Git repository. See Kernel Spec details below.
"""
return pulumi.get(self, "kernel_spec") |
The default branch for the Git repository. See Kernel Spec details below.
| The default branch for the Git repository. See Kernel Spec details below. | [
"The",
"default",
"branch",
"for",
"the",
"Git",
"repository",
".",
"See",
"Kernel",
"Spec",
"details",
"below",
"."
] | def kernel_spec(self) -> 'outputs.AppImageConfigKernelGatewayImageConfigKernelSpec':
return pulumi.get(self, "kernel_spec") | [
"def",
"kernel_spec",
"(",
"self",
")",
"->",
"'outputs.AppImageConfigKernelGatewayImageConfigKernelSpec'",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"kernel_spec\"",
")"
] | The default branch for the Git repository. | [
"The",
"default",
"branch",
"for",
"the",
"Git",
"repository",
"."
] | [
"\"\"\"\n The default branch for the Git repository. See Kernel Spec details below.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | file_system_config | Optional['outputs.AppImageConfigKernelGatewayImageConfigFileSystemConfig'] | def file_system_config(self) -> Optional['outputs.AppImageConfigKernelGatewayImageConfigFileSystemConfig']:
"""
The URL where the Git repository is located. See File System Config details below.
"""
return pulumi.get(self, "file_system_config") |
The URL where the Git repository is located. See File System Config details below.
| The URL where the Git repository is located. See File System Config details below. | [
"The",
"URL",
"where",
"the",
"Git",
"repository",
"is",
"located",
".",
"See",
"File",
"System",
"Config",
"details",
"below",
"."
] | def file_system_config(self) -> Optional['outputs.AppImageConfigKernelGatewayImageConfigFileSystemConfig']:
return pulumi.get(self, "file_system_config") | [
"def",
"file_system_config",
"(",
"self",
")",
"->",
"Optional",
"[",
"'outputs.AppImageConfigKernelGatewayImageConfigFileSystemConfig'",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"file_system_config\"",
")"
] | The URL where the Git repository is located. | [
"The",
"URL",
"where",
"the",
"Git",
"repository",
"is",
"located",
"."
] | [
"\"\"\"\n The URL where the Git repository is located. See File System Config details below.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | instance_type | Optional[str] | def instance_type(self) -> Optional[str]:
"""
The instance type that the image version runs on. For valid values see [Sagemaker Instance Types](https://docs.aws.amazon.com/sagemaker/latest/dg/notebooks-available-instance-types.html).
"""
return pulumi.get(self, "instance_type") |
The instance type that the image version runs on. For valid values see [Sagemaker Instance Types](https://docs.aws.amazon.com/sagemaker/latest/dg/notebooks-available-instance-types.html).
| The instance type that the image version runs on. For valid values see [Sagemaker Instance Types]. | [
"The",
"instance",
"type",
"that",
"the",
"image",
"version",
"runs",
"on",
".",
"For",
"valid",
"values",
"see",
"[",
"Sagemaker",
"Instance",
"Types",
"]",
"."
] | def instance_type(self) -> Optional[str]:
return pulumi.get(self, "instance_type") | [
"def",
"instance_type",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"instance_type\"",
")"
] | The instance type that the image version runs on. | [
"The",
"instance",
"type",
"that",
"the",
"image",
"version",
"runs",
"on",
"."
] | [
"\"\"\"\n The instance type that the image version runs on. For valid values see [Sagemaker Instance Types](https://docs.aws.amazon.com/sagemaker/latest/dg/notebooks-available-instance-types.html).\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | sagemaker_image_arn | Optional[str] | def sagemaker_image_arn(self) -> Optional[str]:
"""
The ARN of the SageMaker image that the image version belongs to.
"""
return pulumi.get(self, "sagemaker_image_arn") |
The ARN of the SageMaker image that the image version belongs to.
| The ARN of the SageMaker image that the image version belongs to. | [
"The",
"ARN",
"of",
"the",
"SageMaker",
"image",
"that",
"the",
"image",
"version",
"belongs",
"to",
"."
] | def sagemaker_image_arn(self) -> Optional[str]:
return pulumi.get(self, "sagemaker_image_arn") | [
"def",
"sagemaker_image_arn",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"sagemaker_image_arn\"",
")"
] | The ARN of the SageMaker image that the image version belongs to. | [
"The",
"ARN",
"of",
"the",
"SageMaker",
"image",
"that",
"the",
"image",
"version",
"belongs",
"to",
"."
] | [
"\"\"\"\n The ARN of the SageMaker image that the image version belongs to.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | repository_url | str | def repository_url(self) -> str:
"""
The URL where the Git repository is located.
"""
return pulumi.get(self, "repository_url") |
The URL where the Git repository is located.
| The URL where the Git repository is located. | [
"The",
"URL",
"where",
"the",
"Git",
"repository",
"is",
"located",
"."
] | def repository_url(self) -> str:
return pulumi.get(self, "repository_url") | [
"def",
"repository_url",
"(",
"self",
")",
"->",
"str",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"repository_url\"",
")"
] | The URL where the Git repository is located. | [
"The",
"URL",
"where",
"the",
"Git",
"repository",
"is",
"located",
"."
] | [
"\"\"\"\n The URL where the Git repository is located.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | branch | Optional[str] | def branch(self) -> Optional[str]:
"""
The default branch for the Git repository.
"""
return pulumi.get(self, "branch") |
The default branch for the Git repository.
| The default branch for the Git repository. | [
"The",
"default",
"branch",
"for",
"the",
"Git",
"repository",
"."
] | def branch(self) -> Optional[str]:
return pulumi.get(self, "branch") | [
"def",
"branch",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"branch\"",
")"
] | The default branch for the Git repository. | [
"The",
"default",
"branch",
"for",
"the",
"Git",
"repository",
"."
] | [
"\"\"\"\n The default branch for the Git repository.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | secret_arn | Optional[str] | def secret_arn(self) -> Optional[str]:
"""
The Amazon Resource Name (ARN) of the AWS Secrets Manager secret that contains the credentials used to access the git repository. The secret must have a staging label of AWSCURRENT and must be in the following format: `{"username": UserName, "password": Passwor... |
The Amazon Resource Name (ARN) of the AWS Secrets Manager secret that contains the credentials used to access the git repository. The secret must have a staging label of AWSCURRENT and must be in the following format: `{"username": UserName, "password": Password}`
| The Amazon Resource Name (ARN) of the AWS Secrets Manager secret that contains the credentials used to access the git repository. The secret must have a staging label of AWSCURRENT and must be in the following format: `{"username": UserName, "password": Password}` | [
"The",
"Amazon",
"Resource",
"Name",
"(",
"ARN",
")",
"of",
"the",
"AWS",
"Secrets",
"Manager",
"secret",
"that",
"contains",
"the",
"credentials",
"used",
"to",
"access",
"the",
"git",
"repository",
".",
"The",
"secret",
"must",
"have",
"a",
"staging",
"l... | def secret_arn(self) -> Optional[str]:
return pulumi.get(self, "secret_arn") | [
"def",
"secret_arn",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"secret_arn\"",
")"
] | The Amazon Resource Name (ARN) of the AWS Secrets Manager secret that contains the credentials used to access the git repository. | [
"The",
"Amazon",
"Resource",
"Name",
"(",
"ARN",
")",
"of",
"the",
"AWS",
"Secrets",
"Manager",
"secret",
"that",
"contains",
"the",
"credentials",
"used",
"to",
"access",
"the",
"git",
"repository",
"."
] | [
"\"\"\"\n The Amazon Resource Name (ARN) of the AWS Secrets Manager secret that contains the credentials used to access the git repository. The secret must have a staging label of AWSCURRENT and must be in the following format: `{\"username\": UserName, \"password\": Password}`\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | s3_output_location | str | def s3_output_location(self) -> str:
"""
The Amazon Simple Storage (S3) bucker URI.
"""
return pulumi.get(self, "s3_output_location") |
The Amazon Simple Storage (S3) bucker URI.
| The Amazon Simple Storage (S3) bucker URI. | [
"The",
"Amazon",
"Simple",
"Storage",
"(",
"S3",
")",
"bucker",
"URI",
"."
] | def s3_output_location(self) -> str:
return pulumi.get(self, "s3_output_location") | [
"def",
"s3_output_location",
"(",
"self",
")",
"->",
"str",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"s3_output_location\"",
")"
] | The Amazon Simple Storage (S3) bucker URI. | [
"The",
"Amazon",
"Simple",
"Storage",
"(",
"S3",
")",
"bucker",
"URI",
"."
] | [
"\"\"\"\n The Amazon Simple Storage (S3) bucker URI.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | execution_role | str | def execution_role(self) -> str:
"""
The execution role ARN for the user.
"""
return pulumi.get(self, "execution_role") |
The execution role ARN for the user.
| The execution role ARN for the user. | [
"The",
"execution",
"role",
"ARN",
"for",
"the",
"user",
"."
] | def execution_role(self) -> str:
return pulumi.get(self, "execution_role") | [
"def",
"execution_role",
"(",
"self",
")",
"->",
"str",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"execution_role\"",
")"
] | The execution role ARN for the user. | [
"The",
"execution",
"role",
"ARN",
"for",
"the",
"user",
"."
] | [
"\"\"\"\n The execution role ARN for the user.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | jupyter_server_app_settings | Optional['outputs.DomainDefaultUserSettingsJupyterServerAppSettings'] | def jupyter_server_app_settings(self) -> Optional['outputs.DomainDefaultUserSettingsJupyterServerAppSettings']:
"""
The Jupyter server's app settings. See Jupyter Server App Settings below.
"""
return pulumi.get(self, "jupyter_server_app_settings") |
The Jupyter server's app settings. See Jupyter Server App Settings below.
| The Jupyter server's app settings. See Jupyter Server App Settings below. | [
"The",
"Jupyter",
"server",
"'",
"s",
"app",
"settings",
".",
"See",
"Jupyter",
"Server",
"App",
"Settings",
"below",
"."
] | def jupyter_server_app_settings(self) -> Optional['outputs.DomainDefaultUserSettingsJupyterServerAppSettings']:
return pulumi.get(self, "jupyter_server_app_settings") | [
"def",
"jupyter_server_app_settings",
"(",
"self",
")",
"->",
"Optional",
"[",
"'outputs.DomainDefaultUserSettingsJupyterServerAppSettings'",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"jupyter_server_app_settings\"",
")"
] | The Jupyter server's app settings. | [
"The",
"Jupyter",
"server",
"'",
"s",
"app",
"settings",
"."
] | [
"\"\"\"\n The Jupyter server's app settings. See Jupyter Server App Settings below.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | kernel_gateway_app_settings | Optional['outputs.DomainDefaultUserSettingsKernelGatewayAppSettings'] | def kernel_gateway_app_settings(self) -> Optional['outputs.DomainDefaultUserSettingsKernelGatewayAppSettings']:
"""
The kernel gateway app settings. See Kernel Gateway App Settings below.
"""
return pulumi.get(self, "kernel_gateway_app_settings") |
The kernel gateway app settings. See Kernel Gateway App Settings below.
| The kernel gateway app settings. See Kernel Gateway App Settings below. | [
"The",
"kernel",
"gateway",
"app",
"settings",
".",
"See",
"Kernel",
"Gateway",
"App",
"Settings",
"below",
"."
] | def kernel_gateway_app_settings(self) -> Optional['outputs.DomainDefaultUserSettingsKernelGatewayAppSettings']:
return pulumi.get(self, "kernel_gateway_app_settings") | [
"def",
"kernel_gateway_app_settings",
"(",
"self",
")",
"->",
"Optional",
"[",
"'outputs.DomainDefaultUserSettingsKernelGatewayAppSettings'",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"kernel_gateway_app_settings\"",
")"
] | The kernel gateway app settings. | [
"The",
"kernel",
"gateway",
"app",
"settings",
"."
] | [
"\"\"\"\n The kernel gateway app settings. See Kernel Gateway App Settings below.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | sharing_settings | Optional['outputs.DomainDefaultUserSettingsSharingSettings'] | def sharing_settings(self) -> Optional['outputs.DomainDefaultUserSettingsSharingSettings']:
"""
The sharing settings. See Sharing Settings below.
"""
return pulumi.get(self, "sharing_settings") |
The sharing settings. See Sharing Settings below.
| The sharing settings. See Sharing Settings below. | [
"The",
"sharing",
"settings",
".",
"See",
"Sharing",
"Settings",
"below",
"."
] | def sharing_settings(self) -> Optional['outputs.DomainDefaultUserSettingsSharingSettings']:
return pulumi.get(self, "sharing_settings") | [
"def",
"sharing_settings",
"(",
"self",
")",
"->",
"Optional",
"[",
"'outputs.DomainDefaultUserSettingsSharingSettings'",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"sharing_settings\"",
")"
] | The sharing settings. | [
"The",
"sharing",
"settings",
"."
] | [
"\"\"\"\n The sharing settings. See Sharing Settings below.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | tensor_board_app_settings | Optional['outputs.DomainDefaultUserSettingsTensorBoardAppSettings'] | def tensor_board_app_settings(self) -> Optional['outputs.DomainDefaultUserSettingsTensorBoardAppSettings']:
"""
The TensorBoard app settings. See TensorBoard App Settings below.
"""
return pulumi.get(self, "tensor_board_app_settings") |
The TensorBoard app settings. See TensorBoard App Settings below.
| The TensorBoard app settings. See TensorBoard App Settings below. | [
"The",
"TensorBoard",
"app",
"settings",
".",
"See",
"TensorBoard",
"App",
"Settings",
"below",
"."
] | def tensor_board_app_settings(self) -> Optional['outputs.DomainDefaultUserSettingsTensorBoardAppSettings']:
return pulumi.get(self, "tensor_board_app_settings") | [
"def",
"tensor_board_app_settings",
"(",
"self",
")",
"->",
"Optional",
"[",
"'outputs.DomainDefaultUserSettingsTensorBoardAppSettings'",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"tensor_board_app_settings\"",
")"
] | The TensorBoard app settings. | [
"The",
"TensorBoard",
"app",
"settings",
"."
] | [
"\"\"\"\n The TensorBoard app settings. See TensorBoard App Settings below.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | default_resource_spec | Optional['outputs.DomainDefaultUserSettingsJupyterServerAppSettingsDefaultResourceSpec'] | def default_resource_spec(self) -> Optional['outputs.DomainDefaultUserSettingsJupyterServerAppSettingsDefaultResourceSpec']:
"""
The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. see Default Resource Spec below.
"""
return pulumi... |
The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. see Default Resource Spec below.
| The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. see Default Resource Spec below. | [
"The",
"default",
"instance",
"type",
"and",
"the",
"Amazon",
"Resource",
"Name",
"(",
"ARN",
")",
"of",
"the",
"SageMaker",
"image",
"created",
"on",
"the",
"instance",
".",
"see",
"Default",
"Resource",
"Spec",
"below",
"."
] | def default_resource_spec(self) -> Optional['outputs.DomainDefaultUserSettingsJupyterServerAppSettingsDefaultResourceSpec']:
return pulumi.get(self, "default_resource_spec") | [
"def",
"default_resource_spec",
"(",
"self",
")",
"->",
"Optional",
"[",
"'outputs.DomainDefaultUserSettingsJupyterServerAppSettingsDefaultResourceSpec'",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"default_resource_spec\"",
")"
] | The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. | [
"The",
"default",
"instance",
"type",
"and",
"the",
"Amazon",
"Resource",
"Name",
"(",
"ARN",
")",
"of",
"the",
"SageMaker",
"image",
"created",
"on",
"the",
"instance",
"."
] | [
"\"\"\"\n The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. see Default Resource Spec below.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | lifecycle_config_arns | Optional[Sequence[str]] | def lifecycle_config_arns(self) -> Optional[Sequence[str]]:
"""
The Amazon Resource Name (ARN) of the Lifecycle Configurations.
"""
return pulumi.get(self, "lifecycle_config_arns") |
The Amazon Resource Name (ARN) of the Lifecycle Configurations.
| The Amazon Resource Name (ARN) of the Lifecycle Configurations. | [
"The",
"Amazon",
"Resource",
"Name",
"(",
"ARN",
")",
"of",
"the",
"Lifecycle",
"Configurations",
"."
] | def lifecycle_config_arns(self) -> Optional[Sequence[str]]:
return pulumi.get(self, "lifecycle_config_arns") | [
"def",
"lifecycle_config_arns",
"(",
"self",
")",
"->",
"Optional",
"[",
"Sequence",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"lifecycle_config_arns\"",
")"
] | The Amazon Resource Name (ARN) of the Lifecycle Configurations. | [
"The",
"Amazon",
"Resource",
"Name",
"(",
"ARN",
")",
"of",
"the",
"Lifecycle",
"Configurations",
"."
] | [
"\"\"\"\n The Amazon Resource Name (ARN) of the Lifecycle Configurations.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | custom_images | Optional[Sequence['outputs.DomainDefaultUserSettingsKernelGatewayAppSettingsCustomImage']] | def custom_images(self) -> Optional[Sequence['outputs.DomainDefaultUserSettingsKernelGatewayAppSettingsCustomImage']]:
"""
A list of custom SageMaker images that are configured to run as a KernelGateway app. see Custom Image below.
"""
return pulumi.get(self, "custom_images") |
A list of custom SageMaker images that are configured to run as a KernelGateway app. see Custom Image below.
| A list of custom SageMaker images that are configured to run as a KernelGateway app. see Custom Image below. | [
"A",
"list",
"of",
"custom",
"SageMaker",
"images",
"that",
"are",
"configured",
"to",
"run",
"as",
"a",
"KernelGateway",
"app",
".",
"see",
"Custom",
"Image",
"below",
"."
] | def custom_images(self) -> Optional[Sequence['outputs.DomainDefaultUserSettingsKernelGatewayAppSettingsCustomImage']]:
return pulumi.get(self, "custom_images") | [
"def",
"custom_images",
"(",
"self",
")",
"->",
"Optional",
"[",
"Sequence",
"[",
"'outputs.DomainDefaultUserSettingsKernelGatewayAppSettingsCustomImage'",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"custom_images\"",
")"
] | A list of custom SageMaker images that are configured to run as a KernelGateway app. | [
"A",
"list",
"of",
"custom",
"SageMaker",
"images",
"that",
"are",
"configured",
"to",
"run",
"as",
"a",
"KernelGateway",
"app",
"."
] | [
"\"\"\"\n A list of custom SageMaker images that are configured to run as a KernelGateway app. see Custom Image below.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | default_resource_spec | Optional['outputs.DomainDefaultUserSettingsKernelGatewayAppSettingsDefaultResourceSpec'] | def default_resource_spec(self) -> Optional['outputs.DomainDefaultUserSettingsKernelGatewayAppSettingsDefaultResourceSpec']:
"""
The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. see Default Resource Spec below.
"""
return pulumi... |
The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. see Default Resource Spec below.
| The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. see Default Resource Spec below. | [
"The",
"default",
"instance",
"type",
"and",
"the",
"Amazon",
"Resource",
"Name",
"(",
"ARN",
")",
"of",
"the",
"SageMaker",
"image",
"created",
"on",
"the",
"instance",
".",
"see",
"Default",
"Resource",
"Spec",
"below",
"."
] | def default_resource_spec(self) -> Optional['outputs.DomainDefaultUserSettingsKernelGatewayAppSettingsDefaultResourceSpec']:
return pulumi.get(self, "default_resource_spec") | [
"def",
"default_resource_spec",
"(",
"self",
")",
"->",
"Optional",
"[",
"'outputs.DomainDefaultUserSettingsKernelGatewayAppSettingsDefaultResourceSpec'",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"default_resource_spec\"",
")"
] | The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. | [
"The",
"default",
"instance",
"type",
"and",
"the",
"Amazon",
"Resource",
"Name",
"(",
"ARN",
")",
"of",
"the",
"SageMaker",
"image",
"created",
"on",
"the",
"instance",
"."
] | [
"\"\"\"\n The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. see Default Resource Spec below.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | app_image_config_name | str | def app_image_config_name(self) -> str:
"""
The name of the App Image Config.
"""
return pulumi.get(self, "app_image_config_name") |
The name of the App Image Config.
| The name of the App Image Config. | [
"The",
"name",
"of",
"the",
"App",
"Image",
"Config",
"."
] | def app_image_config_name(self) -> str:
return pulumi.get(self, "app_image_config_name") | [
"def",
"app_image_config_name",
"(",
"self",
")",
"->",
"str",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"app_image_config_name\"",
")"
] | The name of the App Image Config. | [
"The",
"name",
"of",
"the",
"App",
"Image",
"Config",
"."
] | [
"\"\"\"\n The name of the App Image Config.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | image_version_number | Optional[int] | def image_version_number(self) -> Optional[int]:
"""
The version number of the Custom Image.
"""
return pulumi.get(self, "image_version_number") |
The version number of the Custom Image.
| The version number of the Custom Image. | [
"The",
"version",
"number",
"of",
"the",
"Custom",
"Image",
"."
] | def image_version_number(self) -> Optional[int]:
return pulumi.get(self, "image_version_number") | [
"def",
"image_version_number",
"(",
"self",
")",
"->",
"Optional",
"[",
"int",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"image_version_number\"",
")"
] | The version number of the Custom Image. | [
"The",
"version",
"number",
"of",
"the",
"Custom",
"Image",
"."
] | [
"\"\"\"\n The version number of the Custom Image.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | notebook_output_option | Optional[str] | def notebook_output_option(self) -> Optional[str]:
"""
Whether to include the notebook cell output when sharing the notebook. The default is `Disabled`. Valid values are `Allowed` and `Disabled`.
"""
return pulumi.get(self, "notebook_output_option") |
Whether to include the notebook cell output when sharing the notebook. The default is `Disabled`. Valid values are `Allowed` and `Disabled`.
| Whether to include the notebook cell output when sharing the notebook. The default is `Disabled`. Valid values are `Allowed` and `Disabled`. | [
"Whether",
"to",
"include",
"the",
"notebook",
"cell",
"output",
"when",
"sharing",
"the",
"notebook",
".",
"The",
"default",
"is",
"`",
"Disabled",
"`",
".",
"Valid",
"values",
"are",
"`",
"Allowed",
"`",
"and",
"`",
"Disabled",
"`",
"."
] | def notebook_output_option(self) -> Optional[str]:
return pulumi.get(self, "notebook_output_option") | [
"def",
"notebook_output_option",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"notebook_output_option\"",
")"
] | Whether to include the notebook cell output when sharing the notebook. | [
"Whether",
"to",
"include",
"the",
"notebook",
"cell",
"output",
"when",
"sharing",
"the",
"notebook",
"."
] | [
"\"\"\"\n Whether to include the notebook cell output when sharing the notebook. The default is `Disabled`. Valid values are `Allowed` and `Disabled`.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | s3_kms_key_id | Optional[str] | def s3_kms_key_id(self) -> Optional[str]:
"""
When `notebook_output_option` is Allowed, the AWS Key Management Service (KMS) encryption key ID used to encrypt the notebook cell output in the Amazon S3 bucket.
"""
return pulumi.get(self, "s3_kms_key_id") |
When `notebook_output_option` is Allowed, the AWS Key Management Service (KMS) encryption key ID used to encrypt the notebook cell output in the Amazon S3 bucket.
| When `notebook_output_option` is Allowed, the AWS Key Management Service (KMS) encryption key ID used to encrypt the notebook cell output in the Amazon S3 bucket. | [
"When",
"`",
"notebook_output_option",
"`",
"is",
"Allowed",
"the",
"AWS",
"Key",
"Management",
"Service",
"(",
"KMS",
")",
"encryption",
"key",
"ID",
"used",
"to",
"encrypt",
"the",
"notebook",
"cell",
"output",
"in",
"the",
"Amazon",
"S3",
"bucket",
"."
] | def s3_kms_key_id(self) -> Optional[str]:
return pulumi.get(self, "s3_kms_key_id") | [
"def",
"s3_kms_key_id",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"s3_kms_key_id\"",
")"
] | When `notebook_output_option` is Allowed, the AWS Key Management Service (KMS) encryption key ID used to encrypt the notebook cell output in the Amazon S3 bucket. | [
"When",
"`",
"notebook_output_option",
"`",
"is",
"Allowed",
"the",
"AWS",
"Key",
"Management",
"Service",
"(",
"KMS",
")",
"encryption",
"key",
"ID",
"used",
"to",
"encrypt",
"the",
"notebook",
"cell",
"output",
"in",
"the",
"Amazon",
"S3",
"bucket",
"."
] | [
"\"\"\"\n When `notebook_output_option` is Allowed, the AWS Key Management Service (KMS) encryption key ID used to encrypt the notebook cell output in the Amazon S3 bucket.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | s3_output_path | Optional[str] | def s3_output_path(self) -> Optional[str]:
"""
When `notebook_output_option` is Allowed, the Amazon S3 bucket used to save the notebook cell output.
"""
return pulumi.get(self, "s3_output_path") |
When `notebook_output_option` is Allowed, the Amazon S3 bucket used to save the notebook cell output.
| When `notebook_output_option` is Allowed, the Amazon S3 bucket used to save the notebook cell output. | [
"When",
"`",
"notebook_output_option",
"`",
"is",
"Allowed",
"the",
"Amazon",
"S3",
"bucket",
"used",
"to",
"save",
"the",
"notebook",
"cell",
"output",
"."
] | def s3_output_path(self) -> Optional[str]:
return pulumi.get(self, "s3_output_path") | [
"def",
"s3_output_path",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"s3_output_path\"",
")"
] | When `notebook_output_option` is Allowed, the Amazon S3 bucket used to save the notebook cell output. | [
"When",
"`",
"notebook_output_option",
"`",
"is",
"Allowed",
"the",
"Amazon",
"S3",
"bucket",
"used",
"to",
"save",
"the",
"notebook",
"cell",
"output",
"."
] | [
"\"\"\"\n When `notebook_output_option` is Allowed, the Amazon S3 bucket used to save the notebook cell output.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | default_resource_spec | Optional['outputs.DomainDefaultUserSettingsTensorBoardAppSettingsDefaultResourceSpec'] | def default_resource_spec(self) -> Optional['outputs.DomainDefaultUserSettingsTensorBoardAppSettingsDefaultResourceSpec']:
"""
The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. see Default Resource Spec below.
"""
return pulumi.g... |
The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. see Default Resource Spec below.
| The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. see Default Resource Spec below. | [
"The",
"default",
"instance",
"type",
"and",
"the",
"Amazon",
"Resource",
"Name",
"(",
"ARN",
")",
"of",
"the",
"SageMaker",
"image",
"created",
"on",
"the",
"instance",
".",
"see",
"Default",
"Resource",
"Spec",
"below",
"."
] | def default_resource_spec(self) -> Optional['outputs.DomainDefaultUserSettingsTensorBoardAppSettingsDefaultResourceSpec']:
return pulumi.get(self, "default_resource_spec") | [
"def",
"default_resource_spec",
"(",
"self",
")",
"->",
"Optional",
"[",
"'outputs.DomainDefaultUserSettingsTensorBoardAppSettingsDefaultResourceSpec'",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"default_resource_spec\"",
")"
] | The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. | [
"The",
"default",
"instance",
"type",
"and",
"the",
"Amazon",
"Resource",
"Name",
"(",
"ARN",
")",
"of",
"the",
"SageMaker",
"image",
"created",
"on",
"the",
"instance",
"."
] | [
"\"\"\"\n The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. see Default Resource Spec below.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | home_efs_file_system | Optional[str] | def home_efs_file_system(self) -> Optional[str]:
"""
The retention policy for data stored on an Amazon Elastic File System (EFS) volume. Default value is `Retain`.
"""
return pulumi.get(self, "home_efs_file_system") |
The retention policy for data stored on an Amazon Elastic File System (EFS) volume. Default value is `Retain`.
| The retention policy for data stored on an Amazon Elastic File System (EFS) volume. Default value is `Retain`. | [
"The",
"retention",
"policy",
"for",
"data",
"stored",
"on",
"an",
"Amazon",
"Elastic",
"File",
"System",
"(",
"EFS",
")",
"volume",
".",
"Default",
"value",
"is",
"`",
"Retain",
"`",
"."
] | def home_efs_file_system(self) -> Optional[str]:
return pulumi.get(self, "home_efs_file_system") | [
"def",
"home_efs_file_system",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"home_efs_file_system\"",
")"
] | The retention policy for data stored on an Amazon Elastic File System (EFS) volume. | [
"The",
"retention",
"policy",
"for",
"data",
"stored",
"on",
"an",
"Amazon",
"Elastic",
"File",
"System",
"(",
"EFS",
")",
"volume",
"."
] | [
"\"\"\"\n The retention policy for data stored on an Amazon Elastic File System (EFS) volume. Default value is `Retain`.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | output_config | 'outputs.EndpointConfigurationAsyncInferenceConfigOutputConfig' | def output_config(self) -> 'outputs.EndpointConfigurationAsyncInferenceConfigOutputConfig':
"""
Specifies the configuration for asynchronous inference invocation outputs.
"""
return pulumi.get(self, "output_config") |
Specifies the configuration for asynchronous inference invocation outputs.
| Specifies the configuration for asynchronous inference invocation outputs. | [
"Specifies",
"the",
"configuration",
"for",
"asynchronous",
"inference",
"invocation",
"outputs",
"."
] | def output_config(self) -> 'outputs.EndpointConfigurationAsyncInferenceConfigOutputConfig':
return pulumi.get(self, "output_config") | [
"def",
"output_config",
"(",
"self",
")",
"->",
"'outputs.EndpointConfigurationAsyncInferenceConfigOutputConfig'",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"output_config\"",
")"
] | Specifies the configuration for asynchronous inference invocation outputs. | [
"Specifies",
"the",
"configuration",
"for",
"asynchronous",
"inference",
"invocation",
"outputs",
"."
] | [
"\"\"\"\n Specifies the configuration for asynchronous inference invocation outputs.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | client_config | Optional['outputs.EndpointConfigurationAsyncInferenceConfigClientConfig'] | def client_config(self) -> Optional['outputs.EndpointConfigurationAsyncInferenceConfigClientConfig']:
"""
Configures the behavior of the client used by Amazon SageMaker to interact with the model container during asynchronous inference.
"""
return pulumi.get(self, "client_config") |
Configures the behavior of the client used by Amazon SageMaker to interact with the model container during asynchronous inference.
| Configures the behavior of the client used by Amazon SageMaker to interact with the model container during asynchronous inference. | [
"Configures",
"the",
"behavior",
"of",
"the",
"client",
"used",
"by",
"Amazon",
"SageMaker",
"to",
"interact",
"with",
"the",
"model",
"container",
"during",
"asynchronous",
"inference",
"."
] | def client_config(self) -> Optional['outputs.EndpointConfigurationAsyncInferenceConfigClientConfig']:
return pulumi.get(self, "client_config") | [
"def",
"client_config",
"(",
"self",
")",
"->",
"Optional",
"[",
"'outputs.EndpointConfigurationAsyncInferenceConfigClientConfig'",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"client_config\"",
")"
] | Configures the behavior of the client used by Amazon SageMaker to interact with the model container during asynchronous inference. | [
"Configures",
"the",
"behavior",
"of",
"the",
"client",
"used",
"by",
"Amazon",
"SageMaker",
"to",
"interact",
"with",
"the",
"model",
"container",
"during",
"asynchronous",
"inference",
"."
] | [
"\"\"\"\n Configures the behavior of the client used by Amazon SageMaker to interact with the model container during asynchronous inference.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | max_concurrent_invocations_per_instance | Optional[int] | def max_concurrent_invocations_per_instance(self) -> Optional[int]:
"""
The maximum number of concurrent requests sent by the SageMaker client to the model container. If no value is provided, Amazon SageMaker will choose an optimal value for you.
"""
return pulumi.get(self, "max_concurre... |
The maximum number of concurrent requests sent by the SageMaker client to the model container. If no value is provided, Amazon SageMaker will choose an optimal value for you.
| The maximum number of concurrent requests sent by the SageMaker client to the model container. If no value is provided, Amazon SageMaker will choose an optimal value for you. | [
"The",
"maximum",
"number",
"of",
"concurrent",
"requests",
"sent",
"by",
"the",
"SageMaker",
"client",
"to",
"the",
"model",
"container",
".",
"If",
"no",
"value",
"is",
"provided",
"Amazon",
"SageMaker",
"will",
"choose",
"an",
"optimal",
"value",
"for",
"... | def max_concurrent_invocations_per_instance(self) -> Optional[int]:
return pulumi.get(self, "max_concurrent_invocations_per_instance") | [
"def",
"max_concurrent_invocations_per_instance",
"(",
"self",
")",
"->",
"Optional",
"[",
"int",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"max_concurrent_invocations_per_instance\"",
")"
] | The maximum number of concurrent requests sent by the SageMaker client to the model container. | [
"The",
"maximum",
"number",
"of",
"concurrent",
"requests",
"sent",
"by",
"the",
"SageMaker",
"client",
"to",
"the",
"model",
"container",
"."
] | [
"\"\"\"\n The maximum number of concurrent requests sent by the SageMaker client to the model container. If no value is provided, Amazon SageMaker will choose an optimal value for you.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | s3_output_path | str | def s3_output_path(self) -> str:
"""
The Amazon S3 location to upload inference responses to.
"""
return pulumi.get(self, "s3_output_path") |
The Amazon S3 location to upload inference responses to.
| The Amazon S3 location to upload inference responses to. | [
"The",
"Amazon",
"S3",
"location",
"to",
"upload",
"inference",
"responses",
"to",
"."
] | def s3_output_path(self) -> str:
return pulumi.get(self, "s3_output_path") | [
"def",
"s3_output_path",
"(",
"self",
")",
"->",
"str",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"s3_output_path\"",
")"
] | The Amazon S3 location to upload inference responses to. | [
"The",
"Amazon",
"S3",
"location",
"to",
"upload",
"inference",
"responses",
"to",
"."
] | [
"\"\"\"\n The Amazon S3 location to upload inference responses to.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | notification_config | Optional['outputs.EndpointConfigurationAsyncInferenceConfigOutputConfigNotificationConfig'] | def notification_config(self) -> Optional['outputs.EndpointConfigurationAsyncInferenceConfigOutputConfigNotificationConfig']:
"""
Specifies the configuration for notifications of inference results for asynchronous inference.
"""
return pulumi.get(self, "notification_config") |
Specifies the configuration for notifications of inference results for asynchronous inference.
| Specifies the configuration for notifications of inference results for asynchronous inference. | [
"Specifies",
"the",
"configuration",
"for",
"notifications",
"of",
"inference",
"results",
"for",
"asynchronous",
"inference",
"."
] | def notification_config(self) -> Optional['outputs.EndpointConfigurationAsyncInferenceConfigOutputConfigNotificationConfig']:
return pulumi.get(self, "notification_config") | [
"def",
"notification_config",
"(",
"self",
")",
"->",
"Optional",
"[",
"'outputs.EndpointConfigurationAsyncInferenceConfigOutputConfigNotificationConfig'",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"notification_config\"",
")"
] | Specifies the configuration for notifications of inference results for asynchronous inference. | [
"Specifies",
"the",
"configuration",
"for",
"notifications",
"of",
"inference",
"results",
"for",
"asynchronous",
"inference",
"."
] | [
"\"\"\"\n Specifies the configuration for notifications of inference results for asynchronous inference.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | error_topic | Optional[str] | def error_topic(self) -> Optional[str]:
"""
Amazon SNS topic to post a notification to when inference fails. If no topic is provided, no notification is sent on failure.
"""
return pulumi.get(self, "error_topic") |
Amazon SNS topic to post a notification to when inference fails. If no topic is provided, no notification is sent on failure.
| Amazon SNS topic to post a notification to when inference fails. If no topic is provided, no notification is sent on failure. | [
"Amazon",
"SNS",
"topic",
"to",
"post",
"a",
"notification",
"to",
"when",
"inference",
"fails",
".",
"If",
"no",
"topic",
"is",
"provided",
"no",
"notification",
"is",
"sent",
"on",
"failure",
"."
] | def error_topic(self) -> Optional[str]:
return pulumi.get(self, "error_topic") | [
"def",
"error_topic",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"error_topic\"",
")"
] | Amazon SNS topic to post a notification to when inference fails. | [
"Amazon",
"SNS",
"topic",
"to",
"post",
"a",
"notification",
"to",
"when",
"inference",
"fails",
"."
] | [
"\"\"\"\n Amazon SNS topic to post a notification to when inference fails. If no topic is provided, no notification is sent on failure.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | success_topic | Optional[str] | def success_topic(self) -> Optional[str]:
"""
Amazon SNS topic to post a notification to when inference completes successfully. If no topic is provided, no notification is sent on success.
"""
return pulumi.get(self, "success_topic") |
Amazon SNS topic to post a notification to when inference completes successfully. If no topic is provided, no notification is sent on success.
| Amazon SNS topic to post a notification to when inference completes successfully. If no topic is provided, no notification is sent on success. | [
"Amazon",
"SNS",
"topic",
"to",
"post",
"a",
"notification",
"to",
"when",
"inference",
"completes",
"successfully",
".",
"If",
"no",
"topic",
"is",
"provided",
"no",
"notification",
"is",
"sent",
"on",
"success",
"."
] | def success_topic(self) -> Optional[str]:
return pulumi.get(self, "success_topic") | [
"def",
"success_topic",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"success_topic\"",
")"
] | Amazon SNS topic to post a notification to when inference completes successfully. | [
"Amazon",
"SNS",
"topic",
"to",
"post",
"a",
"notification",
"to",
"when",
"inference",
"completes",
"successfully",
"."
] | [
"\"\"\"\n Amazon SNS topic to post a notification to when inference completes successfully. If no topic is provided, no notification is sent on success.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | capture_options | Sequence['outputs.EndpointConfigurationDataCaptureConfigCaptureOption'] | def capture_options(self) -> Sequence['outputs.EndpointConfigurationDataCaptureConfigCaptureOption']:
"""
Specifies what data to capture. Fields are documented below.
"""
return pulumi.get(self, "capture_options") |
Specifies what data to capture. Fields are documented below.
| Specifies what data to capture. Fields are documented below. | [
"Specifies",
"what",
"data",
"to",
"capture",
".",
"Fields",
"are",
"documented",
"below",
"."
] | def capture_options(self) -> Sequence['outputs.EndpointConfigurationDataCaptureConfigCaptureOption']:
return pulumi.get(self, "capture_options") | [
"def",
"capture_options",
"(",
"self",
")",
"->",
"Sequence",
"[",
"'outputs.EndpointConfigurationDataCaptureConfigCaptureOption'",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"capture_options\"",
")"
] | Specifies what data to capture. | [
"Specifies",
"what",
"data",
"to",
"capture",
"."
] | [
"\"\"\"\n Specifies what data to capture. Fields are documented below.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | destination_s3_uri | str | def destination_s3_uri(self) -> str:
"""
The URL for S3 location where the captured data is stored.
"""
return pulumi.get(self, "destination_s3_uri") |
The URL for S3 location where the captured data is stored.
| The URL for S3 location where the captured data is stored. | [
"The",
"URL",
"for",
"S3",
"location",
"where",
"the",
"captured",
"data",
"is",
"stored",
"."
] | def destination_s3_uri(self) -> str:
return pulumi.get(self, "destination_s3_uri") | [
"def",
"destination_s3_uri",
"(",
"self",
")",
"->",
"str",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"destination_s3_uri\"",
")"
] | The URL for S3 location where the captured data is stored. | [
"The",
"URL",
"for",
"S3",
"location",
"where",
"the",
"captured",
"data",
"is",
"stored",
"."
] | [
"\"\"\"\n The URL for S3 location where the captured data is stored.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | initial_sampling_percentage | int | def initial_sampling_percentage(self) -> int:
"""
Portion of data to capture. Should be between 0 and 100.
"""
return pulumi.get(self, "initial_sampling_percentage") |
Portion of data to capture. Should be between 0 and 100.
| Portion of data to capture. Should be between 0 and 100. | [
"Portion",
"of",
"data",
"to",
"capture",
".",
"Should",
"be",
"between",
"0",
"and",
"100",
"."
] | def initial_sampling_percentage(self) -> int:
return pulumi.get(self, "initial_sampling_percentage") | [
"def",
"initial_sampling_percentage",
"(",
"self",
")",
"->",
"int",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"initial_sampling_percentage\"",
")"
] | Portion of data to capture. | [
"Portion",
"of",
"data",
"to",
"capture",
"."
] | [
"\"\"\"\n Portion of data to capture. Should be between 0 and 100.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | capture_content_type_header | Optional['outputs.EndpointConfigurationDataCaptureConfigCaptureContentTypeHeader'] | def capture_content_type_header(self) -> Optional['outputs.EndpointConfigurationDataCaptureConfigCaptureContentTypeHeader']:
"""
The content type headers to capture. Fields are documented below.
"""
return pulumi.get(self, "capture_content_type_header") |
The content type headers to capture. Fields are documented below.
| The content type headers to capture. Fields are documented below. | [
"The",
"content",
"type",
"headers",
"to",
"capture",
".",
"Fields",
"are",
"documented",
"below",
"."
] | def capture_content_type_header(self) -> Optional['outputs.EndpointConfigurationDataCaptureConfigCaptureContentTypeHeader']:
return pulumi.get(self, "capture_content_type_header") | [
"def",
"capture_content_type_header",
"(",
"self",
")",
"->",
"Optional",
"[",
"'outputs.EndpointConfigurationDataCaptureConfigCaptureContentTypeHeader'",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"capture_content_type_header\"",
")"
] | The content type headers to capture. | [
"The",
"content",
"type",
"headers",
"to",
"capture",
"."
] | [
"\"\"\"\n The content type headers to capture. Fields are documented below.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | enable_capture | Optional[bool] | def enable_capture(self) -> Optional[bool]:
"""
Flag to enable data capture. Defaults to `false`.
"""
return pulumi.get(self, "enable_capture") |
Flag to enable data capture. Defaults to `false`.
| Flag to enable data capture. Defaults to `false`. | [
"Flag",
"to",
"enable",
"data",
"capture",
".",
"Defaults",
"to",
"`",
"false",
"`",
"."
] | def enable_capture(self) -> Optional[bool]:
return pulumi.get(self, "enable_capture") | [
"def",
"enable_capture",
"(",
"self",
")",
"->",
"Optional",
"[",
"bool",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"enable_capture\"",
")"
] | Flag to enable data capture. | [
"Flag",
"to",
"enable",
"data",
"capture",
"."
] | [
"\"\"\"\n Flag to enable data capture. Defaults to `false`.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | csv_content_types | Optional[Sequence[str]] | def csv_content_types(self) -> Optional[Sequence[str]]:
"""
The CSV content type headers to capture.
"""
return pulumi.get(self, "csv_content_types") |
The CSV content type headers to capture.
| The CSV content type headers to capture. | [
"The",
"CSV",
"content",
"type",
"headers",
"to",
"capture",
"."
] | def csv_content_types(self) -> Optional[Sequence[str]]:
return pulumi.get(self, "csv_content_types") | [
"def",
"csv_content_types",
"(",
"self",
")",
"->",
"Optional",
"[",
"Sequence",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"csv_content_types\"",
")"
] | The CSV content type headers to capture. | [
"The",
"CSV",
"content",
"type",
"headers",
"to",
"capture",
"."
] | [
"\"\"\"\n The CSV content type headers to capture.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | json_content_types | Optional[Sequence[str]] | def json_content_types(self) -> Optional[Sequence[str]]:
"""
The JSON content type headers to capture.
"""
return pulumi.get(self, "json_content_types") |
The JSON content type headers to capture.
| The JSON content type headers to capture. | [
"The",
"JSON",
"content",
"type",
"headers",
"to",
"capture",
"."
] | def json_content_types(self) -> Optional[Sequence[str]]:
return pulumi.get(self, "json_content_types") | [
"def",
"json_content_types",
"(",
"self",
")",
"->",
"Optional",
"[",
"Sequence",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"json_content_types\"",
")"
] | The JSON content type headers to capture. | [
"The",
"JSON",
"content",
"type",
"headers",
"to",
"capture",
"."
] | [
"\"\"\"\n The JSON content type headers to capture.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | initial_instance_count | int | def initial_instance_count(self) -> int:
"""
Initial number of instances used for auto-scaling.
"""
return pulumi.get(self, "initial_instance_count") |
Initial number of instances used for auto-scaling.
| Initial number of instances used for auto-scaling. | [
"Initial",
"number",
"of",
"instances",
"used",
"for",
"auto",
"-",
"scaling",
"."
] | def initial_instance_count(self) -> int:
return pulumi.get(self, "initial_instance_count") | [
"def",
"initial_instance_count",
"(",
"self",
")",
"->",
"int",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"initial_instance_count\"",
")"
] | Initial number of instances used for auto-scaling. | [
"Initial",
"number",
"of",
"instances",
"used",
"for",
"auto",
"-",
"scaling",
"."
] | [
"\"\"\"\n Initial number of instances used for auto-scaling.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
97474c94b730536355d7a09ea535d10382cac706 | rapzo/pulumi-aws | sdk/python/pulumi_aws/sagemaker/outputs.py | [
"ECL-2.0",
"Apache-2.0"
] | Python | model_name | str | def model_name(self) -> str:
"""
The name of the model to use.
"""
return pulumi.get(self, "model_name") |
The name of the model to use.
| The name of the model to use. | [
"The",
"name",
"of",
"the",
"model",
"to",
"use",
"."
] | def model_name(self) -> str:
return pulumi.get(self, "model_name") | [
"def",
"model_name",
"(",
"self",
")",
"->",
"str",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"model_name\"",
")"
] | The name of the model to use. | [
"The",
"name",
"of",
"the",
"model",
"to",
"use",
"."
] | [
"\"\"\"\n The name of the model to use.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.